@wix/auto_sdk_ai-gateway_prompts 1.0.22 → 1.0.24
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 -17
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +14 -17
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +14 -17
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +14 -17
- 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 -17
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +14 -17
- 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 -17
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +14 -17
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -5441,11 +5441,6 @@ interface McpServer {
|
|
|
5441
5441
|
* @maxLength 10000
|
|
5442
5442
|
*/
|
|
5443
5443
|
url?: string | null;
|
|
5444
|
-
/**
|
|
5445
|
-
* Authorization token
|
|
5446
|
-
* @maxLength 10000
|
|
5447
|
-
*/
|
|
5448
|
-
authorizationToken?: string | null;
|
|
5449
5444
|
/** Tool configuration */
|
|
5450
5445
|
toolConfiguration?: ToolConfiguration;
|
|
5451
5446
|
}
|
|
@@ -5664,11 +5659,6 @@ interface GoogleproxyV1McpServer {
|
|
|
5664
5659
|
* @maxLength 10000
|
|
5665
5660
|
*/
|
|
5666
5661
|
url?: string | null;
|
|
5667
|
-
/**
|
|
5668
|
-
* Authorization token
|
|
5669
|
-
* @maxLength 10000
|
|
5670
|
-
*/
|
|
5671
|
-
authorizationToken?: string | null;
|
|
5672
5662
|
/** Tool configuration */
|
|
5673
5663
|
toolConfiguration?: V1McpServerToolConfiguration;
|
|
5674
5664
|
}
|
|
@@ -6063,11 +6053,6 @@ interface V1McpServer {
|
|
|
6063
6053
|
* @maxLength 10000
|
|
6064
6054
|
*/
|
|
6065
6055
|
url?: string | null;
|
|
6066
|
-
/**
|
|
6067
|
-
* Authorization token
|
|
6068
|
-
* @maxLength 10000
|
|
6069
|
-
*/
|
|
6070
|
-
authorizationToken?: string | null;
|
|
6071
6056
|
/** Tool configuration */
|
|
6072
6057
|
toolConfiguration?: McpServerToolConfiguration;
|
|
6073
6058
|
}
|
|
@@ -8021,7 +8006,7 @@ interface V1ResponsesFunctionToolCallOutput {
|
|
|
8021
8006
|
status?: string | null;
|
|
8022
8007
|
/**
|
|
8023
8008
|
* The output/result of the function call.
|
|
8024
|
-
* @maxLength
|
|
8009
|
+
* @maxLength 1000000000
|
|
8025
8010
|
*/
|
|
8026
8011
|
output?: string | null;
|
|
8027
8012
|
/**
|
|
@@ -8033,6 +8018,12 @@ interface V1ResponsesFunctionToolCallOutput {
|
|
|
8033
8018
|
interface V1ResponsesTextFormat extends V1ResponsesTextFormatFormatOneOf {
|
|
8034
8019
|
/** Structured Outputs configuration options, including a JSON Schema. */
|
|
8035
8020
|
jsonSchema?: ResponsesTextFormatJsonSchema;
|
|
8021
|
+
/**
|
|
8022
|
+
* Constrains the verbosity of the model's response. Lower values will result in more concise responses,
|
|
8023
|
+
* while higher values will result in more verbose responses. Currently supported values are low, medium, and high.
|
|
8024
|
+
* @maxLength 100
|
|
8025
|
+
*/
|
|
8026
|
+
verbosity?: string | null;
|
|
8036
8027
|
}
|
|
8037
8028
|
/** @oneof */
|
|
8038
8029
|
interface V1ResponsesTextFormatFormatOneOf {
|
|
@@ -8408,7 +8399,7 @@ interface ResponsesFunctionToolCallOutput {
|
|
|
8408
8399
|
status?: string | null;
|
|
8409
8400
|
/**
|
|
8410
8401
|
* The output/result of the function call.
|
|
8411
|
-
* @maxLength
|
|
8402
|
+
* @maxLength 1000000000
|
|
8412
8403
|
*/
|
|
8413
8404
|
output?: string | null;
|
|
8414
8405
|
/**
|
|
@@ -8420,6 +8411,12 @@ interface ResponsesFunctionToolCallOutput {
|
|
|
8420
8411
|
interface ResponsesTextFormat extends ResponsesTextFormatFormatOneOf {
|
|
8421
8412
|
/** Structured Outputs configuration options, including a JSON Schema. */
|
|
8422
8413
|
jsonSchema?: JsonSchema;
|
|
8414
|
+
/**
|
|
8415
|
+
* Constrains the verbosity of the model's response. Lower values will result in more concise responses,
|
|
8416
|
+
* while higher values will result in more verbose responses. Currently supported values are low, medium, and high.
|
|
8417
|
+
* @maxLength 100
|
|
8418
|
+
*/
|
|
8419
|
+
verbosity?: string | null;
|
|
8423
8420
|
}
|
|
8424
8421
|
/** @oneof */
|
|
8425
8422
|
interface ResponsesTextFormatFormatOneOf {
|