@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.
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +13 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +13 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +13 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +13 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +15 -2
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +13 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +15 -2
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +13 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/meta.d.ts
CHANGED
|
@@ -2847,6 +2847,13 @@ interface CreatePredictionResponse {
|
|
|
2847
2847
|
* @maxLength 40000
|
|
2848
2848
|
*/
|
|
2849
2849
|
output?: string[] | null;
|
|
2850
|
+
/**
|
|
2851
|
+
* Prediction text output
|
|
2852
|
+
* @minSize 1
|
|
2853
|
+
* @maxSize 10
|
|
2854
|
+
* @maxLength 40000
|
|
2855
|
+
*/
|
|
2856
|
+
textOutput?: string[] | null;
|
|
2850
2857
|
/**
|
|
2851
2858
|
* The prediction status
|
|
2852
2859
|
* @maxLength 100
|
|
@@ -5606,6 +5613,12 @@ interface GoogleproxyV1ToolChoice {
|
|
|
5606
5613
|
* @maxLength 1000
|
|
5607
5614
|
*/
|
|
5608
5615
|
name?: string | null;
|
|
5616
|
+
/**
|
|
5617
|
+
* Whether to disable parallel tool use.
|
|
5618
|
+
* Defaults to false.
|
|
5619
|
+
* 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)
|
|
5620
|
+
*/
|
|
5621
|
+
disableParallelToolUse?: boolean | null;
|
|
5609
5622
|
}
|
|
5610
5623
|
declare enum GoogleproxyV1ToolChoiceType {
|
|
5611
5624
|
UNKNOWN = "UNKNOWN",
|