Skip to content

Commit 861e45f

Browse files
committed
docs: improve help for path option in pull operation in cli
1 parent aa546ad commit 861e45f

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/humanloop/cli/__main__.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,9 +116,8 @@ def cli(): # Does nothing because used as a group for other subcommands (pull, p
116116
@click.option(
117117
"--path",
118118
"-p",
119-
help="Path to pull (file or directory). If not provided, pulls everything. "
120-
"To pull a specific file, ensure the extension for the file is included (e.g. .prompt or .agent). "
121-
"To pull a directory, simply specify the path to the directory (e.g. abc/def to pull all files under abc/def and its subdirectories).",
119+
help="Path in the Humanloop workspace to pull from (file or directory). You can pull an entire directory (e.g. 'my/directory') "
120+
"or a specific file (e.g. 'my/directory/my_prompt.prompt'). When pulling a directory, all files within that directory and its subdirectories will be included.",
122121
default=None,
123122
)
124123
@click.option(

0 commit comments

Comments
 (0)