@wix/auto_sdk_ai-gateway_prompts 1.0.22 → 1.0.23
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/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +14 -2
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +14 -2
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +14 -2
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +14 -2
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +14 -2
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +14 -2
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +14 -2
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +14 -2
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -8024,7 +8024,7 @@ interface V1ResponsesFunctionToolCallOutput {
|
|
|
8024
8024
|
status?: string | null;
|
|
8025
8025
|
/**
|
|
8026
8026
|
* The output/result of the function call.
|
|
8027
|
-
* @maxLength
|
|
8027
|
+
* @maxLength 1000000000
|
|
8028
8028
|
*/
|
|
8029
8029
|
output?: string | null;
|
|
8030
8030
|
/**
|
|
@@ -8036,6 +8036,12 @@ interface V1ResponsesFunctionToolCallOutput {
|
|
|
8036
8036
|
interface V1ResponsesTextFormat extends V1ResponsesTextFormatFormatOneOf {
|
|
8037
8037
|
/** Structured Outputs configuration options, including a JSON Schema. */
|
|
8038
8038
|
jsonSchema?: ResponsesTextFormatJsonSchema;
|
|
8039
|
+
/**
|
|
8040
|
+
* Constrains the verbosity of the model's response. Lower values will result in more concise responses,
|
|
8041
|
+
* while higher values will result in more verbose responses. Currently supported values are low, medium, and high.
|
|
8042
|
+
* @maxLength 100
|
|
8043
|
+
*/
|
|
8044
|
+
verbosity?: string | null;
|
|
8039
8045
|
}
|
|
8040
8046
|
/** @oneof */
|
|
8041
8047
|
interface V1ResponsesTextFormatFormatOneOf {
|
|
@@ -8411,7 +8417,7 @@ interface ResponsesFunctionToolCallOutput {
|
|
|
8411
8417
|
status?: string | null;
|
|
8412
8418
|
/**
|
|
8413
8419
|
* The output/result of the function call.
|
|
8414
|
-
* @maxLength
|
|
8420
|
+
* @maxLength 1000000000
|
|
8415
8421
|
*/
|
|
8416
8422
|
output?: string | null;
|
|
8417
8423
|
/**
|
|
@@ -8423,6 +8429,12 @@ interface ResponsesFunctionToolCallOutput {
|
|
|
8423
8429
|
interface ResponsesTextFormat extends ResponsesTextFormatFormatOneOf {
|
|
8424
8430
|
/** Structured Outputs configuration options, including a JSON Schema. */
|
|
8425
8431
|
jsonSchema?: JsonSchema;
|
|
8432
|
+
/**
|
|
8433
|
+
* Constrains the verbosity of the model's response. Lower values will result in more concise responses,
|
|
8434
|
+
* while higher values will result in more verbose responses. Currently supported values are low, medium, and high.
|
|
8435
|
+
* @maxLength 100
|
|
8436
|
+
*/
|
|
8437
|
+
verbosity?: string | null;
|
|
8426
8438
|
}
|
|
8427
8439
|
/** @oneof */
|
|
8428
8440
|
interface ResponsesTextFormatFormatOneOf {
|