@wix/auto_sdk_ai-gateway_prompts 1.0.21 → 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 +1 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +27 -4
- package/build/cjs/index.typings.js +1 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +27 -4
- package/build/cjs/meta.js +1 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs +1 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +27 -4
- package/build/es/index.typings.mjs +1 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +27 -4
- package/build/es/meta.mjs +1 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js +1 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +27 -4
- package/build/internal/cjs/index.typings.js +1 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +27 -4
- package/build/internal/cjs/meta.js +1 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs +1 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +27 -4
- package/build/internal/es/index.typings.mjs +1 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +27 -4
- package/build/internal/es/meta.mjs +1 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
package/build/es/meta.d.mts
CHANGED
|
@@ -4886,10 +4886,11 @@ declare enum GoogleproxyV1Model {
|
|
|
4886
4886
|
GEMINI_2_5_PRO = "GEMINI_2_5_PRO",
|
|
4887
4887
|
GEMINI_2_5_FLASH = "GEMINI_2_5_FLASH",
|
|
4888
4888
|
GEMINI_2_5_FLASH_LITE = "GEMINI_2_5_FLASH_LITE",
|
|
4889
|
-
GEMINI_2_5_FLASH_IMAGE = "GEMINI_2_5_FLASH_IMAGE"
|
|
4889
|
+
GEMINI_2_5_FLASH_IMAGE = "GEMINI_2_5_FLASH_IMAGE",
|
|
4890
|
+
GEMINI_3_0_PRO = "GEMINI_3_0_PRO"
|
|
4890
4891
|
}
|
|
4891
4892
|
/** @enumType */
|
|
4892
|
-
type GoogleproxyV1ModelWithLiterals = GoogleproxyV1Model | 'UNKNOWN_MODEL' | 'GEMINI_1_0_PRO' | 'GEMINI_1_0_PRO_VISION' | 'GEMINI_1_5_PRO' | 'GEMINI_1_5_FLASH' | 'GEMINI_2_0_FLASH' | 'GEMINI_2_0_FLASH_LITE' | 'GEMINI_2_5_PRO' | 'GEMINI_2_5_FLASH' | 'GEMINI_2_5_FLASH_LITE' | 'GEMINI_2_5_FLASH_IMAGE';
|
|
4893
|
+
type GoogleproxyV1ModelWithLiterals = GoogleproxyV1Model | 'UNKNOWN_MODEL' | 'GEMINI_1_0_PRO' | 'GEMINI_1_0_PRO_VISION' | 'GEMINI_1_5_PRO' | 'GEMINI_1_5_FLASH' | 'GEMINI_2_0_FLASH' | 'GEMINI_2_0_FLASH_LITE' | 'GEMINI_2_5_PRO' | 'GEMINI_2_5_FLASH' | 'GEMINI_2_5_FLASH_LITE' | 'GEMINI_2_5_FLASH_IMAGE' | 'GEMINI_3_0_PRO';
|
|
4893
4894
|
interface Content {
|
|
4894
4895
|
/**
|
|
4895
4896
|
* The role in a conversation associated with the content.
|
|
@@ -5156,6 +5157,16 @@ interface GenerationThinkingConfig {
|
|
|
5156
5157
|
includeThoughts?: boolean | null;
|
|
5157
5158
|
/** The number of thoughts tokens that the model should generate. */
|
|
5158
5159
|
thinkingBudget?: string | null;
|
|
5160
|
+
/**
|
|
5161
|
+
* Thinking level parameter offering 2 states:
|
|
5162
|
+
* Low: Minimizes latency and cost. Best for simple instruction following or chat.
|
|
5163
|
+
* High: Maximizes reasoning depth. Default. Dynamic thinking.
|
|
5164
|
+
* The model may take significantly longer to reach a first token,
|
|
5165
|
+
* but the output will be more thoroughly vetted.
|
|
5166
|
+
* Note: You cannot use both thinking_level and the legacy thinking_budget parameter in the same request. Doing so will return a 400 error
|
|
5167
|
+
* @maxLength 20
|
|
5168
|
+
*/
|
|
5169
|
+
thinkingLevel?: string | null;
|
|
5159
5170
|
}
|
|
5160
5171
|
interface ImageConfig {
|
|
5161
5172
|
/** Optional. The image output format for generated images. */
|
|
@@ -8012,7 +8023,7 @@ interface V1ResponsesFunctionToolCallOutput {
|
|
|
8012
8023
|
status?: string | null;
|
|
8013
8024
|
/**
|
|
8014
8025
|
* The output/result of the function call.
|
|
8015
|
-
* @maxLength
|
|
8026
|
+
* @maxLength 1000000000
|
|
8016
8027
|
*/
|
|
8017
8028
|
output?: string | null;
|
|
8018
8029
|
/**
|
|
@@ -8024,6 +8035,12 @@ interface V1ResponsesFunctionToolCallOutput {
|
|
|
8024
8035
|
interface V1ResponsesTextFormat extends V1ResponsesTextFormatFormatOneOf {
|
|
8025
8036
|
/** Structured Outputs configuration options, including a JSON Schema. */
|
|
8026
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;
|
|
8027
8044
|
}
|
|
8028
8045
|
/** @oneof */
|
|
8029
8046
|
interface V1ResponsesTextFormatFormatOneOf {
|
|
@@ -8399,7 +8416,7 @@ interface ResponsesFunctionToolCallOutput {
|
|
|
8399
8416
|
status?: string | null;
|
|
8400
8417
|
/**
|
|
8401
8418
|
* The output/result of the function call.
|
|
8402
|
-
* @maxLength
|
|
8419
|
+
* @maxLength 1000000000
|
|
8403
8420
|
*/
|
|
8404
8421
|
output?: string | null;
|
|
8405
8422
|
/**
|
|
@@ -8411,6 +8428,12 @@ interface ResponsesFunctionToolCallOutput {
|
|
|
8411
8428
|
interface ResponsesTextFormat extends ResponsesTextFormatFormatOneOf {
|
|
8412
8429
|
/** Structured Outputs configuration options, including a JSON Schema. */
|
|
8413
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;
|
|
8414
8437
|
}
|
|
8415
8438
|
/** @oneof */
|
|
8416
8439
|
interface ResponsesTextFormatFormatOneOf {
|
package/build/es/meta.mjs
CHANGED
|
@@ -1136,6 +1136,7 @@ var GoogleproxyV1Model = /* @__PURE__ */ ((GoogleproxyV1Model2) => {
|
|
|
1136
1136
|
GoogleproxyV1Model2["GEMINI_2_5_FLASH"] = "GEMINI_2_5_FLASH";
|
|
1137
1137
|
GoogleproxyV1Model2["GEMINI_2_5_FLASH_LITE"] = "GEMINI_2_5_FLASH_LITE";
|
|
1138
1138
|
GoogleproxyV1Model2["GEMINI_2_5_FLASH_IMAGE"] = "GEMINI_2_5_FLASH_IMAGE";
|
|
1139
|
+
GoogleproxyV1Model2["GEMINI_3_0_PRO"] = "GEMINI_3_0_PRO";
|
|
1139
1140
|
return GoogleproxyV1Model2;
|
|
1140
1141
|
})(GoogleproxyV1Model || {});
|
|
1141
1142
|
var ContentRole = /* @__PURE__ */ ((ContentRole2) => {
|