@soat/cli 0.13.9 → 0.13.11
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 +20 -2
- 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.13.
|
|
14
|
+
var version = "0.13.11";
|
|
15
15
|
|
|
16
16
|
//#endregion
|
|
17
17
|
//#region src/cli-wrappers/wrappers/formations.ts
|
|
@@ -665,6 +665,12 @@ var routes = {
|
|
|
665
665
|
"required": false,
|
|
666
666
|
"type": "object",
|
|
667
667
|
"in": "body"
|
|
668
|
+
}, {
|
|
669
|
+
"name": "output_schema",
|
|
670
|
+
"description": "JSON Schema describing the structured object the model must return. When set, non-streaming generations use the AI SDK to constrain output to this schema; the parsed value is returned as `output.object` in the generation response. See the Structured Output section in the Agents module docs.",
|
|
671
|
+
"required": false,
|
|
672
|
+
"type": "object",
|
|
673
|
+
"in": "body"
|
|
668
674
|
}, {
|
|
669
675
|
"name": "max_context_messages",
|
|
670
676
|
"description": "Maximum number of recent messages included in the context window. Null means no limit.",
|
|
@@ -791,6 +797,12 @@ var routes = {
|
|
|
791
797
|
"required": false,
|
|
792
798
|
"type": "object",
|
|
793
799
|
"in": "body"
|
|
800
|
+
}, {
|
|
801
|
+
"name": "output_schema",
|
|
802
|
+
"description": "JSON Schema describing the structured object the model must return. When set, non-streaming generations use the AI SDK to constrain output to this schema; the parsed value is returned as `output.object` in the generation response. See the Structured Output section in the Agents module docs.",
|
|
803
|
+
"required": false,
|
|
804
|
+
"type": "object",
|
|
805
|
+
"in": "body"
|
|
794
806
|
}, {
|
|
795
807
|
"name": "max_context_messages",
|
|
796
808
|
"description": "Maximum number of recent messages included in the context window. Null means no limit.",
|
|
@@ -902,6 +914,12 @@ var routes = {
|
|
|
902
914
|
"required": false,
|
|
903
915
|
"type": "object",
|
|
904
916
|
"in": "body"
|
|
917
|
+
}, {
|
|
918
|
+
"name": "output_schema",
|
|
919
|
+
"description": "JSON Schema describing the structured object the model must return. When set, non-streaming generations use the AI SDK to constrain output to this schema; the parsed value is returned as `output.object` in the generation response. See the Structured Output section in the Agents module docs.",
|
|
920
|
+
"required": false,
|
|
921
|
+
"type": "object",
|
|
922
|
+
"in": "body"
|
|
905
923
|
}, {
|
|
906
924
|
"name": "max_context_messages",
|
|
907
925
|
"description": "Maximum number of recent messages included in the context window. Null means no limit.",
|
|
@@ -2227,7 +2245,7 @@ var routes = {
|
|
|
2227
2245
|
"upload-file-with-token": {
|
|
2228
2246
|
serviceClass: "Files",
|
|
2229
2247
|
operationId: "uploadFileWithToken",
|
|
2230
|
-
description: "Uploads file content authorized by a single-use token from `POST /api/v1/files/presigned-url`. No bearer credential is required — the token is the credential. Accepts either multipart/form-data (field `file`) or JSON with a base64-encoded `content` field.
|
|
2248
|
+
description: "Uploads file content authorized by a single-use token from `POST /api/v1/files/presigned-url`. No bearer credential is required — the token is the credential. Accepts either multipart/form-data (field `file`) or JSON with a base64-encoded `content` field.",
|
|
2231
2249
|
moduleDocsUrl: "https://soat.ttoss.dev/docs/modules/files",
|
|
2232
2250
|
pathParams: ["token"],
|
|
2233
2251
|
queryParams: [],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@soat/cli",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.11",
|
|
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.13.
|
|
11
|
+
"@soat/sdk": "0.13.11"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
14
|
"@ttoss/config": "^1.37.15",
|