@wix/auto_sdk_ai-gateway_generators 1.0.29 → 1.0.30
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.d.ts +14 -2
- package/build/cjs/index.js.map +1 -1
- 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.d.mts +14 -2
- package/build/es/index.mjs.map +1 -1
- 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
package/build/cjs/index.d.ts
CHANGED
|
@@ -5677,7 +5677,7 @@ interface V1ResponsesFunctionToolCallOutput {
|
|
|
5677
5677
|
status?: string | null;
|
|
5678
5678
|
/**
|
|
5679
5679
|
* The output/result of the function call.
|
|
5680
|
-
* @maxLength
|
|
5680
|
+
* @maxLength 1000000000
|
|
5681
5681
|
*/
|
|
5682
5682
|
output?: string | null;
|
|
5683
5683
|
/**
|
|
@@ -5799,6 +5799,12 @@ interface V1ResponsesReasoning {
|
|
|
5799
5799
|
interface V1ResponsesTextFormat extends V1ResponsesTextFormatFormatOneOf {
|
|
5800
5800
|
/** Structured Outputs configuration options, including a JSON Schema. */
|
|
5801
5801
|
jsonSchema?: ResponsesTextFormatJsonSchema;
|
|
5802
|
+
/**
|
|
5803
|
+
* Constrains the verbosity of the model's response. Lower values will result in more concise responses,
|
|
5804
|
+
* while higher values will result in more verbose responses. Currently supported values are low, medium, and high.
|
|
5805
|
+
* @maxLength 100
|
|
5806
|
+
*/
|
|
5807
|
+
verbosity?: string | null;
|
|
5802
5808
|
}
|
|
5803
5809
|
/** @oneof */
|
|
5804
5810
|
interface V1ResponsesTextFormatFormatOneOf {
|
|
@@ -6341,7 +6347,7 @@ interface ResponsesFunctionToolCallOutput {
|
|
|
6341
6347
|
status?: string | null;
|
|
6342
6348
|
/**
|
|
6343
6349
|
* The output/result of the function call.
|
|
6344
|
-
* @maxLength
|
|
6350
|
+
* @maxLength 1000000000
|
|
6345
6351
|
*/
|
|
6346
6352
|
output?: string | null;
|
|
6347
6353
|
/**
|
|
@@ -6463,6 +6469,12 @@ interface ResponsesReasoning {
|
|
|
6463
6469
|
interface ResponsesTextFormat extends ResponsesTextFormatFormatOneOf {
|
|
6464
6470
|
/** Structured Outputs configuration options, including a JSON Schema. */
|
|
6465
6471
|
jsonSchema?: JsonSchema;
|
|
6472
|
+
/**
|
|
6473
|
+
* Constrains the verbosity of the model's response. Lower values will result in more concise responses,
|
|
6474
|
+
* while higher values will result in more verbose responses. Currently supported values are low, medium, and high.
|
|
6475
|
+
* @maxLength 100
|
|
6476
|
+
*/
|
|
6477
|
+
verbosity?: string | null;
|
|
6466
6478
|
}
|
|
6467
6479
|
/** @oneof */
|
|
6468
6480
|
interface ResponsesTextFormatFormatOneOf {
|