retell-cli 1.4.1 → 1.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -364,7 +364,7 @@ Manage agent-level settings that aren't part of prompts (voice, webhooks, post-c
|
|
|
364
364
|
Get agent configuration including all agent-level settings.
|
|
365
365
|
|
|
366
366
|
**Options:**
|
|
367
|
-
- `--version <number>` - Specific version to retrieve (defaults to latest)
|
|
367
|
+
- `--engine-version <number>` - Specific version to retrieve (defaults to latest)
|
|
368
368
|
- `--fields <fields>` - Comma-separated list of fields to return
|
|
369
369
|
|
|
370
370
|
**Examples:**
|
|
@@ -373,7 +373,7 @@ Get agent configuration including all agent-level settings.
|
|
|
373
373
|
retell agent get agent_123abc
|
|
374
374
|
|
|
375
375
|
# Get specific version
|
|
376
|
-
retell agent get agent_123abc --version 2
|
|
376
|
+
retell agent get agent_123abc --engine-version 2
|
|
377
377
|
|
|
378
378
|
# Get specific fields only
|
|
379
379
|
retell agent get agent_123abc --fields agent_name,post_call_analysis_data
|
|
@@ -394,7 +394,7 @@ Update agent configuration from a JSON file. This is useful for updating agent-l
|
|
|
394
394
|
**Options:**
|
|
395
395
|
- `-f, --file <path>` - Path to JSON file containing agent configuration updates (required)
|
|
396
396
|
- `--dry-run` - Preview changes without applying them
|
|
397
|
-
- `--version <number>` - Specific version to update (defaults to latest draft)
|
|
397
|
+
- `--engine-version <number>` - Specific version to update (defaults to latest draft)
|
|
398
398
|
|
|
399
399
|
**Example JSON for post-call analysis:**
|
|
400
400
|
```json
|
package/package.json
CHANGED