llm-zoo 1.0.0 → 1.0.2
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 +9 -10
- package/dist/{index-CQCjbg9k.d.cts → ModelConfig-BlHqDZD6.d.cts} +1 -71
- package/dist/{index-CQCjbg9k.d.ts → ModelConfig-BlHqDZD6.d.ts} +1 -71
- package/dist/index.d.cts +3 -2
- package/dist/index.d.ts +3 -2
- package/dist/providers/index.d.cts +73 -1
- package/dist/providers/index.d.ts +73 -1
- package/dist/schemas.cjs +35 -21
- package/dist/schemas.cjs.map +1 -1
- package/dist/schemas.d.cts +38 -276
- package/dist/schemas.d.ts +38 -276
- package/dist/schemas.js +35 -21
- package/dist/schemas.js.map +1 -1
- package/package.json +4 -4
package/dist/schemas.d.cts
CHANGED
|
@@ -1,12 +1,24 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
+
import { R as ReasoningEffort, M as ModelProvider } from './ModelConfig-BlHqDZD6.cjs';
|
|
2
3
|
|
|
3
4
|
/**
|
|
4
|
-
* Zod schemas for
|
|
5
|
-
*
|
|
5
|
+
* Zod v4 validation schemas for llm-zoo types.
|
|
6
|
+
* Requires zod ^4.0.0 as peer dependency.
|
|
7
|
+
*
|
|
8
|
+
* @example
|
|
9
|
+
* ```typescript
|
|
10
|
+
* import { ModelConfigSchema } from 'llm-zoo/schemas';
|
|
11
|
+
*
|
|
12
|
+
* const result = ModelConfigSchema.safeParse(myConfig);
|
|
13
|
+
* if (!result.success) {
|
|
14
|
+
* console.error(result.error);
|
|
15
|
+
* }
|
|
16
|
+
* ```
|
|
6
17
|
*/
|
|
7
18
|
|
|
8
|
-
declare const ReasoningEffortSchema: z.ZodEnum<
|
|
9
|
-
declare const ModelProviderSchema: z.ZodEnum<
|
|
19
|
+
declare const ReasoningEffortSchema: z.ZodEnum<typeof ReasoningEffort>;
|
|
20
|
+
declare const ModelProviderSchema: z.ZodEnum<typeof ModelProvider>;
|
|
21
|
+
/** Feature flags defining model's supported capabilities and behaviors. */
|
|
10
22
|
declare const ModelCapabilitiesSchema: z.ZodObject<{
|
|
11
23
|
supportsFunctionCalling: z.ZodBoolean;
|
|
12
24
|
supportsNativeMCPServer: z.ZodBoolean;
|
|
@@ -17,61 +29,22 @@ declare const ModelCapabilitiesSchema: z.ZodObject<{
|
|
|
17
29
|
cacheDiscountFactor: z.ZodNumber;
|
|
18
30
|
supportsReasoning: z.ZodBoolean;
|
|
19
31
|
supportsInterleavedThinking: z.ZodBoolean;
|
|
20
|
-
|
|
21
|
-
reasoningEffort: z.ZodEnum<["xhigh", "high", "medium", "low", "none"]>;
|
|
32
|
+
reasoningEffort: z.ZodEnum<typeof ReasoningEffort>;
|
|
22
33
|
supportsVision: z.ZodBoolean;
|
|
23
34
|
supportsNativePdf: z.ZodBoolean;
|
|
24
|
-
supportsNativeAudio: z.ZodBoolean;
|
|
25
35
|
supportsAssistantPrefill: z.ZodBoolean;
|
|
26
36
|
supportsPredictiveOutput: z.ZodBoolean;
|
|
27
37
|
supportsTokenCounting: z.ZodBoolean;
|
|
28
38
|
supportsSystemPrompt: z.ZodBoolean;
|
|
29
39
|
supportsIntermDevMsgs: z.ZodBoolean;
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
supportsNativeCodeExecution: boolean;
|
|
35
|
-
supportsPromptCaching: boolean;
|
|
36
|
-
supportsAutoPromptCaching: boolean;
|
|
37
|
-
cacheDiscountFactor: number;
|
|
38
|
-
supportsReasoning: boolean;
|
|
39
|
-
supportsInterleavedThinking: boolean;
|
|
40
|
-
supportsReasoningEffort: boolean;
|
|
41
|
-
reasoningEffort: "xhigh" | "high" | "medium" | "low" | "none";
|
|
42
|
-
supportsVision: boolean;
|
|
43
|
-
supportsNativePdf: boolean;
|
|
44
|
-
supportsNativeAudio: boolean;
|
|
45
|
-
supportsAssistantPrefill: boolean;
|
|
46
|
-
supportsPredictiveOutput: boolean;
|
|
47
|
-
supportsTokenCounting: boolean;
|
|
48
|
-
supportsSystemPrompt: boolean;
|
|
49
|
-
supportsIntermDevMsgs: boolean;
|
|
50
|
-
}, {
|
|
51
|
-
supportsFunctionCalling: boolean;
|
|
52
|
-
supportsNativeMCPServer: boolean;
|
|
53
|
-
supportsNativeWebSearch: boolean;
|
|
54
|
-
supportsNativeCodeExecution: boolean;
|
|
55
|
-
supportsPromptCaching: boolean;
|
|
56
|
-
supportsAutoPromptCaching: boolean;
|
|
57
|
-
cacheDiscountFactor: number;
|
|
58
|
-
supportsReasoning: boolean;
|
|
59
|
-
supportsInterleavedThinking: boolean;
|
|
60
|
-
supportsReasoningEffort: boolean;
|
|
61
|
-
reasoningEffort: "xhigh" | "high" | "medium" | "low" | "none";
|
|
62
|
-
supportsVision: boolean;
|
|
63
|
-
supportsNativePdf: boolean;
|
|
64
|
-
supportsNativeAudio: boolean;
|
|
65
|
-
supportsAssistantPrefill: boolean;
|
|
66
|
-
supportsPredictiveOutput: boolean;
|
|
67
|
-
supportsTokenCounting: boolean;
|
|
68
|
-
supportsSystemPrompt: boolean;
|
|
69
|
-
supportsIntermDevMsgs: boolean;
|
|
70
|
-
}>;
|
|
40
|
+
supportsReasoningEffort: z.ZodBoolean;
|
|
41
|
+
supportsNativeAudio: z.ZodBoolean;
|
|
42
|
+
}, z.core.$strip>;
|
|
43
|
+
/** Complete configuration for a language model instance. */
|
|
71
44
|
declare const ModelConfigSchema: z.ZodObject<{
|
|
72
45
|
name: z.ZodString;
|
|
73
46
|
fullName: z.ZodString;
|
|
74
|
-
provider: z.ZodEnum<
|
|
47
|
+
provider: z.ZodEnum<typeof ModelProvider>;
|
|
75
48
|
maxOutputTokens: z.ZodNumber;
|
|
76
49
|
inputPrice: z.ZodNumber;
|
|
77
50
|
outputPrice: z.ZodNumber;
|
|
@@ -86,132 +59,27 @@ declare const ModelConfigSchema: z.ZodObject<{
|
|
|
86
59
|
cacheDiscountFactor: z.ZodNumber;
|
|
87
60
|
supportsReasoning: z.ZodBoolean;
|
|
88
61
|
supportsInterleavedThinking: z.ZodBoolean;
|
|
89
|
-
|
|
90
|
-
reasoningEffort: z.ZodEnum<["xhigh", "high", "medium", "low", "none"]>;
|
|
62
|
+
reasoningEffort: z.ZodEnum<typeof ReasoningEffort>;
|
|
91
63
|
supportsVision: z.ZodBoolean;
|
|
92
64
|
supportsNativePdf: z.ZodBoolean;
|
|
93
|
-
supportsNativeAudio: z.ZodBoolean;
|
|
94
65
|
supportsAssistantPrefill: z.ZodBoolean;
|
|
95
66
|
supportsPredictiveOutput: z.ZodBoolean;
|
|
96
67
|
supportsTokenCounting: z.ZodBoolean;
|
|
97
68
|
supportsSystemPrompt: z.ZodBoolean;
|
|
98
69
|
supportsIntermDevMsgs: z.ZodBoolean;
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
supportsNativeWebSearch: boolean;
|
|
103
|
-
supportsNativeCodeExecution: boolean;
|
|
104
|
-
supportsPromptCaching: boolean;
|
|
105
|
-
supportsAutoPromptCaching: boolean;
|
|
106
|
-
cacheDiscountFactor: number;
|
|
107
|
-
supportsReasoning: boolean;
|
|
108
|
-
supportsInterleavedThinking: boolean;
|
|
109
|
-
supportsReasoningEffort: boolean;
|
|
110
|
-
reasoningEffort: "xhigh" | "high" | "medium" | "low" | "none";
|
|
111
|
-
supportsVision: boolean;
|
|
112
|
-
supportsNativePdf: boolean;
|
|
113
|
-
supportsNativeAudio: boolean;
|
|
114
|
-
supportsAssistantPrefill: boolean;
|
|
115
|
-
supportsPredictiveOutput: boolean;
|
|
116
|
-
supportsTokenCounting: boolean;
|
|
117
|
-
supportsSystemPrompt: boolean;
|
|
118
|
-
supportsIntermDevMsgs: boolean;
|
|
119
|
-
}, {
|
|
120
|
-
supportsFunctionCalling: boolean;
|
|
121
|
-
supportsNativeMCPServer: boolean;
|
|
122
|
-
supportsNativeWebSearch: boolean;
|
|
123
|
-
supportsNativeCodeExecution: boolean;
|
|
124
|
-
supportsPromptCaching: boolean;
|
|
125
|
-
supportsAutoPromptCaching: boolean;
|
|
126
|
-
cacheDiscountFactor: number;
|
|
127
|
-
supportsReasoning: boolean;
|
|
128
|
-
supportsInterleavedThinking: boolean;
|
|
129
|
-
supportsReasoningEffort: boolean;
|
|
130
|
-
reasoningEffort: "xhigh" | "high" | "medium" | "low" | "none";
|
|
131
|
-
supportsVision: boolean;
|
|
132
|
-
supportsNativePdf: boolean;
|
|
133
|
-
supportsNativeAudio: boolean;
|
|
134
|
-
supportsAssistantPrefill: boolean;
|
|
135
|
-
supportsPredictiveOutput: boolean;
|
|
136
|
-
supportsTokenCounting: boolean;
|
|
137
|
-
supportsSystemPrompt: boolean;
|
|
138
|
-
supportsIntermDevMsgs: boolean;
|
|
139
|
-
}>;
|
|
70
|
+
supportsReasoningEffort: z.ZodBoolean;
|
|
71
|
+
supportsNativeAudio: z.ZodBoolean;
|
|
72
|
+
}, z.core.$strip>;
|
|
140
73
|
openRouterOnly: z.ZodBoolean;
|
|
141
74
|
openrouterFullName: z.ZodOptional<z.ZodString>;
|
|
142
75
|
baseUrl: z.ZodOptional<z.ZodString>;
|
|
143
76
|
requiresResponsesAPI: z.ZodOptional<z.ZodBoolean>;
|
|
144
|
-
},
|
|
145
|
-
|
|
146
|
-
fullName: string;
|
|
147
|
-
provider: "anthropic" | "openai" | "google" | "deepseek" | "xai" | "moonshot" | "dashscope" | "copilot" | "others";
|
|
148
|
-
maxOutputTokens: number;
|
|
149
|
-
inputPrice: number;
|
|
150
|
-
outputPrice: number;
|
|
151
|
-
contextWindow: number;
|
|
152
|
-
capabilities: {
|
|
153
|
-
supportsFunctionCalling: boolean;
|
|
154
|
-
supportsNativeMCPServer: boolean;
|
|
155
|
-
supportsNativeWebSearch: boolean;
|
|
156
|
-
supportsNativeCodeExecution: boolean;
|
|
157
|
-
supportsPromptCaching: boolean;
|
|
158
|
-
supportsAutoPromptCaching: boolean;
|
|
159
|
-
cacheDiscountFactor: number;
|
|
160
|
-
supportsReasoning: boolean;
|
|
161
|
-
supportsInterleavedThinking: boolean;
|
|
162
|
-
supportsReasoningEffort: boolean;
|
|
163
|
-
reasoningEffort: "xhigh" | "high" | "medium" | "low" | "none";
|
|
164
|
-
supportsVision: boolean;
|
|
165
|
-
supportsNativePdf: boolean;
|
|
166
|
-
supportsNativeAudio: boolean;
|
|
167
|
-
supportsAssistantPrefill: boolean;
|
|
168
|
-
supportsPredictiveOutput: boolean;
|
|
169
|
-
supportsTokenCounting: boolean;
|
|
170
|
-
supportsSystemPrompt: boolean;
|
|
171
|
-
supportsIntermDevMsgs: boolean;
|
|
172
|
-
};
|
|
173
|
-
openRouterOnly: boolean;
|
|
174
|
-
openrouterFullName?: string | undefined;
|
|
175
|
-
baseUrl?: string | undefined;
|
|
176
|
-
requiresResponsesAPI?: boolean | undefined;
|
|
177
|
-
}, {
|
|
178
|
-
name: string;
|
|
179
|
-
fullName: string;
|
|
180
|
-
provider: "anthropic" | "openai" | "google" | "deepseek" | "xai" | "moonshot" | "dashscope" | "copilot" | "others";
|
|
181
|
-
maxOutputTokens: number;
|
|
182
|
-
inputPrice: number;
|
|
183
|
-
outputPrice: number;
|
|
184
|
-
contextWindow: number;
|
|
185
|
-
capabilities: {
|
|
186
|
-
supportsFunctionCalling: boolean;
|
|
187
|
-
supportsNativeMCPServer: boolean;
|
|
188
|
-
supportsNativeWebSearch: boolean;
|
|
189
|
-
supportsNativeCodeExecution: boolean;
|
|
190
|
-
supportsPromptCaching: boolean;
|
|
191
|
-
supportsAutoPromptCaching: boolean;
|
|
192
|
-
cacheDiscountFactor: number;
|
|
193
|
-
supportsReasoning: boolean;
|
|
194
|
-
supportsInterleavedThinking: boolean;
|
|
195
|
-
supportsReasoningEffort: boolean;
|
|
196
|
-
reasoningEffort: "xhigh" | "high" | "medium" | "low" | "none";
|
|
197
|
-
supportsVision: boolean;
|
|
198
|
-
supportsNativePdf: boolean;
|
|
199
|
-
supportsNativeAudio: boolean;
|
|
200
|
-
supportsAssistantPrefill: boolean;
|
|
201
|
-
supportsPredictiveOutput: boolean;
|
|
202
|
-
supportsTokenCounting: boolean;
|
|
203
|
-
supportsSystemPrompt: boolean;
|
|
204
|
-
supportsIntermDevMsgs: boolean;
|
|
205
|
-
};
|
|
206
|
-
openRouterOnly: boolean;
|
|
207
|
-
openrouterFullName?: string | undefined;
|
|
208
|
-
baseUrl?: string | undefined;
|
|
209
|
-
requiresResponsesAPI?: boolean | undefined;
|
|
210
|
-
}>;
|
|
77
|
+
}, z.core.$strip>;
|
|
78
|
+
/** Registry of all model configurations. */
|
|
211
79
|
declare const ModelRegistrySchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
212
80
|
name: z.ZodString;
|
|
213
81
|
fullName: z.ZodString;
|
|
214
|
-
provider: z.ZodEnum<
|
|
82
|
+
provider: z.ZodEnum<typeof ModelProvider>;
|
|
215
83
|
maxOutputTokens: z.ZodNumber;
|
|
216
84
|
inputPrice: z.ZodNumber;
|
|
217
85
|
outputPrice: z.ZodNumber;
|
|
@@ -226,130 +94,24 @@ declare const ModelRegistrySchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
226
94
|
cacheDiscountFactor: z.ZodNumber;
|
|
227
95
|
supportsReasoning: z.ZodBoolean;
|
|
228
96
|
supportsInterleavedThinking: z.ZodBoolean;
|
|
229
|
-
|
|
230
|
-
reasoningEffort: z.ZodEnum<["xhigh", "high", "medium", "low", "none"]>;
|
|
97
|
+
reasoningEffort: z.ZodEnum<typeof ReasoningEffort>;
|
|
231
98
|
supportsVision: z.ZodBoolean;
|
|
232
99
|
supportsNativePdf: z.ZodBoolean;
|
|
233
|
-
supportsNativeAudio: z.ZodBoolean;
|
|
234
100
|
supportsAssistantPrefill: z.ZodBoolean;
|
|
235
101
|
supportsPredictiveOutput: z.ZodBoolean;
|
|
236
102
|
supportsTokenCounting: z.ZodBoolean;
|
|
237
103
|
supportsSystemPrompt: z.ZodBoolean;
|
|
238
104
|
supportsIntermDevMsgs: z.ZodBoolean;
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
supportsNativeWebSearch: boolean;
|
|
243
|
-
supportsNativeCodeExecution: boolean;
|
|
244
|
-
supportsPromptCaching: boolean;
|
|
245
|
-
supportsAutoPromptCaching: boolean;
|
|
246
|
-
cacheDiscountFactor: number;
|
|
247
|
-
supportsReasoning: boolean;
|
|
248
|
-
supportsInterleavedThinking: boolean;
|
|
249
|
-
supportsReasoningEffort: boolean;
|
|
250
|
-
reasoningEffort: "xhigh" | "high" | "medium" | "low" | "none";
|
|
251
|
-
supportsVision: boolean;
|
|
252
|
-
supportsNativePdf: boolean;
|
|
253
|
-
supportsNativeAudio: boolean;
|
|
254
|
-
supportsAssistantPrefill: boolean;
|
|
255
|
-
supportsPredictiveOutput: boolean;
|
|
256
|
-
supportsTokenCounting: boolean;
|
|
257
|
-
supportsSystemPrompt: boolean;
|
|
258
|
-
supportsIntermDevMsgs: boolean;
|
|
259
|
-
}, {
|
|
260
|
-
supportsFunctionCalling: boolean;
|
|
261
|
-
supportsNativeMCPServer: boolean;
|
|
262
|
-
supportsNativeWebSearch: boolean;
|
|
263
|
-
supportsNativeCodeExecution: boolean;
|
|
264
|
-
supportsPromptCaching: boolean;
|
|
265
|
-
supportsAutoPromptCaching: boolean;
|
|
266
|
-
cacheDiscountFactor: number;
|
|
267
|
-
supportsReasoning: boolean;
|
|
268
|
-
supportsInterleavedThinking: boolean;
|
|
269
|
-
supportsReasoningEffort: boolean;
|
|
270
|
-
reasoningEffort: "xhigh" | "high" | "medium" | "low" | "none";
|
|
271
|
-
supportsVision: boolean;
|
|
272
|
-
supportsNativePdf: boolean;
|
|
273
|
-
supportsNativeAudio: boolean;
|
|
274
|
-
supportsAssistantPrefill: boolean;
|
|
275
|
-
supportsPredictiveOutput: boolean;
|
|
276
|
-
supportsTokenCounting: boolean;
|
|
277
|
-
supportsSystemPrompt: boolean;
|
|
278
|
-
supportsIntermDevMsgs: boolean;
|
|
279
|
-
}>;
|
|
105
|
+
supportsReasoningEffort: z.ZodBoolean;
|
|
106
|
+
supportsNativeAudio: z.ZodBoolean;
|
|
107
|
+
}, z.core.$strip>;
|
|
280
108
|
openRouterOnly: z.ZodBoolean;
|
|
281
109
|
openrouterFullName: z.ZodOptional<z.ZodString>;
|
|
282
110
|
baseUrl: z.ZodOptional<z.ZodString>;
|
|
283
111
|
requiresResponsesAPI: z.ZodOptional<z.ZodBoolean>;
|
|
284
|
-
},
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
maxOutputTokens: number;
|
|
289
|
-
inputPrice: number;
|
|
290
|
-
outputPrice: number;
|
|
291
|
-
contextWindow: number;
|
|
292
|
-
capabilities: {
|
|
293
|
-
supportsFunctionCalling: boolean;
|
|
294
|
-
supportsNativeMCPServer: boolean;
|
|
295
|
-
supportsNativeWebSearch: boolean;
|
|
296
|
-
supportsNativeCodeExecution: boolean;
|
|
297
|
-
supportsPromptCaching: boolean;
|
|
298
|
-
supportsAutoPromptCaching: boolean;
|
|
299
|
-
cacheDiscountFactor: number;
|
|
300
|
-
supportsReasoning: boolean;
|
|
301
|
-
supportsInterleavedThinking: boolean;
|
|
302
|
-
supportsReasoningEffort: boolean;
|
|
303
|
-
reasoningEffort: "xhigh" | "high" | "medium" | "low" | "none";
|
|
304
|
-
supportsVision: boolean;
|
|
305
|
-
supportsNativePdf: boolean;
|
|
306
|
-
supportsNativeAudio: boolean;
|
|
307
|
-
supportsAssistantPrefill: boolean;
|
|
308
|
-
supportsPredictiveOutput: boolean;
|
|
309
|
-
supportsTokenCounting: boolean;
|
|
310
|
-
supportsSystemPrompt: boolean;
|
|
311
|
-
supportsIntermDevMsgs: boolean;
|
|
312
|
-
};
|
|
313
|
-
openRouterOnly: boolean;
|
|
314
|
-
openrouterFullName?: string | undefined;
|
|
315
|
-
baseUrl?: string | undefined;
|
|
316
|
-
requiresResponsesAPI?: boolean | undefined;
|
|
317
|
-
}, {
|
|
318
|
-
name: string;
|
|
319
|
-
fullName: string;
|
|
320
|
-
provider: "anthropic" | "openai" | "google" | "deepseek" | "xai" | "moonshot" | "dashscope" | "copilot" | "others";
|
|
321
|
-
maxOutputTokens: number;
|
|
322
|
-
inputPrice: number;
|
|
323
|
-
outputPrice: number;
|
|
324
|
-
contextWindow: number;
|
|
325
|
-
capabilities: {
|
|
326
|
-
supportsFunctionCalling: boolean;
|
|
327
|
-
supportsNativeMCPServer: boolean;
|
|
328
|
-
supportsNativeWebSearch: boolean;
|
|
329
|
-
supportsNativeCodeExecution: boolean;
|
|
330
|
-
supportsPromptCaching: boolean;
|
|
331
|
-
supportsAutoPromptCaching: boolean;
|
|
332
|
-
cacheDiscountFactor: number;
|
|
333
|
-
supportsReasoning: boolean;
|
|
334
|
-
supportsInterleavedThinking: boolean;
|
|
335
|
-
supportsReasoningEffort: boolean;
|
|
336
|
-
reasoningEffort: "xhigh" | "high" | "medium" | "low" | "none";
|
|
337
|
-
supportsVision: boolean;
|
|
338
|
-
supportsNativePdf: boolean;
|
|
339
|
-
supportsNativeAudio: boolean;
|
|
340
|
-
supportsAssistantPrefill: boolean;
|
|
341
|
-
supportsPredictiveOutput: boolean;
|
|
342
|
-
supportsTokenCounting: boolean;
|
|
343
|
-
supportsSystemPrompt: boolean;
|
|
344
|
-
supportsIntermDevMsgs: boolean;
|
|
345
|
-
};
|
|
346
|
-
openRouterOnly: boolean;
|
|
347
|
-
openrouterFullName?: string | undefined;
|
|
348
|
-
baseUrl?: string | undefined;
|
|
349
|
-
requiresResponsesAPI?: boolean | undefined;
|
|
350
|
-
}>>;
|
|
351
|
-
type ModelCapabilitiesZ = z.infer<typeof ModelCapabilitiesSchema>;
|
|
352
|
-
type ModelConfigZ = z.infer<typeof ModelConfigSchema>;
|
|
353
|
-
type ModelRegistryZ = z.infer<typeof ModelRegistrySchema>;
|
|
112
|
+
}, z.core.$strip>>;
|
|
113
|
+
type ModelCapabilitiesSchemaType = z.infer<typeof ModelCapabilitiesSchema>;
|
|
114
|
+
type ModelConfigSchemaType = z.infer<typeof ModelConfigSchema>;
|
|
115
|
+
type ModelRegistrySchemaType = z.infer<typeof ModelRegistrySchema>;
|
|
354
116
|
|
|
355
|
-
export { ModelCapabilitiesSchema, type
|
|
117
|
+
export { ModelCapabilitiesSchema, type ModelCapabilitiesSchemaType, ModelConfigSchema, type ModelConfigSchemaType, ModelProviderSchema, ModelRegistrySchema, type ModelRegistrySchemaType, ReasoningEffortSchema };
|