@wix/auto_sdk_ai-gateway_prompts 1.0.21 → 1.0.22
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 +13 -2
- package/build/cjs/index.typings.js +1 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +13 -2
- 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 +13 -2
- package/build/es/index.typings.mjs +1 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +13 -2
- 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 +13 -2
- 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 +13 -2
- 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 +13 -2
- 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 +13 -2
- package/build/internal/es/meta.mjs +1 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -4884,10 +4884,11 @@ declare enum GoogleproxyV1Model {
|
|
|
4884
4884
|
GEMINI_2_5_PRO = "GEMINI_2_5_PRO",
|
|
4885
4885
|
GEMINI_2_5_FLASH = "GEMINI_2_5_FLASH",
|
|
4886
4886
|
GEMINI_2_5_FLASH_LITE = "GEMINI_2_5_FLASH_LITE",
|
|
4887
|
-
GEMINI_2_5_FLASH_IMAGE = "GEMINI_2_5_FLASH_IMAGE"
|
|
4887
|
+
GEMINI_2_5_FLASH_IMAGE = "GEMINI_2_5_FLASH_IMAGE",
|
|
4888
|
+
GEMINI_3_0_PRO = "GEMINI_3_0_PRO"
|
|
4888
4889
|
}
|
|
4889
4890
|
/** @enumType */
|
|
4890
|
-
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';
|
|
4891
|
+
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';
|
|
4891
4892
|
interface Content {
|
|
4892
4893
|
/**
|
|
4893
4894
|
* The role in a conversation associated with the content.
|
|
@@ -5154,6 +5155,16 @@ interface GenerationThinkingConfig {
|
|
|
5154
5155
|
includeThoughts?: boolean | null;
|
|
5155
5156
|
/** The number of thoughts tokens that the model should generate. */
|
|
5156
5157
|
thinkingBudget?: string | null;
|
|
5158
|
+
/**
|
|
5159
|
+
* Thinking level parameter offering 2 states:
|
|
5160
|
+
* Low: Minimizes latency and cost. Best for simple instruction following or chat.
|
|
5161
|
+
* High: Maximizes reasoning depth. Default. Dynamic thinking.
|
|
5162
|
+
* The model may take significantly longer to reach a first token,
|
|
5163
|
+
* but the output will be more thoroughly vetted.
|
|
5164
|
+
* Note: You cannot use both thinking_level and the legacy thinking_budget parameter in the same request. Doing so will return a 400 error
|
|
5165
|
+
* @maxLength 20
|
|
5166
|
+
*/
|
|
5167
|
+
thinkingLevel?: string | null;
|
|
5157
5168
|
}
|
|
5158
5169
|
interface ImageConfig {
|
|
5159
5170
|
/** Optional. The image output format for generated images. */
|
|
@@ -1248,6 +1248,7 @@ var GoogleproxyV1Model = /* @__PURE__ */ ((GoogleproxyV1Model2) => {
|
|
|
1248
1248
|
GoogleproxyV1Model2["GEMINI_2_5_FLASH"] = "GEMINI_2_5_FLASH";
|
|
1249
1249
|
GoogleproxyV1Model2["GEMINI_2_5_FLASH_LITE"] = "GEMINI_2_5_FLASH_LITE";
|
|
1250
1250
|
GoogleproxyV1Model2["GEMINI_2_5_FLASH_IMAGE"] = "GEMINI_2_5_FLASH_IMAGE";
|
|
1251
|
+
GoogleproxyV1Model2["GEMINI_3_0_PRO"] = "GEMINI_3_0_PRO";
|
|
1251
1252
|
return GoogleproxyV1Model2;
|
|
1252
1253
|
})(GoogleproxyV1Model || {});
|
|
1253
1254
|
var ContentRole = /* @__PURE__ */ ((ContentRole2) => {
|