@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
package/build/cjs/meta.d.ts
CHANGED
|
@@ -5443,11 +5443,6 @@ interface McpServer {
|
|
|
5443
5443
|
* @maxLength 10000
|
|
5444
5444
|
*/
|
|
5445
5445
|
url?: string | null;
|
|
5446
|
-
/**
|
|
5447
|
-
* Authorization token
|
|
5448
|
-
* @maxLength 10000
|
|
5449
|
-
*/
|
|
5450
|
-
authorizationToken?: string | null;
|
|
5451
5446
|
/** Tool configuration */
|
|
5452
5447
|
toolConfiguration?: ToolConfiguration;
|
|
5453
5448
|
}
|
|
@@ -5666,11 +5661,6 @@ interface GoogleproxyV1McpServer {
|
|
|
5666
5661
|
* @maxLength 10000
|
|
5667
5662
|
*/
|
|
5668
5663
|
url?: string | null;
|
|
5669
|
-
/**
|
|
5670
|
-
* Authorization token
|
|
5671
|
-
* @maxLength 10000
|
|
5672
|
-
*/
|
|
5673
|
-
authorizationToken?: string | null;
|
|
5674
5664
|
/** Tool configuration */
|
|
5675
5665
|
toolConfiguration?: V1McpServerToolConfiguration;
|
|
5676
5666
|
}
|
|
@@ -6065,11 +6055,6 @@ interface V1McpServer {
|
|
|
6065
6055
|
* @maxLength 10000
|
|
6066
6056
|
*/
|
|
6067
6057
|
url?: string | null;
|
|
6068
|
-
/**
|
|
6069
|
-
* Authorization token
|
|
6070
|
-
* @maxLength 10000
|
|
6071
|
-
*/
|
|
6072
|
-
authorizationToken?: string | null;
|
|
6073
6058
|
/** Tool configuration */
|
|
6074
6059
|
toolConfiguration?: McpServerToolConfiguration;
|
|
6075
6060
|
}
|
|
@@ -8023,7 +8008,7 @@ interface V1ResponsesFunctionToolCallOutput {
|
|
|
8023
8008
|
status?: string | null;
|
|
8024
8009
|
/**
|
|
8025
8010
|
* The output/result of the function call.
|
|
8026
|
-
* @maxLength
|
|
8011
|
+
* @maxLength 1000000000
|
|
8027
8012
|
*/
|
|
8028
8013
|
output?: string | null;
|
|
8029
8014
|
/**
|
|
@@ -8035,6 +8020,12 @@ interface V1ResponsesFunctionToolCallOutput {
|
|
|
8035
8020
|
interface V1ResponsesTextFormat extends V1ResponsesTextFormatFormatOneOf {
|
|
8036
8021
|
/** Structured Outputs configuration options, including a JSON Schema. */
|
|
8037
8022
|
jsonSchema?: ResponsesTextFormatJsonSchema;
|
|
8023
|
+
/**
|
|
8024
|
+
* Constrains the verbosity of the model's response. Lower values will result in more concise responses,
|
|
8025
|
+
* while higher values will result in more verbose responses. Currently supported values are low, medium, and high.
|
|
8026
|
+
* @maxLength 100
|
|
8027
|
+
*/
|
|
8028
|
+
verbosity?: string | null;
|
|
8038
8029
|
}
|
|
8039
8030
|
/** @oneof */
|
|
8040
8031
|
interface V1ResponsesTextFormatFormatOneOf {
|
|
@@ -8410,7 +8401,7 @@ interface ResponsesFunctionToolCallOutput {
|
|
|
8410
8401
|
status?: string | null;
|
|
8411
8402
|
/**
|
|
8412
8403
|
* The output/result of the function call.
|
|
8413
|
-
* @maxLength
|
|
8404
|
+
* @maxLength 1000000000
|
|
8414
8405
|
*/
|
|
8415
8406
|
output?: string | null;
|
|
8416
8407
|
/**
|
|
@@ -8422,6 +8413,12 @@ interface ResponsesFunctionToolCallOutput {
|
|
|
8422
8413
|
interface ResponsesTextFormat extends ResponsesTextFormatFormatOneOf {
|
|
8423
8414
|
/** Structured Outputs configuration options, including a JSON Schema. */
|
|
8424
8415
|
jsonSchema?: JsonSchema;
|
|
8416
|
+
/**
|
|
8417
|
+
* Constrains the verbosity of the model's response. Lower values will result in more concise responses,
|
|
8418
|
+
* while higher values will result in more verbose responses. Currently supported values are low, medium, and high.
|
|
8419
|
+
* @maxLength 100
|
|
8420
|
+
*/
|
|
8421
|
+
verbosity?: string | null;
|
|
8425
8422
|
}
|
|
8426
8423
|
/** @oneof */
|
|
8427
8424
|
interface ResponsesTextFormatFormatOneOf {
|