You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
help="Base directory for pulled files (default: humanloop/)",
78
76
default="humanloop",
79
77
type=click.Path(),
80
78
)
@@ -117,7 +115,7 @@ def cli(): # Does nothing because used as a group for other subcommands (pull, p
117
115
@click.option(
118
116
"--path",
119
117
"-p",
120
-
help="Path in the Humanloop workspace to pull from (file or directory). You can pull an entire directory (e.g. 'my/directory') "
118
+
help="Path in the Humanloop workspace to pull from (file or directory). You can pull an entire directory (e.g. 'my/directory/') "
121
119
"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.",
122
120
default=None,
123
121
)
@@ -151,18 +149,18 @@ def pull(
151
149
verbose: bool,
152
150
quiet: bool
153
151
):
154
-
"""Pull prompt and agent files from Humanloop to your local filesystem.
152
+
"""Pull Prompt and Agent files from Humanloop to your local filesystem.
155
153
156
154
\b
157
155
This command will:
158
156
1. Fetch Prompt and Agent files from your Humanloop workspace
159
-
2. Save them to your local filesystem
157
+
2. Save them to your local filesystem (default: humanloop/)
160
158
3. Maintain the same directory structure as in Humanloop
161
159
4. Add appropriate file extensions (.prompt or .agent)
162
160
163
161
\b
164
162
The files will be saved with the following structure:
0 commit comments