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