@wix/auto_sdk_ai-gateway_generators 1.0.28 → 1.0.29

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.
@@ -998,10 +998,11 @@ declare enum GoogleproxyV1Model {
998
998
  GEMINI_2_5_PRO = "GEMINI_2_5_PRO",
999
999
  GEMINI_2_5_FLASH = "GEMINI_2_5_FLASH",
1000
1000
  GEMINI_2_5_FLASH_LITE = "GEMINI_2_5_FLASH_LITE",
1001
- GEMINI_2_5_FLASH_IMAGE = "GEMINI_2_5_FLASH_IMAGE"
1001
+ GEMINI_2_5_FLASH_IMAGE = "GEMINI_2_5_FLASH_IMAGE",
1002
+ GEMINI_3_0_PRO = "GEMINI_3_0_PRO"
1002
1003
  }
1003
1004
  /** @enumType */
1004
- 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';
1005
+ 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';
1005
1006
  interface Content {
1006
1007
  /**
1007
1008
  * The role in a conversation associated with the content.
@@ -1343,6 +1344,16 @@ interface GenerationThinkingConfig {
1343
1344
  includeThoughts?: boolean | null;
1344
1345
  /** The number of thoughts tokens that the model should generate. */
1345
1346
  thinkingBudget?: string | null;
1347
+ /**
1348
+ * Thinking level parameter offering 2 states:
1349
+ * Low: Minimizes latency and cost. Best for simple instruction following or chat.
1350
+ * High: Maximizes reasoning depth. Default. Dynamic thinking.
1351
+ * The model may take significantly longer to reach a first token,
1352
+ * but the output will be more thoroughly vetted.
1353
+ * Note: You cannot use both thinking_level and the legacy thinking_budget parameter in the same request. Doing so will return a 400 error
1354
+ * @maxLength 20
1355
+ */
1356
+ thinkingLevel?: string | null;
1346
1357
  }
1347
1358
  declare enum Modality {
1348
1359
  UNKNOWN_MODALITY = "UNKNOWN_MODALITY",
@@ -3198,6 +3198,7 @@ var GoogleproxyV1Model = /* @__PURE__ */ ((GoogleproxyV1Model2) => {
3198
3198
  GoogleproxyV1Model2["GEMINI_2_5_FLASH"] = "GEMINI_2_5_FLASH";
3199
3199
  GoogleproxyV1Model2["GEMINI_2_5_FLASH_LITE"] = "GEMINI_2_5_FLASH_LITE";
3200
3200
  GoogleproxyV1Model2["GEMINI_2_5_FLASH_IMAGE"] = "GEMINI_2_5_FLASH_IMAGE";
3201
+ GoogleproxyV1Model2["GEMINI_3_0_PRO"] = "GEMINI_3_0_PRO";
3201
3202
  return GoogleproxyV1Model2;
3202
3203
  })(GoogleproxyV1Model || {});
3203
3204
  var ContentRole = /* @__PURE__ */ ((ContentRole2) => {