@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.
@@ -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. */
@@ -8010,7 +8021,7 @@ interface V1ResponsesFunctionToolCallOutput {
8010
8021
  status?: string | null;
8011
8022
  /**
8012
8023
  * The output/result of the function call.
8013
- * @maxLength 100000
8024
+ * @maxLength 1000000000
8014
8025
  */
8015
8026
  output?: string | null;
8016
8027
  /**
@@ -8022,6 +8033,12 @@ interface V1ResponsesFunctionToolCallOutput {
8022
8033
  interface V1ResponsesTextFormat extends V1ResponsesTextFormatFormatOneOf {
8023
8034
  /** Structured Outputs configuration options, including a JSON Schema. */
8024
8035
  jsonSchema?: ResponsesTextFormatJsonSchema;
8036
+ /**
8037
+ * Constrains the verbosity of the model's response. Lower values will result in more concise responses,
8038
+ * while higher values will result in more verbose responses. Currently supported values are low, medium, and high.
8039
+ * @maxLength 100
8040
+ */
8041
+ verbosity?: string | null;
8025
8042
  }
8026
8043
  /** @oneof */
8027
8044
  interface V1ResponsesTextFormatFormatOneOf {
@@ -8397,7 +8414,7 @@ interface ResponsesFunctionToolCallOutput {
8397
8414
  status?: string | null;
8398
8415
  /**
8399
8416
  * The output/result of the function call.
8400
- * @maxLength 100000
8417
+ * @maxLength 1000000000
8401
8418
  */
8402
8419
  output?: string | null;
8403
8420
  /**
@@ -8409,6 +8426,12 @@ interface ResponsesFunctionToolCallOutput {
8409
8426
  interface ResponsesTextFormat extends ResponsesTextFormatFormatOneOf {
8410
8427
  /** Structured Outputs configuration options, including a JSON Schema. */
8411
8428
  jsonSchema?: JsonSchema;
8429
+ /**
8430
+ * Constrains the verbosity of the model's response. Lower values will result in more concise responses,
8431
+ * while higher values will result in more verbose responses. Currently supported values are low, medium, and high.
8432
+ * @maxLength 100
8433
+ */
8434
+ verbosity?: string | null;
8412
8435
  }
8413
8436
  /** @oneof */
8414
8437
  interface ResponsesTextFormatFormatOneOf {
@@ -1143,6 +1143,7 @@ var GoogleproxyV1Model = /* @__PURE__ */ ((GoogleproxyV1Model2) => {
1143
1143
  GoogleproxyV1Model2["GEMINI_2_5_FLASH"] = "GEMINI_2_5_FLASH";
1144
1144
  GoogleproxyV1Model2["GEMINI_2_5_FLASH_LITE"] = "GEMINI_2_5_FLASH_LITE";
1145
1145
  GoogleproxyV1Model2["GEMINI_2_5_FLASH_IMAGE"] = "GEMINI_2_5_FLASH_IMAGE";
1146
+ GoogleproxyV1Model2["GEMINI_3_0_PRO"] = "GEMINI_3_0_PRO";
1146
1147
  return GoogleproxyV1Model2;
1147
1148
  })(GoogleproxyV1Model || {});
1148
1149
  var ContentRole = /* @__PURE__ */ ((ContentRole2) => {