@wix/auto_sdk_ai-gateway_prompts 1.0.19 → 1.0.21

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.
@@ -2845,6 +2845,13 @@ interface CreatePredictionResponse {
2845
2845
  * @maxLength 40000
2846
2846
  */
2847
2847
  output?: string[] | null;
2848
+ /**
2849
+ * Prediction text output
2850
+ * @minSize 1
2851
+ * @maxSize 10
2852
+ * @maxLength 40000
2853
+ */
2854
+ textOutput?: string[] | null;
2848
2855
  /**
2849
2856
  * The prediction status
2850
2857
  * @maxLength 100
@@ -5604,6 +5611,12 @@ interface GoogleproxyV1ToolChoice {
5604
5611
  * @maxLength 1000
5605
5612
  */
5606
5613
  name?: string | null;
5614
+ /**
5615
+ * Whether to disable parallel tool use.
5616
+ * Defaults to false.
5617
+ * If set to true, the model will output at most one tool use (if Type is AUTO) or exactly one tool use (if Type is ANY or TOOL)
5618
+ */
5619
+ disableParallelToolUse?: boolean | null;
5607
5620
  }
5608
5621
  declare enum GoogleproxyV1ToolChoiceType {
5609
5622
  UNKNOWN = "UNKNOWN",