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