@wix/auto_sdk_ai-gateway_prompts 1.0.22 → 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.
@@ -8021,7 +8021,7 @@ interface V1ResponsesFunctionToolCallOutput {
8021
8021
  status?: string | null;
8022
8022
  /**
8023
8023
  * The output/result of the function call.
8024
- * @maxLength 100000
8024
+ * @maxLength 1000000000
8025
8025
  */
8026
8026
  output?: string | null;
8027
8027
  /**
@@ -8033,6 +8033,12 @@ interface V1ResponsesFunctionToolCallOutput {
8033
8033
  interface V1ResponsesTextFormat extends V1ResponsesTextFormatFormatOneOf {
8034
8034
  /** Structured Outputs configuration options, including a JSON Schema. */
8035
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;
8036
8042
  }
8037
8043
  /** @oneof */
8038
8044
  interface V1ResponsesTextFormatFormatOneOf {
@@ -8408,7 +8414,7 @@ interface ResponsesFunctionToolCallOutput {
8408
8414
  status?: string | null;
8409
8415
  /**
8410
8416
  * The output/result of the function call.
8411
- * @maxLength 100000
8417
+ * @maxLength 1000000000
8412
8418
  */
8413
8419
  output?: string | null;
8414
8420
  /**
@@ -8420,6 +8426,12 @@ interface ResponsesFunctionToolCallOutput {
8420
8426
  interface ResponsesTextFormat extends ResponsesTextFormatFormatOneOf {
8421
8427
  /** Structured Outputs configuration options, including a JSON Schema. */
8422
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;
8423
8435
  }
8424
8436
  /** @oneof */
8425
8437
  interface ResponsesTextFormatFormatOneOf {