@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.
@@ -2848,6 +2848,13 @@ interface CreatePredictionResponse {
2848
2848
  * @maxLength 40000
2849
2849
  */
2850
2850
  output?: string[] | null;
2851
+ /**
2852
+ * Prediction text output
2853
+ * @minSize 1
2854
+ * @maxSize 10
2855
+ * @maxLength 40000
2856
+ */
2857
+ textOutput?: string[] | null;
2851
2858
  /**
2852
2859
  * The prediction status
2853
2860
  * @maxLength 100
@@ -5607,6 +5614,12 @@ interface GoogleproxyV1ToolChoice {
5607
5614
  * @maxLength 1000
5608
5615
  */
5609
5616
  name?: string | null;
5617
+ /**
5618
+ * Whether to disable parallel tool use.
5619
+ * Defaults to false.
5620
+ * 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)
5621
+ */
5622
+ disableParallelToolUse?: boolean | null;
5610
5623
  }
5611
5624
  declare enum GoogleproxyV1ToolChoiceType {
5612
5625
  UNKNOWN = "UNKNOWN",