@wix/auto_sdk_ai-gateway_generators 1.0.29 → 1.0.30

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.
@@ -5677,7 +5677,7 @@ interface V1ResponsesFunctionToolCallOutput {
5677
5677
  status?: string | null;
5678
5678
  /**
5679
5679
  * The output/result of the function call.
5680
- * @maxLength 100000
5680
+ * @maxLength 1000000000
5681
5681
  */
5682
5682
  output?: string | null;
5683
5683
  /**
@@ -5799,6 +5799,12 @@ interface V1ResponsesReasoning {
5799
5799
  interface V1ResponsesTextFormat extends V1ResponsesTextFormatFormatOneOf {
5800
5800
  /** Structured Outputs configuration options, including a JSON Schema. */
5801
5801
  jsonSchema?: ResponsesTextFormatJsonSchema;
5802
+ /**
5803
+ * Constrains the verbosity of the model's response. Lower values will result in more concise responses,
5804
+ * while higher values will result in more verbose responses. Currently supported values are low, medium, and high.
5805
+ * @maxLength 100
5806
+ */
5807
+ verbosity?: string | null;
5802
5808
  }
5803
5809
  /** @oneof */
5804
5810
  interface V1ResponsesTextFormatFormatOneOf {
@@ -6341,7 +6347,7 @@ interface ResponsesFunctionToolCallOutput {
6341
6347
  status?: string | null;
6342
6348
  /**
6343
6349
  * The output/result of the function call.
6344
- * @maxLength 100000
6350
+ * @maxLength 1000000000
6345
6351
  */
6346
6352
  output?: string | null;
6347
6353
  /**
@@ -6463,6 +6469,12 @@ interface ResponsesReasoning {
6463
6469
  interface ResponsesTextFormat extends ResponsesTextFormatFormatOneOf {
6464
6470
  /** Structured Outputs configuration options, including a JSON Schema. */
6465
6471
  jsonSchema?: JsonSchema;
6472
+ /**
6473
+ * Constrains the verbosity of the model's response. Lower values will result in more concise responses,
6474
+ * while higher values will result in more verbose responses. Currently supported values are low, medium, and high.
6475
+ * @maxLength 100
6476
+ */
6477
+ verbosity?: string | null;
6466
6478
  }
6467
6479
  /** @oneof */
6468
6480
  interface ResponsesTextFormatFormatOneOf {