retell-cli 1.1.1 → 1.2.0
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/dist/index.js +8 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2938,7 +2938,10 @@ async function createTestCaseCommand(options) {
|
|
|
2938
2938
|
user_prompt: input.user_prompt,
|
|
2939
2939
|
scenario: input.scenario,
|
|
2940
2940
|
metrics: input.metrics,
|
|
2941
|
-
response_engine: responseEngine
|
|
2941
|
+
response_engine: responseEngine,
|
|
2942
|
+
dynamic_variables: input.dynamic_variables,
|
|
2943
|
+
tool_mocks: input.tool_mocks,
|
|
2944
|
+
llm_model: input.llm_model
|
|
2942
2945
|
});
|
|
2943
2946
|
const output = {
|
|
2944
2947
|
message: "Test case definition created successfully",
|
|
@@ -2990,7 +2993,10 @@ async function updateTestCaseCommand(testCaseDefinitionId, options) {
|
|
|
2990
2993
|
name: input.name,
|
|
2991
2994
|
user_prompt: input.user_prompt,
|
|
2992
2995
|
scenario: input.scenario,
|
|
2993
|
-
metrics: input.metrics
|
|
2996
|
+
metrics: input.metrics,
|
|
2997
|
+
dynamic_variables: input.dynamic_variables,
|
|
2998
|
+
tool_mocks: input.tool_mocks,
|
|
2999
|
+
llm_model: input.llm_model
|
|
2994
3000
|
});
|
|
2995
3001
|
const output = {
|
|
2996
3002
|
message: "Test case definition updated successfully",
|
package/package.json
CHANGED