@soat/cli 0.6.6 → 0.6.10
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.mjs +17 -5
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -11,7 +11,7 @@ import yaml from "js-yaml";
|
|
|
11
11
|
import * as os from "node:os";
|
|
12
12
|
|
|
13
13
|
//#region package.json
|
|
14
|
-
var version = "0.6.
|
|
14
|
+
var version = "0.6.10";
|
|
15
15
|
|
|
16
16
|
//#endregion
|
|
17
17
|
//#region src/cli-wrappers/wrappers/formations.ts
|
|
@@ -565,9 +565,9 @@ var routes = {
|
|
|
565
565
|
"in": "body"
|
|
566
566
|
}, {
|
|
567
567
|
"name": "tool_choice",
|
|
568
|
-
"description": "",
|
|
568
|
+
"description": "Tool choice strategy. Accepts a string (`\"auto\"`, `\"required\"`) or an object (`{ \"type\": \"tool\", \"name\": \"my_tool\" }`).",
|
|
569
569
|
"required": false,
|
|
570
|
-
"type": "
|
|
570
|
+
"type": "string",
|
|
571
571
|
"in": "body"
|
|
572
572
|
}, {
|
|
573
573
|
"name": "stop_conditions",
|
|
@@ -685,9 +685,9 @@ var routes = {
|
|
|
685
685
|
"in": "body"
|
|
686
686
|
}, {
|
|
687
687
|
"name": "tool_choice",
|
|
688
|
-
"description": "",
|
|
688
|
+
"description": "Tool choice strategy. Accepts a string (`\"auto\"`, `\"required\"`) or an object (`{ \"type\": \"tool\", \"name\": \"my_tool\" }`).",
|
|
689
689
|
"required": false,
|
|
690
|
-
"type": "
|
|
690
|
+
"type": "string",
|
|
691
691
|
"in": "body"
|
|
692
692
|
}, {
|
|
693
693
|
"name": "stop_conditions",
|
|
@@ -3158,6 +3158,12 @@ var routes = {
|
|
|
3158
3158
|
"required": false,
|
|
3159
3159
|
"type": "integer",
|
|
3160
3160
|
"in": "body"
|
|
3161
|
+
}, {
|
|
3162
|
+
"name": "message_delay_seconds",
|
|
3163
|
+
"description": "Number of seconds to wait after the last user message before sending to the LLM. Acts as a debounce: each new message resets the timer. null or absent means no delay (immediate processing).\n",
|
|
3164
|
+
"required": false,
|
|
3165
|
+
"type": "integer",
|
|
3166
|
+
"in": "body"
|
|
3161
3167
|
}]
|
|
3162
3168
|
},
|
|
3163
3169
|
"get-agent-session": {
|
|
@@ -3224,6 +3230,12 @@ var routes = {
|
|
|
3224
3230
|
"required": false,
|
|
3225
3231
|
"type": "object",
|
|
3226
3232
|
"in": "body"
|
|
3233
|
+
}, {
|
|
3234
|
+
"name": "message_delay_seconds",
|
|
3235
|
+
"description": "Number of seconds to wait after the last user message before sending to the LLM. Acts as a debounce: each new message resets the timer. Set to null to disable the delay.\n",
|
|
3236
|
+
"required": false,
|
|
3237
|
+
"type": "integer",
|
|
3238
|
+
"in": "body"
|
|
3227
3239
|
}]
|
|
3228
3240
|
},
|
|
3229
3241
|
"delete-agent-session": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@soat/cli",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.10",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@inquirer/input": "^5.1.2",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"@ttoss/logger": "^0.8.16",
|
|
9
9
|
"commander": "^15.0.0",
|
|
10
10
|
"js-yaml": "^4.2.0",
|
|
11
|
-
"@soat/sdk": "0.6.
|
|
11
|
+
"@soat/sdk": "0.6.10"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
14
|
"@ttoss/config": "^1.37.15",
|