@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.
@@ -4887,10 +4887,11 @@ declare enum GoogleproxyV1Model {
4887
4887
  GEMINI_2_5_PRO = "GEMINI_2_5_PRO",
4888
4888
  GEMINI_2_5_FLASH = "GEMINI_2_5_FLASH",
4889
4889
  GEMINI_2_5_FLASH_LITE = "GEMINI_2_5_FLASH_LITE",
4890
- GEMINI_2_5_FLASH_IMAGE = "GEMINI_2_5_FLASH_IMAGE"
4890
+ GEMINI_2_5_FLASH_IMAGE = "GEMINI_2_5_FLASH_IMAGE",
4891
+ GEMINI_3_0_PRO = "GEMINI_3_0_PRO"
4891
4892
  }
4892
4893
  /** @enumType */
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';
4894
+ 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';
4894
4895
  interface Content {
4895
4896
  /**
4896
4897
  * The role in a conversation associated with the content.
@@ -5157,6 +5158,16 @@ interface GenerationThinkingConfig {
5157
5158
  includeThoughts?: boolean | null;
5158
5159
  /** The number of thoughts tokens that the model should generate. */
5159
5160
  thinkingBudget?: string | null;
5161
+ /**
5162
+ * Thinking level parameter offering 2 states:
5163
+ * Low: Minimizes latency and cost. Best for simple instruction following or chat.
5164
+ * High: Maximizes reasoning depth. Default. Dynamic thinking.
5165
+ * The model may take significantly longer to reach a first token,
5166
+ * but the output will be more thoroughly vetted.
5167
+ * Note: You cannot use both thinking_level and the legacy thinking_budget parameter in the same request. Doing so will return a 400 error
5168
+ * @maxLength 20
5169
+ */
5170
+ thinkingLevel?: string | null;
5160
5171
  }
5161
5172
  interface ImageConfig {
5162
5173
  /** Optional. The image output format for generated images. */
@@ -8013,7 +8024,7 @@ interface V1ResponsesFunctionToolCallOutput {
8013
8024
  status?: string | null;
8014
8025
  /**
8015
8026
  * The output/result of the function call.
8016
- * @maxLength 100000
8027
+ * @maxLength 1000000000
8017
8028
  */
8018
8029
  output?: string | null;
8019
8030
  /**
@@ -8025,6 +8036,12 @@ interface V1ResponsesFunctionToolCallOutput {
8025
8036
  interface V1ResponsesTextFormat extends V1ResponsesTextFormatFormatOneOf {
8026
8037
  /** Structured Outputs configuration options, including a JSON Schema. */
8027
8038
  jsonSchema?: ResponsesTextFormatJsonSchema;
8039
+ /**
8040
+ * Constrains the verbosity of the model's response. Lower values will result in more concise responses,
8041
+ * while higher values will result in more verbose responses. Currently supported values are low, medium, and high.
8042
+ * @maxLength 100
8043
+ */
8044
+ verbosity?: string | null;
8028
8045
  }
8029
8046
  /** @oneof */
8030
8047
  interface V1ResponsesTextFormatFormatOneOf {
@@ -8400,7 +8417,7 @@ interface ResponsesFunctionToolCallOutput {
8400
8417
  status?: string | null;
8401
8418
  /**
8402
8419
  * The output/result of the function call.
8403
- * @maxLength 100000
8420
+ * @maxLength 1000000000
8404
8421
  */
8405
8422
  output?: string | null;
8406
8423
  /**
@@ -8412,6 +8429,12 @@ interface ResponsesFunctionToolCallOutput {
8412
8429
  interface ResponsesTextFormat extends ResponsesTextFormatFormatOneOf {
8413
8430
  /** Structured Outputs configuration options, including a JSON Schema. */
8414
8431
  jsonSchema?: JsonSchema;
8432
+ /**
8433
+ * Constrains the verbosity of the model's response. Lower values will result in more concise responses,
8434
+ * while higher values will result in more verbose responses. Currently supported values are low, medium, and high.
8435
+ * @maxLength 100
8436
+ */
8437
+ verbosity?: string | null;
8415
8438
  }
8416
8439
  /** @oneof */
8417
8440
  interface ResponsesTextFormatFormatOneOf {
@@ -1244,6 +1244,7 @@ var GoogleproxyV1Model = /* @__PURE__ */ ((GoogleproxyV1Model2) => {
1244
1244
  GoogleproxyV1Model2["GEMINI_2_5_FLASH"] = "GEMINI_2_5_FLASH";
1245
1245
  GoogleproxyV1Model2["GEMINI_2_5_FLASH_LITE"] = "GEMINI_2_5_FLASH_LITE";
1246
1246
  GoogleproxyV1Model2["GEMINI_2_5_FLASH_IMAGE"] = "GEMINI_2_5_FLASH_IMAGE";
1247
+ GoogleproxyV1Model2["GEMINI_3_0_PRO"] = "GEMINI_3_0_PRO";
1247
1248
  return GoogleproxyV1Model2;
1248
1249
  })(GoogleproxyV1Model || {});
1249
1250
  var ContentRole = /* @__PURE__ */ ((ContentRole2) => {