@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.
@@ -8023,7 +8023,7 @@ interface V1ResponsesFunctionToolCallOutput {
8023
8023
  status?: string | null;
8024
8024
  /**
8025
8025
  * The output/result of the function call.
8026
- * @maxLength 100000
8026
+ * @maxLength 1000000000
8027
8027
  */
8028
8028
  output?: string | null;
8029
8029
  /**
@@ -8035,6 +8035,12 @@ interface V1ResponsesFunctionToolCallOutput {
8035
8035
  interface V1ResponsesTextFormat extends V1ResponsesTextFormatFormatOneOf {
8036
8036
  /** Structured Outputs configuration options, including a JSON Schema. */
8037
8037
  jsonSchema?: ResponsesTextFormatJsonSchema;
8038
+ /**
8039
+ * Constrains the verbosity of the model's response. Lower values will result in more concise responses,
8040
+ * while higher values will result in more verbose responses. Currently supported values are low, medium, and high.
8041
+ * @maxLength 100
8042
+ */
8043
+ verbosity?: string | null;
8038
8044
  }
8039
8045
  /** @oneof */
8040
8046
  interface V1ResponsesTextFormatFormatOneOf {
@@ -8410,7 +8416,7 @@ interface ResponsesFunctionToolCallOutput {
8410
8416
  status?: string | null;
8411
8417
  /**
8412
8418
  * The output/result of the function call.
8413
- * @maxLength 100000
8419
+ * @maxLength 1000000000
8414
8420
  */
8415
8421
  output?: string | null;
8416
8422
  /**
@@ -8422,6 +8428,12 @@ interface ResponsesFunctionToolCallOutput {
8422
8428
  interface ResponsesTextFormat extends ResponsesTextFormatFormatOneOf {
8423
8429
  /** Structured Outputs configuration options, including a JSON Schema. */
8424
8430
  jsonSchema?: JsonSchema;
8431
+ /**
8432
+ * Constrains the verbosity of the model's response. Lower values will result in more concise responses,
8433
+ * while higher values will result in more verbose responses. Currently supported values are low, medium, and high.
8434
+ * @maxLength 100
8435
+ */
8436
+ verbosity?: string | null;
8425
8437
  }
8426
8438
  /** @oneof */
8427
8439
  interface ResponsesTextFormatFormatOneOf {