@browserbasehq/orca 3.5.0-preview.1 → 3.5.1-preview.0
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/README.md +7 -3
- package/dist/cjs/lib/utils.d.ts +2 -0
- package/dist/cjs/lib/utils.js +20 -0
- package/dist/cjs/lib/utils.js.map +1 -1
- package/dist/cjs/lib/v3/agent/AgentProvider.js +1 -0
- package/dist/cjs/lib/v3/agent/AgentProvider.js.map +1 -1
- package/dist/cjs/lib/v3/agent/AnthropicCUAClient.js +1 -0
- package/dist/cjs/lib/v3/agent/AnthropicCUAClient.js.map +1 -1
- package/dist/cjs/lib/v3/api.js +28 -33
- package/dist/cjs/lib/v3/api.js.map +1 -1
- package/dist/cjs/lib/v3/dom/build/locatorScripts.generated.d.ts +24 -24
- package/dist/cjs/lib/v3/dom/build/locatorScripts.generated.js +24 -24
- package/dist/cjs/lib/v3/dom/build/locatorScripts.generated.js.map +1 -1
- package/dist/cjs/lib/v3/dom/locatorScripts/xpathResolver.js +79 -10
- package/dist/cjs/lib/v3/dom/locatorScripts/xpathResolver.js.map +1 -1
- package/dist/cjs/lib/v3/index.d.ts +2 -1
- package/dist/cjs/lib/v3/llm/LLMProvider.js +18 -2
- package/dist/cjs/lib/v3/llm/LLMProvider.js.map +1 -1
- package/dist/cjs/lib/v3/types/public/agent.d.ts +2 -2
- package/dist/cjs/lib/v3/types/public/agent.js +1 -0
- package/dist/cjs/lib/v3/types/public/agent.js.map +1 -1
- package/dist/cjs/lib/v3/types/public/api.d.ts +538 -27
- package/dist/cjs/lib/v3/types/public/api.js +83 -7
- package/dist/cjs/lib/v3/types/public/api.js.map +1 -1
- package/dist/cjs/lib/v3/types/public/clipboard.d.ts +15 -0
- package/dist/cjs/lib/v3/types/public/clipboard.js +3 -0
- package/dist/cjs/lib/v3/types/public/clipboard.js.map +1 -0
- package/dist/cjs/lib/v3/types/public/index.d.ts +1 -0
- package/dist/cjs/lib/v3/types/public/index.js +1 -0
- package/dist/cjs/lib/v3/types/public/index.js.map +1 -1
- package/dist/cjs/lib/v3/types/public/model.d.ts +18 -3
- package/dist/cjs/lib/v3/types/public/model.js.map +1 -1
- package/dist/cjs/lib/v3/types/public/page.d.ts +29 -0
- package/dist/cjs/lib/v3/types/public/page.js.map +1 -1
- package/dist/cjs/lib/v3/types/public/sdkErrors.d.ts +3 -0
- package/dist/cjs/lib/v3/types/public/sdkErrors.js +8 -2
- package/dist/cjs/lib/v3/types/public/sdkErrors.js.map +1 -1
- package/dist/cjs/lib/v3/understudy/clipboard.d.ts +24 -0
- package/dist/cjs/lib/v3/understudy/clipboard.js +166 -0
- package/dist/cjs/lib/v3/understudy/clipboard.js.map +1 -0
- package/dist/cjs/lib/v3/understudy/context.d.ts +3 -0
- package/dist/cjs/lib/v3/understudy/context.js +15 -0
- package/dist/cjs/lib/v3/understudy/context.js.map +1 -1
- package/dist/cjs/lib/v3/understudy/page.d.ts +23 -1
- package/dist/cjs/lib/v3/understudy/page.js +283 -0
- package/dist/cjs/lib/v3/understudy/page.js.map +1 -1
- package/dist/cjs/lib/v3/v3.js +15 -6
- package/dist/cjs/lib/v3/v3.js.map +1 -1
- package/dist/cjs/lib/version.d.ts +1 -1
- package/dist/cjs/lib/version.js +1 -1
- package/dist/cjs/lib/version.js.map +1 -1
- package/dist/esm/lib/utils.d.ts +2 -0
- package/dist/esm/lib/utils.js +18 -0
- package/dist/esm/lib/utils.js.map +1 -1
- package/dist/esm/lib/v3/agent/AgentProvider.js +1 -0
- package/dist/esm/lib/v3/agent/AgentProvider.js.map +1 -1
- package/dist/esm/lib/v3/agent/AnthropicCUAClient.js +1 -0
- package/dist/esm/lib/v3/agent/AnthropicCUAClient.js.map +1 -1
- package/dist/esm/lib/v3/api.js +29 -34
- package/dist/esm/lib/v3/api.js.map +1 -1
- package/dist/esm/lib/v3/dom/build/locatorScripts.generated.d.ts +24 -24
- package/dist/esm/lib/v3/dom/build/locatorScripts.generated.js +24 -24
- package/dist/esm/lib/v3/dom/build/locatorScripts.generated.js.map +1 -1
- package/dist/esm/lib/v3/dom/locatorScripts/xpathResolver.js +79 -10
- package/dist/esm/lib/v3/dom/locatorScripts/xpathResolver.js.map +1 -1
- package/dist/esm/lib/v3/index.d.ts +2 -1
- package/dist/esm/lib/v3/llm/LLMProvider.js +18 -2
- package/dist/esm/lib/v3/llm/LLMProvider.js.map +1 -1
- package/dist/esm/lib/v3/types/public/agent.d.ts +2 -2
- package/dist/esm/lib/v3/types/public/agent.js +1 -0
- package/dist/esm/lib/v3/types/public/agent.js.map +1 -1
- package/dist/esm/lib/v3/types/public/api.d.ts +538 -27
- package/dist/esm/lib/v3/types/public/api.js +81 -5
- package/dist/esm/lib/v3/types/public/api.js.map +1 -1
- package/dist/esm/lib/v3/types/public/clipboard.d.ts +15 -0
- package/dist/esm/lib/v3/types/public/clipboard.js +2 -0
- package/dist/esm/lib/v3/types/public/clipboard.js.map +1 -0
- package/dist/esm/lib/v3/types/public/index.d.ts +1 -0
- package/dist/esm/lib/v3/types/public/index.js +1 -0
- package/dist/esm/lib/v3/types/public/index.js.map +1 -1
- package/dist/esm/lib/v3/types/public/model.d.ts +18 -3
- package/dist/esm/lib/v3/types/public/model.js.map +1 -1
- package/dist/esm/lib/v3/types/public/page.d.ts +29 -0
- package/dist/esm/lib/v3/types/public/page.js.map +1 -1
- package/dist/esm/lib/v3/types/public/sdkErrors.d.ts +3 -0
- package/dist/esm/lib/v3/types/public/sdkErrors.js +5 -0
- package/dist/esm/lib/v3/types/public/sdkErrors.js.map +1 -1
- package/dist/esm/lib/v3/understudy/clipboard.d.ts +24 -0
- package/dist/esm/lib/v3/understudy/clipboard.js +163 -0
- package/dist/esm/lib/v3/understudy/clipboard.js.map +1 -0
- package/dist/esm/lib/v3/understudy/context.d.ts +3 -0
- package/dist/esm/lib/v3/understudy/context.js +15 -0
- package/dist/esm/lib/v3/understudy/context.js.map +1 -1
- package/dist/esm/lib/v3/understudy/page.d.ts +23 -1
- package/dist/esm/lib/v3/understudy/page.js +284 -1
- package/dist/esm/lib/v3/understudy/page.js.map +1 -1
- package/dist/esm/lib/v3/v3.js +16 -7
- package/dist/esm/lib/v3/v3.js.map +1 -1
- package/dist/esm/lib/version.d.ts +1 -1
- package/dist/esm/lib/version.js +1 -1
- package/dist/esm/lib/version.js.map +1 -1
- package/package.json +13 -7
|
@@ -74,6 +74,10 @@ export declare const GoogleServiceAccountAuthSchema: z.ZodObject<{
|
|
|
74
74
|
projectId: z.ZodOptional<z.ZodString>;
|
|
75
75
|
universeDomain: z.ZodOptional<z.ZodString>;
|
|
76
76
|
}, z.core.$strict>;
|
|
77
|
+
export declare const AzureEntraIdAuthSchema: z.ZodObject<{
|
|
78
|
+
type: z.ZodLiteral<"azureEntraId">;
|
|
79
|
+
token: z.ZodString;
|
|
80
|
+
}, z.core.$strict>;
|
|
77
81
|
export declare const ModelAuthSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
78
82
|
type: z.ZodLiteral<"googleServiceAccount">;
|
|
79
83
|
credentials: z.ZodObject<{
|
|
@@ -92,6 +96,9 @@ export declare const ModelAuthSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
92
96
|
scopes: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
93
97
|
projectId: z.ZodOptional<z.ZodString>;
|
|
94
98
|
universeDomain: z.ZodOptional<z.ZodString>;
|
|
99
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
100
|
+
type: z.ZodLiteral<"azureEntraId">;
|
|
101
|
+
token: z.ZodString;
|
|
95
102
|
}, z.core.$strict>], "type">;
|
|
96
103
|
export declare const VertexProviderOptionsSchema: z.ZodObject<{
|
|
97
104
|
project: z.ZodString;
|
|
@@ -99,7 +106,14 @@ export declare const VertexProviderOptionsSchema: z.ZodObject<{
|
|
|
99
106
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
100
107
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
101
108
|
}, z.core.$strict>;
|
|
102
|
-
export declare const
|
|
109
|
+
export declare const AzureProviderOptionsSchema: z.ZodObject<{
|
|
110
|
+
resourceName: z.ZodOptional<z.ZodString>;
|
|
111
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
112
|
+
apiVersion: z.ZodOptional<z.ZodString>;
|
|
113
|
+
useDeploymentBasedUrls: z.ZodOptional<z.ZodBoolean>;
|
|
114
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
115
|
+
}, z.core.$strict>;
|
|
116
|
+
export declare const VertexModelProviderOptionsSchema: z.ZodObject<{
|
|
103
117
|
vertex: z.ZodObject<{
|
|
104
118
|
project: z.ZodString;
|
|
105
119
|
location: z.ZodString;
|
|
@@ -107,6 +121,31 @@ export declare const ModelProviderOptionsSchema: z.ZodObject<{
|
|
|
107
121
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
108
122
|
}, z.core.$strict>;
|
|
109
123
|
}, z.core.$strict>;
|
|
124
|
+
export declare const AzureModelProviderOptionsSchema: z.ZodObject<{
|
|
125
|
+
azure: z.ZodObject<{
|
|
126
|
+
resourceName: z.ZodOptional<z.ZodString>;
|
|
127
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
128
|
+
apiVersion: z.ZodOptional<z.ZodString>;
|
|
129
|
+
useDeploymentBasedUrls: z.ZodOptional<z.ZodBoolean>;
|
|
130
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
131
|
+
}, z.core.$strict>;
|
|
132
|
+
}, z.core.$strict>;
|
|
133
|
+
export declare const ModelProviderOptionsSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
134
|
+
vertex: z.ZodObject<{
|
|
135
|
+
project: z.ZodString;
|
|
136
|
+
location: z.ZodString;
|
|
137
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
138
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
139
|
+
}, z.core.$strict>;
|
|
140
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
141
|
+
azure: z.ZodObject<{
|
|
142
|
+
resourceName: z.ZodOptional<z.ZodString>;
|
|
143
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
144
|
+
apiVersion: z.ZodOptional<z.ZodString>;
|
|
145
|
+
useDeploymentBasedUrls: z.ZodOptional<z.ZodBoolean>;
|
|
146
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
147
|
+
}, z.core.$strict>;
|
|
148
|
+
}, z.core.$strict>]>;
|
|
110
149
|
export declare const GenericModelConfigObjectSchema: z.ZodObject<{
|
|
111
150
|
modelName: z.ZodString;
|
|
112
151
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
@@ -126,7 +165,7 @@ export declare const VertexModelConfigObjectSchema: z.ZodObject<{
|
|
|
126
165
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
127
166
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
128
167
|
provider: z.ZodLiteral<"vertex">;
|
|
129
|
-
auth: z.
|
|
168
|
+
auth: z.ZodObject<{
|
|
130
169
|
type: z.ZodLiteral<"googleServiceAccount">;
|
|
131
170
|
credentials: z.ZodObject<{
|
|
132
171
|
type: z.ZodOptional<z.ZodLiteral<"service_account">>;
|
|
@@ -144,7 +183,7 @@ export declare const VertexModelConfigObjectSchema: z.ZodObject<{
|
|
|
144
183
|
scopes: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
145
184
|
projectId: z.ZodOptional<z.ZodString>;
|
|
146
185
|
universeDomain: z.ZodOptional<z.ZodString>;
|
|
147
|
-
}, z.core.$strict
|
|
186
|
+
}, z.core.$strict>;
|
|
148
187
|
providerOptions: z.ZodObject<{
|
|
149
188
|
vertex: z.ZodObject<{
|
|
150
189
|
project: z.ZodString;
|
|
@@ -154,13 +193,82 @@ export declare const VertexModelConfigObjectSchema: z.ZodObject<{
|
|
|
154
193
|
}, z.core.$strict>;
|
|
155
194
|
}, z.core.$strict>;
|
|
156
195
|
}, z.core.$strict>;
|
|
196
|
+
export declare const AzureEntraModelConfigObjectSchema: z.ZodObject<{
|
|
197
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
198
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
199
|
+
modelName: z.ZodString;
|
|
200
|
+
provider: z.ZodLiteral<"azure">;
|
|
201
|
+
providerOptions: z.ZodObject<{
|
|
202
|
+
azure: z.ZodObject<{
|
|
203
|
+
resourceName: z.ZodOptional<z.ZodString>;
|
|
204
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
205
|
+
apiVersion: z.ZodOptional<z.ZodString>;
|
|
206
|
+
useDeploymentBasedUrls: z.ZodOptional<z.ZodBoolean>;
|
|
207
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
208
|
+
}, z.core.$strict>;
|
|
209
|
+
}, z.core.$strict>;
|
|
210
|
+
auth: z.ZodObject<{
|
|
211
|
+
type: z.ZodLiteral<"azureEntraId">;
|
|
212
|
+
token: z.ZodString;
|
|
213
|
+
}, z.core.$strict>;
|
|
214
|
+
}, z.core.$strict>;
|
|
215
|
+
export declare const AzureApiKeyModelConfigObjectSchema: z.ZodObject<{
|
|
216
|
+
modelName: z.ZodString;
|
|
217
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
218
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
219
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
220
|
+
provider: z.ZodLiteral<"azure">;
|
|
221
|
+
providerOptions: z.ZodObject<{
|
|
222
|
+
azure: z.ZodObject<{
|
|
223
|
+
resourceName: z.ZodOptional<z.ZodString>;
|
|
224
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
225
|
+
apiVersion: z.ZodOptional<z.ZodString>;
|
|
226
|
+
useDeploymentBasedUrls: z.ZodOptional<z.ZodBoolean>;
|
|
227
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
228
|
+
}, z.core.$strict>;
|
|
229
|
+
}, z.core.$strict>;
|
|
230
|
+
}, z.core.$strict>;
|
|
231
|
+
export declare const AzureModelConfigObjectSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
232
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
233
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
234
|
+
modelName: z.ZodString;
|
|
235
|
+
provider: z.ZodLiteral<"azure">;
|
|
236
|
+
providerOptions: z.ZodObject<{
|
|
237
|
+
azure: z.ZodObject<{
|
|
238
|
+
resourceName: z.ZodOptional<z.ZodString>;
|
|
239
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
240
|
+
apiVersion: z.ZodOptional<z.ZodString>;
|
|
241
|
+
useDeploymentBasedUrls: z.ZodOptional<z.ZodBoolean>;
|
|
242
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
243
|
+
}, z.core.$strict>;
|
|
244
|
+
}, z.core.$strict>;
|
|
245
|
+
auth: z.ZodObject<{
|
|
246
|
+
type: z.ZodLiteral<"azureEntraId">;
|
|
247
|
+
token: z.ZodString;
|
|
248
|
+
}, z.core.$strict>;
|
|
249
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
250
|
+
modelName: z.ZodString;
|
|
251
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
252
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
253
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
254
|
+
provider: z.ZodLiteral<"azure">;
|
|
255
|
+
providerOptions: z.ZodObject<{
|
|
256
|
+
azure: z.ZodObject<{
|
|
257
|
+
resourceName: z.ZodOptional<z.ZodString>;
|
|
258
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
259
|
+
apiVersion: z.ZodOptional<z.ZodString>;
|
|
260
|
+
useDeploymentBasedUrls: z.ZodOptional<z.ZodBoolean>;
|
|
261
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
262
|
+
}, z.core.$strict>;
|
|
263
|
+
}, z.core.$strict>;
|
|
264
|
+
}, z.core.$strict>]>;
|
|
157
265
|
export declare const ModelConfigObjectSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
158
266
|
modelName: z.ZodString;
|
|
159
267
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
160
268
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
161
269
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
162
270
|
provider: z.ZodLiteral<"vertex">;
|
|
163
|
-
auth: z.
|
|
271
|
+
auth: z.ZodObject<{
|
|
164
272
|
type: z.ZodLiteral<"googleServiceAccount">;
|
|
165
273
|
credentials: z.ZodObject<{
|
|
166
274
|
type: z.ZodOptional<z.ZodLiteral<"service_account">>;
|
|
@@ -178,7 +286,7 @@ export declare const ModelConfigObjectSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
178
286
|
scopes: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
179
287
|
projectId: z.ZodOptional<z.ZodString>;
|
|
180
288
|
universeDomain: z.ZodOptional<z.ZodString>;
|
|
181
|
-
}, z.core.$strict
|
|
289
|
+
}, z.core.$strict>;
|
|
182
290
|
providerOptions: z.ZodObject<{
|
|
183
291
|
vertex: z.ZodObject<{
|
|
184
292
|
project: z.ZodString;
|
|
@@ -187,7 +295,40 @@ export declare const ModelConfigObjectSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
187
295
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
188
296
|
}, z.core.$strict>;
|
|
189
297
|
}, z.core.$strict>;
|
|
298
|
+
}, z.core.$strict>, z.ZodUnion<readonly [z.ZodObject<{
|
|
299
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
300
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
301
|
+
modelName: z.ZodString;
|
|
302
|
+
provider: z.ZodLiteral<"azure">;
|
|
303
|
+
providerOptions: z.ZodObject<{
|
|
304
|
+
azure: z.ZodObject<{
|
|
305
|
+
resourceName: z.ZodOptional<z.ZodString>;
|
|
306
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
307
|
+
apiVersion: z.ZodOptional<z.ZodString>;
|
|
308
|
+
useDeploymentBasedUrls: z.ZodOptional<z.ZodBoolean>;
|
|
309
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
310
|
+
}, z.core.$strict>;
|
|
311
|
+
}, z.core.$strict>;
|
|
312
|
+
auth: z.ZodObject<{
|
|
313
|
+
type: z.ZodLiteral<"azureEntraId">;
|
|
314
|
+
token: z.ZodString;
|
|
315
|
+
}, z.core.$strict>;
|
|
190
316
|
}, z.core.$strict>, z.ZodObject<{
|
|
317
|
+
modelName: z.ZodString;
|
|
318
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
319
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
320
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
321
|
+
provider: z.ZodLiteral<"azure">;
|
|
322
|
+
providerOptions: z.ZodObject<{
|
|
323
|
+
azure: z.ZodObject<{
|
|
324
|
+
resourceName: z.ZodOptional<z.ZodString>;
|
|
325
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
326
|
+
apiVersion: z.ZodOptional<z.ZodString>;
|
|
327
|
+
useDeploymentBasedUrls: z.ZodOptional<z.ZodBoolean>;
|
|
328
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
329
|
+
}, z.core.$strict>;
|
|
330
|
+
}, z.core.$strict>;
|
|
331
|
+
}, z.core.$strict>]>, z.ZodObject<{
|
|
191
332
|
modelName: z.ZodString;
|
|
192
333
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
193
334
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
@@ -207,7 +348,7 @@ export declare const ModelConfigSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
207
348
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
208
349
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
209
350
|
provider: z.ZodLiteral<"vertex">;
|
|
210
|
-
auth: z.
|
|
351
|
+
auth: z.ZodObject<{
|
|
211
352
|
type: z.ZodLiteral<"googleServiceAccount">;
|
|
212
353
|
credentials: z.ZodObject<{
|
|
213
354
|
type: z.ZodOptional<z.ZodLiteral<"service_account">>;
|
|
@@ -225,7 +366,7 @@ export declare const ModelConfigSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
225
366
|
scopes: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
226
367
|
projectId: z.ZodOptional<z.ZodString>;
|
|
227
368
|
universeDomain: z.ZodOptional<z.ZodString>;
|
|
228
|
-
}, z.core.$strict
|
|
369
|
+
}, z.core.$strict>;
|
|
229
370
|
providerOptions: z.ZodObject<{
|
|
230
371
|
vertex: z.ZodObject<{
|
|
231
372
|
project: z.ZodString;
|
|
@@ -234,7 +375,40 @@ export declare const ModelConfigSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
234
375
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
235
376
|
}, z.core.$strict>;
|
|
236
377
|
}, z.core.$strict>;
|
|
378
|
+
}, z.core.$strict>, z.ZodUnion<readonly [z.ZodObject<{
|
|
379
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
380
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
381
|
+
modelName: z.ZodString;
|
|
382
|
+
provider: z.ZodLiteral<"azure">;
|
|
383
|
+
providerOptions: z.ZodObject<{
|
|
384
|
+
azure: z.ZodObject<{
|
|
385
|
+
resourceName: z.ZodOptional<z.ZodString>;
|
|
386
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
387
|
+
apiVersion: z.ZodOptional<z.ZodString>;
|
|
388
|
+
useDeploymentBasedUrls: z.ZodOptional<z.ZodBoolean>;
|
|
389
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
390
|
+
}, z.core.$strict>;
|
|
391
|
+
}, z.core.$strict>;
|
|
392
|
+
auth: z.ZodObject<{
|
|
393
|
+
type: z.ZodLiteral<"azureEntraId">;
|
|
394
|
+
token: z.ZodString;
|
|
395
|
+
}, z.core.$strict>;
|
|
237
396
|
}, z.core.$strict>, z.ZodObject<{
|
|
397
|
+
modelName: z.ZodString;
|
|
398
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
399
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
400
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
401
|
+
provider: z.ZodLiteral<"azure">;
|
|
402
|
+
providerOptions: z.ZodObject<{
|
|
403
|
+
azure: z.ZodObject<{
|
|
404
|
+
resourceName: z.ZodOptional<z.ZodString>;
|
|
405
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
406
|
+
apiVersion: z.ZodOptional<z.ZodString>;
|
|
407
|
+
useDeploymentBasedUrls: z.ZodOptional<z.ZodBoolean>;
|
|
408
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
409
|
+
}, z.core.$strict>;
|
|
410
|
+
}, z.core.$strict>;
|
|
411
|
+
}, z.core.$strict>]>, z.ZodObject<{
|
|
238
412
|
modelName: z.ZodString;
|
|
239
413
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
240
414
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
@@ -706,7 +880,7 @@ export declare const ActOptionsSchema: z.ZodOptional<z.ZodObject<{
|
|
|
706
880
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
707
881
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
708
882
|
provider: z.ZodLiteral<"vertex">;
|
|
709
|
-
auth: z.
|
|
883
|
+
auth: z.ZodObject<{
|
|
710
884
|
type: z.ZodLiteral<"googleServiceAccount">;
|
|
711
885
|
credentials: z.ZodObject<{
|
|
712
886
|
type: z.ZodOptional<z.ZodLiteral<"service_account">>;
|
|
@@ -724,7 +898,7 @@ export declare const ActOptionsSchema: z.ZodOptional<z.ZodObject<{
|
|
|
724
898
|
scopes: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
725
899
|
projectId: z.ZodOptional<z.ZodString>;
|
|
726
900
|
universeDomain: z.ZodOptional<z.ZodString>;
|
|
727
|
-
}, z.core.$strict
|
|
901
|
+
}, z.core.$strict>;
|
|
728
902
|
providerOptions: z.ZodObject<{
|
|
729
903
|
vertex: z.ZodObject<{
|
|
730
904
|
project: z.ZodString;
|
|
@@ -733,7 +907,40 @@ export declare const ActOptionsSchema: z.ZodOptional<z.ZodObject<{
|
|
|
733
907
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
734
908
|
}, z.core.$strict>;
|
|
735
909
|
}, z.core.$strict>;
|
|
910
|
+
}, z.core.$strict>, z.ZodUnion<readonly [z.ZodObject<{
|
|
911
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
912
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
913
|
+
modelName: z.ZodString;
|
|
914
|
+
provider: z.ZodLiteral<"azure">;
|
|
915
|
+
providerOptions: z.ZodObject<{
|
|
916
|
+
azure: z.ZodObject<{
|
|
917
|
+
resourceName: z.ZodOptional<z.ZodString>;
|
|
918
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
919
|
+
apiVersion: z.ZodOptional<z.ZodString>;
|
|
920
|
+
useDeploymentBasedUrls: z.ZodOptional<z.ZodBoolean>;
|
|
921
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
922
|
+
}, z.core.$strict>;
|
|
923
|
+
}, z.core.$strict>;
|
|
924
|
+
auth: z.ZodObject<{
|
|
925
|
+
type: z.ZodLiteral<"azureEntraId">;
|
|
926
|
+
token: z.ZodString;
|
|
927
|
+
}, z.core.$strict>;
|
|
736
928
|
}, z.core.$strict>, z.ZodObject<{
|
|
929
|
+
modelName: z.ZodString;
|
|
930
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
931
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
932
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
933
|
+
provider: z.ZodLiteral<"azure">;
|
|
934
|
+
providerOptions: z.ZodObject<{
|
|
935
|
+
azure: z.ZodObject<{
|
|
936
|
+
resourceName: z.ZodOptional<z.ZodString>;
|
|
937
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
938
|
+
apiVersion: z.ZodOptional<z.ZodString>;
|
|
939
|
+
useDeploymentBasedUrls: z.ZodOptional<z.ZodBoolean>;
|
|
940
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
941
|
+
}, z.core.$strict>;
|
|
942
|
+
}, z.core.$strict>;
|
|
943
|
+
}, z.core.$strict>]>, z.ZodObject<{
|
|
737
944
|
modelName: z.ZodString;
|
|
738
945
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
739
946
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
@@ -764,7 +971,7 @@ export declare const ActRequestSchema: z.ZodObject<{
|
|
|
764
971
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
765
972
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
766
973
|
provider: z.ZodLiteral<"vertex">;
|
|
767
|
-
auth: z.
|
|
974
|
+
auth: z.ZodObject<{
|
|
768
975
|
type: z.ZodLiteral<"googleServiceAccount">;
|
|
769
976
|
credentials: z.ZodObject<{
|
|
770
977
|
type: z.ZodOptional<z.ZodLiteral<"service_account">>;
|
|
@@ -782,7 +989,7 @@ export declare const ActRequestSchema: z.ZodObject<{
|
|
|
782
989
|
scopes: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
783
990
|
projectId: z.ZodOptional<z.ZodString>;
|
|
784
991
|
universeDomain: z.ZodOptional<z.ZodString>;
|
|
785
|
-
}, z.core.$strict
|
|
992
|
+
}, z.core.$strict>;
|
|
786
993
|
providerOptions: z.ZodObject<{
|
|
787
994
|
vertex: z.ZodObject<{
|
|
788
995
|
project: z.ZodString;
|
|
@@ -791,7 +998,40 @@ export declare const ActRequestSchema: z.ZodObject<{
|
|
|
791
998
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
792
999
|
}, z.core.$strict>;
|
|
793
1000
|
}, z.core.$strict>;
|
|
1001
|
+
}, z.core.$strict>, z.ZodUnion<readonly [z.ZodObject<{
|
|
1002
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
1003
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1004
|
+
modelName: z.ZodString;
|
|
1005
|
+
provider: z.ZodLiteral<"azure">;
|
|
1006
|
+
providerOptions: z.ZodObject<{
|
|
1007
|
+
azure: z.ZodObject<{
|
|
1008
|
+
resourceName: z.ZodOptional<z.ZodString>;
|
|
1009
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
1010
|
+
apiVersion: z.ZodOptional<z.ZodString>;
|
|
1011
|
+
useDeploymentBasedUrls: z.ZodOptional<z.ZodBoolean>;
|
|
1012
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1013
|
+
}, z.core.$strict>;
|
|
1014
|
+
}, z.core.$strict>;
|
|
1015
|
+
auth: z.ZodObject<{
|
|
1016
|
+
type: z.ZodLiteral<"azureEntraId">;
|
|
1017
|
+
token: z.ZodString;
|
|
1018
|
+
}, z.core.$strict>;
|
|
794
1019
|
}, z.core.$strict>, z.ZodObject<{
|
|
1020
|
+
modelName: z.ZodString;
|
|
1021
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1022
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
1023
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1024
|
+
provider: z.ZodLiteral<"azure">;
|
|
1025
|
+
providerOptions: z.ZodObject<{
|
|
1026
|
+
azure: z.ZodObject<{
|
|
1027
|
+
resourceName: z.ZodOptional<z.ZodString>;
|
|
1028
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
1029
|
+
apiVersion: z.ZodOptional<z.ZodString>;
|
|
1030
|
+
useDeploymentBasedUrls: z.ZodOptional<z.ZodBoolean>;
|
|
1031
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1032
|
+
}, z.core.$strict>;
|
|
1033
|
+
}, z.core.$strict>;
|
|
1034
|
+
}, z.core.$strict>]>, z.ZodObject<{
|
|
795
1035
|
modelName: z.ZodString;
|
|
796
1036
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
797
1037
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
@@ -863,7 +1103,7 @@ export declare const ExtractOptionsSchema: z.ZodOptional<z.ZodObject<{
|
|
|
863
1103
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
864
1104
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
865
1105
|
provider: z.ZodLiteral<"vertex">;
|
|
866
|
-
auth: z.
|
|
1106
|
+
auth: z.ZodObject<{
|
|
867
1107
|
type: z.ZodLiteral<"googleServiceAccount">;
|
|
868
1108
|
credentials: z.ZodObject<{
|
|
869
1109
|
type: z.ZodOptional<z.ZodLiteral<"service_account">>;
|
|
@@ -881,7 +1121,7 @@ export declare const ExtractOptionsSchema: z.ZodOptional<z.ZodObject<{
|
|
|
881
1121
|
scopes: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
882
1122
|
projectId: z.ZodOptional<z.ZodString>;
|
|
883
1123
|
universeDomain: z.ZodOptional<z.ZodString>;
|
|
884
|
-
}, z.core.$strict
|
|
1124
|
+
}, z.core.$strict>;
|
|
885
1125
|
providerOptions: z.ZodObject<{
|
|
886
1126
|
vertex: z.ZodObject<{
|
|
887
1127
|
project: z.ZodString;
|
|
@@ -890,7 +1130,40 @@ export declare const ExtractOptionsSchema: z.ZodOptional<z.ZodObject<{
|
|
|
890
1130
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
891
1131
|
}, z.core.$strict>;
|
|
892
1132
|
}, z.core.$strict>;
|
|
1133
|
+
}, z.core.$strict>, z.ZodUnion<readonly [z.ZodObject<{
|
|
1134
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
1135
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1136
|
+
modelName: z.ZodString;
|
|
1137
|
+
provider: z.ZodLiteral<"azure">;
|
|
1138
|
+
providerOptions: z.ZodObject<{
|
|
1139
|
+
azure: z.ZodObject<{
|
|
1140
|
+
resourceName: z.ZodOptional<z.ZodString>;
|
|
1141
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
1142
|
+
apiVersion: z.ZodOptional<z.ZodString>;
|
|
1143
|
+
useDeploymentBasedUrls: z.ZodOptional<z.ZodBoolean>;
|
|
1144
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1145
|
+
}, z.core.$strict>;
|
|
1146
|
+
}, z.core.$strict>;
|
|
1147
|
+
auth: z.ZodObject<{
|
|
1148
|
+
type: z.ZodLiteral<"azureEntraId">;
|
|
1149
|
+
token: z.ZodString;
|
|
1150
|
+
}, z.core.$strict>;
|
|
893
1151
|
}, z.core.$strict>, z.ZodObject<{
|
|
1152
|
+
modelName: z.ZodString;
|
|
1153
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1154
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
1155
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1156
|
+
provider: z.ZodLiteral<"azure">;
|
|
1157
|
+
providerOptions: z.ZodObject<{
|
|
1158
|
+
azure: z.ZodObject<{
|
|
1159
|
+
resourceName: z.ZodOptional<z.ZodString>;
|
|
1160
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
1161
|
+
apiVersion: z.ZodOptional<z.ZodString>;
|
|
1162
|
+
useDeploymentBasedUrls: z.ZodOptional<z.ZodBoolean>;
|
|
1163
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1164
|
+
}, z.core.$strict>;
|
|
1165
|
+
}, z.core.$strict>;
|
|
1166
|
+
}, z.core.$strict>]>, z.ZodObject<{
|
|
894
1167
|
modelName: z.ZodString;
|
|
895
1168
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
896
1169
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
@@ -918,7 +1191,7 @@ export declare const ExtractRequestSchema: z.ZodObject<{
|
|
|
918
1191
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
919
1192
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
920
1193
|
provider: z.ZodLiteral<"vertex">;
|
|
921
|
-
auth: z.
|
|
1194
|
+
auth: z.ZodObject<{
|
|
922
1195
|
type: z.ZodLiteral<"googleServiceAccount">;
|
|
923
1196
|
credentials: z.ZodObject<{
|
|
924
1197
|
type: z.ZodOptional<z.ZodLiteral<"service_account">>;
|
|
@@ -936,7 +1209,7 @@ export declare const ExtractRequestSchema: z.ZodObject<{
|
|
|
936
1209
|
scopes: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
937
1210
|
projectId: z.ZodOptional<z.ZodString>;
|
|
938
1211
|
universeDomain: z.ZodOptional<z.ZodString>;
|
|
939
|
-
}, z.core.$strict
|
|
1212
|
+
}, z.core.$strict>;
|
|
940
1213
|
providerOptions: z.ZodObject<{
|
|
941
1214
|
vertex: z.ZodObject<{
|
|
942
1215
|
project: z.ZodString;
|
|
@@ -945,7 +1218,40 @@ export declare const ExtractRequestSchema: z.ZodObject<{
|
|
|
945
1218
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
946
1219
|
}, z.core.$strict>;
|
|
947
1220
|
}, z.core.$strict>;
|
|
1221
|
+
}, z.core.$strict>, z.ZodUnion<readonly [z.ZodObject<{
|
|
1222
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
1223
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1224
|
+
modelName: z.ZodString;
|
|
1225
|
+
provider: z.ZodLiteral<"azure">;
|
|
1226
|
+
providerOptions: z.ZodObject<{
|
|
1227
|
+
azure: z.ZodObject<{
|
|
1228
|
+
resourceName: z.ZodOptional<z.ZodString>;
|
|
1229
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
1230
|
+
apiVersion: z.ZodOptional<z.ZodString>;
|
|
1231
|
+
useDeploymentBasedUrls: z.ZodOptional<z.ZodBoolean>;
|
|
1232
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1233
|
+
}, z.core.$strict>;
|
|
1234
|
+
}, z.core.$strict>;
|
|
1235
|
+
auth: z.ZodObject<{
|
|
1236
|
+
type: z.ZodLiteral<"azureEntraId">;
|
|
1237
|
+
token: z.ZodString;
|
|
1238
|
+
}, z.core.$strict>;
|
|
948
1239
|
}, z.core.$strict>, z.ZodObject<{
|
|
1240
|
+
modelName: z.ZodString;
|
|
1241
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1242
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
1243
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1244
|
+
provider: z.ZodLiteral<"azure">;
|
|
1245
|
+
providerOptions: z.ZodObject<{
|
|
1246
|
+
azure: z.ZodObject<{
|
|
1247
|
+
resourceName: z.ZodOptional<z.ZodString>;
|
|
1248
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
1249
|
+
apiVersion: z.ZodOptional<z.ZodString>;
|
|
1250
|
+
useDeploymentBasedUrls: z.ZodOptional<z.ZodBoolean>;
|
|
1251
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1252
|
+
}, z.core.$strict>;
|
|
1253
|
+
}, z.core.$strict>;
|
|
1254
|
+
}, z.core.$strict>]>, z.ZodObject<{
|
|
949
1255
|
modelName: z.ZodString;
|
|
950
1256
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
951
1257
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
@@ -984,7 +1290,7 @@ export declare const ObserveOptionsSchema: z.ZodOptional<z.ZodObject<{
|
|
|
984
1290
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
985
1291
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
986
1292
|
provider: z.ZodLiteral<"vertex">;
|
|
987
|
-
auth: z.
|
|
1293
|
+
auth: z.ZodObject<{
|
|
988
1294
|
type: z.ZodLiteral<"googleServiceAccount">;
|
|
989
1295
|
credentials: z.ZodObject<{
|
|
990
1296
|
type: z.ZodOptional<z.ZodLiteral<"service_account">>;
|
|
@@ -1002,7 +1308,7 @@ export declare const ObserveOptionsSchema: z.ZodOptional<z.ZodObject<{
|
|
|
1002
1308
|
scopes: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
1003
1309
|
projectId: z.ZodOptional<z.ZodString>;
|
|
1004
1310
|
universeDomain: z.ZodOptional<z.ZodString>;
|
|
1005
|
-
}, z.core.$strict
|
|
1311
|
+
}, z.core.$strict>;
|
|
1006
1312
|
providerOptions: z.ZodObject<{
|
|
1007
1313
|
vertex: z.ZodObject<{
|
|
1008
1314
|
project: z.ZodString;
|
|
@@ -1011,7 +1317,40 @@ export declare const ObserveOptionsSchema: z.ZodOptional<z.ZodObject<{
|
|
|
1011
1317
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1012
1318
|
}, z.core.$strict>;
|
|
1013
1319
|
}, z.core.$strict>;
|
|
1320
|
+
}, z.core.$strict>, z.ZodUnion<readonly [z.ZodObject<{
|
|
1321
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
1322
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1323
|
+
modelName: z.ZodString;
|
|
1324
|
+
provider: z.ZodLiteral<"azure">;
|
|
1325
|
+
providerOptions: z.ZodObject<{
|
|
1326
|
+
azure: z.ZodObject<{
|
|
1327
|
+
resourceName: z.ZodOptional<z.ZodString>;
|
|
1328
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
1329
|
+
apiVersion: z.ZodOptional<z.ZodString>;
|
|
1330
|
+
useDeploymentBasedUrls: z.ZodOptional<z.ZodBoolean>;
|
|
1331
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1332
|
+
}, z.core.$strict>;
|
|
1333
|
+
}, z.core.$strict>;
|
|
1334
|
+
auth: z.ZodObject<{
|
|
1335
|
+
type: z.ZodLiteral<"azureEntraId">;
|
|
1336
|
+
token: z.ZodString;
|
|
1337
|
+
}, z.core.$strict>;
|
|
1014
1338
|
}, z.core.$strict>, z.ZodObject<{
|
|
1339
|
+
modelName: z.ZodString;
|
|
1340
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1341
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
1342
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1343
|
+
provider: z.ZodLiteral<"azure">;
|
|
1344
|
+
providerOptions: z.ZodObject<{
|
|
1345
|
+
azure: z.ZodObject<{
|
|
1346
|
+
resourceName: z.ZodOptional<z.ZodString>;
|
|
1347
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
1348
|
+
apiVersion: z.ZodOptional<z.ZodString>;
|
|
1349
|
+
useDeploymentBasedUrls: z.ZodOptional<z.ZodBoolean>;
|
|
1350
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1351
|
+
}, z.core.$strict>;
|
|
1352
|
+
}, z.core.$strict>;
|
|
1353
|
+
}, z.core.$strict>]>, z.ZodObject<{
|
|
1015
1354
|
modelName: z.ZodString;
|
|
1016
1355
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
1017
1356
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
@@ -1038,7 +1377,7 @@ export declare const ObserveRequestSchema: z.ZodObject<{
|
|
|
1038
1377
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
1039
1378
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1040
1379
|
provider: z.ZodLiteral<"vertex">;
|
|
1041
|
-
auth: z.
|
|
1380
|
+
auth: z.ZodObject<{
|
|
1042
1381
|
type: z.ZodLiteral<"googleServiceAccount">;
|
|
1043
1382
|
credentials: z.ZodObject<{
|
|
1044
1383
|
type: z.ZodOptional<z.ZodLiteral<"service_account">>;
|
|
@@ -1056,7 +1395,7 @@ export declare const ObserveRequestSchema: z.ZodObject<{
|
|
|
1056
1395
|
scopes: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
1057
1396
|
projectId: z.ZodOptional<z.ZodString>;
|
|
1058
1397
|
universeDomain: z.ZodOptional<z.ZodString>;
|
|
1059
|
-
}, z.core.$strict
|
|
1398
|
+
}, z.core.$strict>;
|
|
1060
1399
|
providerOptions: z.ZodObject<{
|
|
1061
1400
|
vertex: z.ZodObject<{
|
|
1062
1401
|
project: z.ZodString;
|
|
@@ -1065,7 +1404,40 @@ export declare const ObserveRequestSchema: z.ZodObject<{
|
|
|
1065
1404
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1066
1405
|
}, z.core.$strict>;
|
|
1067
1406
|
}, z.core.$strict>;
|
|
1407
|
+
}, z.core.$strict>, z.ZodUnion<readonly [z.ZodObject<{
|
|
1408
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
1409
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1410
|
+
modelName: z.ZodString;
|
|
1411
|
+
provider: z.ZodLiteral<"azure">;
|
|
1412
|
+
providerOptions: z.ZodObject<{
|
|
1413
|
+
azure: z.ZodObject<{
|
|
1414
|
+
resourceName: z.ZodOptional<z.ZodString>;
|
|
1415
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
1416
|
+
apiVersion: z.ZodOptional<z.ZodString>;
|
|
1417
|
+
useDeploymentBasedUrls: z.ZodOptional<z.ZodBoolean>;
|
|
1418
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1419
|
+
}, z.core.$strict>;
|
|
1420
|
+
}, z.core.$strict>;
|
|
1421
|
+
auth: z.ZodObject<{
|
|
1422
|
+
type: z.ZodLiteral<"azureEntraId">;
|
|
1423
|
+
token: z.ZodString;
|
|
1424
|
+
}, z.core.$strict>;
|
|
1068
1425
|
}, z.core.$strict>, z.ZodObject<{
|
|
1426
|
+
modelName: z.ZodString;
|
|
1427
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1428
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
1429
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1430
|
+
provider: z.ZodLiteral<"azure">;
|
|
1431
|
+
providerOptions: z.ZodObject<{
|
|
1432
|
+
azure: z.ZodObject<{
|
|
1433
|
+
resourceName: z.ZodOptional<z.ZodString>;
|
|
1434
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
1435
|
+
apiVersion: z.ZodOptional<z.ZodString>;
|
|
1436
|
+
useDeploymentBasedUrls: z.ZodOptional<z.ZodBoolean>;
|
|
1437
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1438
|
+
}, z.core.$strict>;
|
|
1439
|
+
}, z.core.$strict>;
|
|
1440
|
+
}, z.core.$strict>]>, z.ZodObject<{
|
|
1069
1441
|
modelName: z.ZodString;
|
|
1070
1442
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
1071
1443
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
@@ -1123,7 +1495,7 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1123
1495
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
1124
1496
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1125
1497
|
provider: z.ZodLiteral<"vertex">;
|
|
1126
|
-
auth: z.
|
|
1498
|
+
auth: z.ZodObject<{
|
|
1127
1499
|
type: z.ZodLiteral<"googleServiceAccount">;
|
|
1128
1500
|
credentials: z.ZodObject<{
|
|
1129
1501
|
type: z.ZodOptional<z.ZodLiteral<"service_account">>;
|
|
@@ -1141,7 +1513,7 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1141
1513
|
scopes: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
1142
1514
|
projectId: z.ZodOptional<z.ZodString>;
|
|
1143
1515
|
universeDomain: z.ZodOptional<z.ZodString>;
|
|
1144
|
-
}, z.core.$strict
|
|
1516
|
+
}, z.core.$strict>;
|
|
1145
1517
|
providerOptions: z.ZodObject<{
|
|
1146
1518
|
vertex: z.ZodObject<{
|
|
1147
1519
|
project: z.ZodString;
|
|
@@ -1150,7 +1522,40 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1150
1522
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1151
1523
|
}, z.core.$strict>;
|
|
1152
1524
|
}, z.core.$strict>;
|
|
1525
|
+
}, z.core.$strict>, z.ZodUnion<readonly [z.ZodObject<{
|
|
1526
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
1527
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1528
|
+
modelName: z.ZodString;
|
|
1529
|
+
provider: z.ZodLiteral<"azure">;
|
|
1530
|
+
providerOptions: z.ZodObject<{
|
|
1531
|
+
azure: z.ZodObject<{
|
|
1532
|
+
resourceName: z.ZodOptional<z.ZodString>;
|
|
1533
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
1534
|
+
apiVersion: z.ZodOptional<z.ZodString>;
|
|
1535
|
+
useDeploymentBasedUrls: z.ZodOptional<z.ZodBoolean>;
|
|
1536
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1537
|
+
}, z.core.$strict>;
|
|
1538
|
+
}, z.core.$strict>;
|
|
1539
|
+
auth: z.ZodObject<{
|
|
1540
|
+
type: z.ZodLiteral<"azureEntraId">;
|
|
1541
|
+
token: z.ZodString;
|
|
1542
|
+
}, z.core.$strict>;
|
|
1153
1543
|
}, z.core.$strict>, z.ZodObject<{
|
|
1544
|
+
modelName: z.ZodString;
|
|
1545
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1546
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
1547
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1548
|
+
provider: z.ZodLiteral<"azure">;
|
|
1549
|
+
providerOptions: z.ZodObject<{
|
|
1550
|
+
azure: z.ZodObject<{
|
|
1551
|
+
resourceName: z.ZodOptional<z.ZodString>;
|
|
1552
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
1553
|
+
apiVersion: z.ZodOptional<z.ZodString>;
|
|
1554
|
+
useDeploymentBasedUrls: z.ZodOptional<z.ZodBoolean>;
|
|
1555
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1556
|
+
}, z.core.$strict>;
|
|
1557
|
+
}, z.core.$strict>;
|
|
1558
|
+
}, z.core.$strict>]>, z.ZodObject<{
|
|
1154
1559
|
modelName: z.ZodString;
|
|
1155
1560
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
1156
1561
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
@@ -1176,7 +1581,7 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1176
1581
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
1177
1582
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1178
1583
|
provider: z.ZodLiteral<"vertex">;
|
|
1179
|
-
auth: z.
|
|
1584
|
+
auth: z.ZodObject<{
|
|
1180
1585
|
type: z.ZodLiteral<"googleServiceAccount">;
|
|
1181
1586
|
credentials: z.ZodObject<{
|
|
1182
1587
|
type: z.ZodOptional<z.ZodLiteral<"service_account">>;
|
|
@@ -1194,7 +1599,7 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1194
1599
|
scopes: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
1195
1600
|
projectId: z.ZodOptional<z.ZodString>;
|
|
1196
1601
|
universeDomain: z.ZodOptional<z.ZodString>;
|
|
1197
|
-
}, z.core.$strict
|
|
1602
|
+
}, z.core.$strict>;
|
|
1198
1603
|
providerOptions: z.ZodObject<{
|
|
1199
1604
|
vertex: z.ZodObject<{
|
|
1200
1605
|
project: z.ZodString;
|
|
@@ -1203,7 +1608,40 @@ export declare const AgentConfigSchema: z.ZodObject<{
|
|
|
1203
1608
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1204
1609
|
}, z.core.$strict>;
|
|
1205
1610
|
}, z.core.$strict>;
|
|
1611
|
+
}, z.core.$strict>, z.ZodUnion<readonly [z.ZodObject<{
|
|
1612
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
1613
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1614
|
+
modelName: z.ZodString;
|
|
1615
|
+
provider: z.ZodLiteral<"azure">;
|
|
1616
|
+
providerOptions: z.ZodObject<{
|
|
1617
|
+
azure: z.ZodObject<{
|
|
1618
|
+
resourceName: z.ZodOptional<z.ZodString>;
|
|
1619
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
1620
|
+
apiVersion: z.ZodOptional<z.ZodString>;
|
|
1621
|
+
useDeploymentBasedUrls: z.ZodOptional<z.ZodBoolean>;
|
|
1622
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1623
|
+
}, z.core.$strict>;
|
|
1624
|
+
}, z.core.$strict>;
|
|
1625
|
+
auth: z.ZodObject<{
|
|
1626
|
+
type: z.ZodLiteral<"azureEntraId">;
|
|
1627
|
+
token: z.ZodString;
|
|
1628
|
+
}, z.core.$strict>;
|
|
1206
1629
|
}, z.core.$strict>, z.ZodObject<{
|
|
1630
|
+
modelName: z.ZodString;
|
|
1631
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1632
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
1633
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1634
|
+
provider: z.ZodLiteral<"azure">;
|
|
1635
|
+
providerOptions: z.ZodObject<{
|
|
1636
|
+
azure: z.ZodObject<{
|
|
1637
|
+
resourceName: z.ZodOptional<z.ZodString>;
|
|
1638
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
1639
|
+
apiVersion: z.ZodOptional<z.ZodString>;
|
|
1640
|
+
useDeploymentBasedUrls: z.ZodOptional<z.ZodBoolean>;
|
|
1641
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1642
|
+
}, z.core.$strict>;
|
|
1643
|
+
}, z.core.$strict>;
|
|
1644
|
+
}, z.core.$strict>]>, z.ZodObject<{
|
|
1207
1645
|
modelName: z.ZodString;
|
|
1208
1646
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
1209
1647
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
@@ -1287,7 +1725,7 @@ export declare const AgentExecuteRequestSchema: z.ZodObject<{
|
|
|
1287
1725
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
1288
1726
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1289
1727
|
provider: z.ZodLiteral<"vertex">;
|
|
1290
|
-
auth: z.
|
|
1728
|
+
auth: z.ZodObject<{
|
|
1291
1729
|
type: z.ZodLiteral<"googleServiceAccount">;
|
|
1292
1730
|
credentials: z.ZodObject<{
|
|
1293
1731
|
type: z.ZodOptional<z.ZodLiteral<"service_account">>;
|
|
@@ -1305,7 +1743,7 @@ export declare const AgentExecuteRequestSchema: z.ZodObject<{
|
|
|
1305
1743
|
scopes: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
1306
1744
|
projectId: z.ZodOptional<z.ZodString>;
|
|
1307
1745
|
universeDomain: z.ZodOptional<z.ZodString>;
|
|
1308
|
-
}, z.core.$strict
|
|
1746
|
+
}, z.core.$strict>;
|
|
1309
1747
|
providerOptions: z.ZodObject<{
|
|
1310
1748
|
vertex: z.ZodObject<{
|
|
1311
1749
|
project: z.ZodString;
|
|
@@ -1314,7 +1752,40 @@ export declare const AgentExecuteRequestSchema: z.ZodObject<{
|
|
|
1314
1752
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1315
1753
|
}, z.core.$strict>;
|
|
1316
1754
|
}, z.core.$strict>;
|
|
1755
|
+
}, z.core.$strict>, z.ZodUnion<readonly [z.ZodObject<{
|
|
1756
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
1757
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1758
|
+
modelName: z.ZodString;
|
|
1759
|
+
provider: z.ZodLiteral<"azure">;
|
|
1760
|
+
providerOptions: z.ZodObject<{
|
|
1761
|
+
azure: z.ZodObject<{
|
|
1762
|
+
resourceName: z.ZodOptional<z.ZodString>;
|
|
1763
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
1764
|
+
apiVersion: z.ZodOptional<z.ZodString>;
|
|
1765
|
+
useDeploymentBasedUrls: z.ZodOptional<z.ZodBoolean>;
|
|
1766
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1767
|
+
}, z.core.$strict>;
|
|
1768
|
+
}, z.core.$strict>;
|
|
1769
|
+
auth: z.ZodObject<{
|
|
1770
|
+
type: z.ZodLiteral<"azureEntraId">;
|
|
1771
|
+
token: z.ZodString;
|
|
1772
|
+
}, z.core.$strict>;
|
|
1317
1773
|
}, z.core.$strict>, z.ZodObject<{
|
|
1774
|
+
modelName: z.ZodString;
|
|
1775
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1776
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
1777
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1778
|
+
provider: z.ZodLiteral<"azure">;
|
|
1779
|
+
providerOptions: z.ZodObject<{
|
|
1780
|
+
azure: z.ZodObject<{
|
|
1781
|
+
resourceName: z.ZodOptional<z.ZodString>;
|
|
1782
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
1783
|
+
apiVersion: z.ZodOptional<z.ZodString>;
|
|
1784
|
+
useDeploymentBasedUrls: z.ZodOptional<z.ZodBoolean>;
|
|
1785
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1786
|
+
}, z.core.$strict>;
|
|
1787
|
+
}, z.core.$strict>;
|
|
1788
|
+
}, z.core.$strict>]>, z.ZodObject<{
|
|
1318
1789
|
modelName: z.ZodString;
|
|
1319
1790
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
1320
1791
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
@@ -1340,7 +1811,7 @@ export declare const AgentExecuteRequestSchema: z.ZodObject<{
|
|
|
1340
1811
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
1341
1812
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1342
1813
|
provider: z.ZodLiteral<"vertex">;
|
|
1343
|
-
auth: z.
|
|
1814
|
+
auth: z.ZodObject<{
|
|
1344
1815
|
type: z.ZodLiteral<"googleServiceAccount">;
|
|
1345
1816
|
credentials: z.ZodObject<{
|
|
1346
1817
|
type: z.ZodOptional<z.ZodLiteral<"service_account">>;
|
|
@@ -1358,7 +1829,7 @@ export declare const AgentExecuteRequestSchema: z.ZodObject<{
|
|
|
1358
1829
|
scopes: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
1359
1830
|
projectId: z.ZodOptional<z.ZodString>;
|
|
1360
1831
|
universeDomain: z.ZodOptional<z.ZodString>;
|
|
1361
|
-
}, z.core.$strict
|
|
1832
|
+
}, z.core.$strict>;
|
|
1362
1833
|
providerOptions: z.ZodObject<{
|
|
1363
1834
|
vertex: z.ZodObject<{
|
|
1364
1835
|
project: z.ZodString;
|
|
@@ -1367,7 +1838,40 @@ export declare const AgentExecuteRequestSchema: z.ZodObject<{
|
|
|
1367
1838
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1368
1839
|
}, z.core.$strict>;
|
|
1369
1840
|
}, z.core.$strict>;
|
|
1841
|
+
}, z.core.$strict>, z.ZodUnion<readonly [z.ZodObject<{
|
|
1842
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
1843
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1844
|
+
modelName: z.ZodString;
|
|
1845
|
+
provider: z.ZodLiteral<"azure">;
|
|
1846
|
+
providerOptions: z.ZodObject<{
|
|
1847
|
+
azure: z.ZodObject<{
|
|
1848
|
+
resourceName: z.ZodOptional<z.ZodString>;
|
|
1849
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
1850
|
+
apiVersion: z.ZodOptional<z.ZodString>;
|
|
1851
|
+
useDeploymentBasedUrls: z.ZodOptional<z.ZodBoolean>;
|
|
1852
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1853
|
+
}, z.core.$strict>;
|
|
1854
|
+
}, z.core.$strict>;
|
|
1855
|
+
auth: z.ZodObject<{
|
|
1856
|
+
type: z.ZodLiteral<"azureEntraId">;
|
|
1857
|
+
token: z.ZodString;
|
|
1858
|
+
}, z.core.$strict>;
|
|
1370
1859
|
}, z.core.$strict>, z.ZodObject<{
|
|
1860
|
+
modelName: z.ZodString;
|
|
1861
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1862
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
1863
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1864
|
+
provider: z.ZodLiteral<"azure">;
|
|
1865
|
+
providerOptions: z.ZodObject<{
|
|
1866
|
+
azure: z.ZodObject<{
|
|
1867
|
+
resourceName: z.ZodOptional<z.ZodString>;
|
|
1868
|
+
baseURL: z.ZodOptional<z.ZodString>;
|
|
1869
|
+
apiVersion: z.ZodOptional<z.ZodString>;
|
|
1870
|
+
useDeploymentBasedUrls: z.ZodOptional<z.ZodBoolean>;
|
|
1871
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1872
|
+
}, z.core.$strict>;
|
|
1873
|
+
}, z.core.$strict>;
|
|
1874
|
+
}, z.core.$strict>]>, z.ZodObject<{
|
|
1371
1875
|
modelName: z.ZodString;
|
|
1372
1876
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
1373
1877
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
@@ -1752,10 +2256,17 @@ export type Action = z.infer<typeof ActionSchema>;
|
|
|
1752
2256
|
export type ModelConfig = z.infer<typeof ModelConfigSchema>;
|
|
1753
2257
|
export type GenericModelConfigObject = z.infer<typeof GenericModelConfigObjectSchema>;
|
|
1754
2258
|
export type VertexModelConfigObject = z.infer<typeof VertexModelConfigObjectSchema>;
|
|
2259
|
+
export type AzureModelConfigObject = z.infer<typeof AzureModelConfigObjectSchema>;
|
|
2260
|
+
export type AzureEntraModelConfigObject = z.infer<typeof AzureEntraModelConfigObjectSchema>;
|
|
2261
|
+
export type AzureApiKeyModelConfigObject = z.infer<typeof AzureApiKeyModelConfigObjectSchema>;
|
|
1755
2262
|
export type GoogleServiceAccountCredentials = z.infer<typeof GoogleServiceAccountCredentialsSchema>;
|
|
1756
2263
|
export type GoogleServiceAccountAuth = z.infer<typeof GoogleServiceAccountAuthSchema>;
|
|
2264
|
+
export type AzureEntraIdAuth = z.infer<typeof AzureEntraIdAuthSchema>;
|
|
1757
2265
|
export type ModelAuth = z.infer<typeof ModelAuthSchema>;
|
|
1758
2266
|
export type VertexProviderOptions = z.infer<typeof VertexProviderOptionsSchema>;
|
|
2267
|
+
export type AzureProviderOptions = z.infer<typeof AzureProviderOptionsSchema>;
|
|
2268
|
+
export type VertexModelProviderOptions = z.infer<typeof VertexModelProviderOptionsSchema>;
|
|
2269
|
+
export type AzureModelProviderOptions = z.infer<typeof AzureModelProviderOptionsSchema>;
|
|
1759
2270
|
export type ModelProviderOptions = z.infer<typeof ModelProviderOptionsSchema>;
|
|
1760
2271
|
export type BrowserConfig = z.infer<typeof BrowserConfigSchema>;
|
|
1761
2272
|
export type SessionIdParams = z.infer<typeof SessionIdParamsSchema>;
|