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
Copy file name to clipboardExpand all lines: packages/uipath-llamaindex/samples/simple-hitl-agent/.agent/CLI_REFERENCE.md
+58Lines changed: 58 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -59,8 +59,10 @@ uv run uipath init --infer-bindings
59
59
|`--input-file`| value |`Sentinel.UNSET`| Alias for '-f/--file' arguments |
60
60
|`--output-file`| value |`Sentinel.UNSET`| File path where the output will be written |
61
61
|`--trace-file`| value |`Sentinel.UNSET`| File path where the trace spans will be written (JSON Lines format) |
62
+
|`--state-file`| value |`Sentinel.UNSET`| File path where the state file is stored for persisting execution state. If not provided, a temporary file will be used. |
62
63
|`--debug`| flag | false | Enable debugging with debugpy. The process will wait for a debugger to attach. |
63
64
|`--debug-port`| value |`5678`| Port for the debug server (default: 5678) |
65
+
|`--keep-state-file`| flag | false | Keep the temporary state file even when not resuming and no job id is provided |
64
66
65
67
**Usage Examples:**
66
68
@@ -98,6 +100,11 @@ uv run uipath run --resume
98
100
no_report: Do not report the evaluation results
99
101
enable_mocker_cache: Enable caching for LLM mocker responses
100
102
report_coverage: Report evaluation coverage
103
+
model_settings_id: Model settings ID to override agent settings
104
+
trace_file: File path where traces will be written in JSONL format
105
+
max_llm_concurrency: Maximum concurrent LLM requests
106
+
input_overrides: Input field overrides mapping (direct field override with deep merge)
107
+
resume: Resume execution from a previous suspended state
101
108
102
109
103
110
**Arguments:**
@@ -117,6 +124,10 @@ uv run uipath run --resume
117
124
|`--output-file`| value |`Sentinel.UNSET`| File path where the output will be written |
118
125
|`--enable-mocker-cache`| flag | false | Enable caching for LLM mocker responses |
119
126
|`--report-coverage`| flag | false | Report evaluation coverage |
127
+
|`--model-settings-id`| value |`"default"`| Model settings ID from evaluation set to override agent settings (default: 'default') |
128
+
|`--trace-file`| value |`Sentinel.UNSET`| File path where traces will be written in JSONL format |
129
+
|`--max-llm-concurrency`| value |`20`| Maximum concurrent LLM requests (default: 20) |
130
+
|`--resume`| flag | false | Resume execution from a previous suspended state |
120
131
121
132
**Usage Examples:**
122
133
@@ -223,6 +234,53 @@ The `uipath.json` file is automatically generated by `uipath init` and defines y
223
234
224
235
The UiPath CLI provides commands for interacting with UiPath platform services. These commands allow you to manage buckets, assets, jobs, and other resources.
225
236
237
+
### `uipath assets`
238
+
239
+
Manage UiPath assets.
240
+
241
+
Assets are key-value pairs that store configuration data, credentials,
0 commit comments