@babyclaw/gateway 0.0.0 → 0.0.1
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/dist/index.js +54 -7
- package/dist/index.js.map +1 -1
- package/dist/main.js.map +1 -1
- package/package.json +6 -1
package/dist/index.js
CHANGED
|
@@ -280,37 +280,84 @@ var SUPPORTED_PROVIDERS = [
|
|
|
280
280
|
{
|
|
281
281
|
id: "anthropic",
|
|
282
282
|
displayName: "Anthropic",
|
|
283
|
-
exampleModels: [
|
|
283
|
+
exampleModels: [
|
|
284
|
+
"claude-sonnet-4-20250514",
|
|
285
|
+
"claude-opus-4-6",
|
|
286
|
+
"claude-haiku-4-5",
|
|
287
|
+
"claude-4.5-sonnet",
|
|
288
|
+
"claude-3.5-sonnet-20241022",
|
|
289
|
+
"claude-3.5-haiku-20241022"
|
|
290
|
+
]
|
|
284
291
|
},
|
|
285
292
|
{
|
|
286
293
|
id: "openai",
|
|
287
294
|
displayName: "OpenAI",
|
|
288
|
-
exampleModels: [
|
|
295
|
+
exampleModels: [
|
|
296
|
+
"gpt-4o",
|
|
297
|
+
"gpt-4o-mini",
|
|
298
|
+
"gpt-4.1",
|
|
299
|
+
"gpt-4.1-mini",
|
|
300
|
+
"gpt-4.1-nano",
|
|
301
|
+
"o3",
|
|
302
|
+
"o3-mini",
|
|
303
|
+
"o4-mini"
|
|
304
|
+
]
|
|
289
305
|
},
|
|
290
306
|
{
|
|
291
307
|
id: "google",
|
|
292
308
|
displayName: "Google Generative AI",
|
|
293
|
-
exampleModels: [
|
|
309
|
+
exampleModels: [
|
|
310
|
+
"gemini-2.5-pro",
|
|
311
|
+
"gemini-2.5-flash",
|
|
312
|
+
"gemini-2.0-flash",
|
|
313
|
+
"gemini-2.0-flash-lite"
|
|
314
|
+
]
|
|
294
315
|
},
|
|
295
316
|
{
|
|
296
317
|
id: "mistral",
|
|
297
318
|
displayName: "Mistral",
|
|
298
|
-
exampleModels: [
|
|
319
|
+
exampleModels: [
|
|
320
|
+
"mistral-large-latest",
|
|
321
|
+
"mistral-medium-latest",
|
|
322
|
+
"mistral-small-latest",
|
|
323
|
+
"codestral-latest",
|
|
324
|
+
"pixtral-large-latest"
|
|
325
|
+
]
|
|
299
326
|
},
|
|
300
327
|
{
|
|
301
328
|
id: "xai",
|
|
302
329
|
displayName: "xAI",
|
|
303
|
-
exampleModels: ["grok-3", "grok-3-mini"]
|
|
330
|
+
exampleModels: ["grok-3", "grok-3-fast", "grok-3-mini", "grok-3-mini-fast"]
|
|
304
331
|
},
|
|
305
332
|
{
|
|
306
333
|
id: "openrouter",
|
|
307
334
|
displayName: "OpenRouter",
|
|
308
|
-
exampleModels: [
|
|
335
|
+
exampleModels: [
|
|
336
|
+
"anthropic/claude-sonnet-4",
|
|
337
|
+
"anthropic/claude-opus-4",
|
|
338
|
+
"anthropic/claude-4.5-sonnet",
|
|
339
|
+
"openai/gpt-4o",
|
|
340
|
+
"openai/gpt-4.1",
|
|
341
|
+
"openai/o3",
|
|
342
|
+
"openai/o4-mini",
|
|
343
|
+
"google/gemini-2.5-pro",
|
|
344
|
+
"google/gemini-2.5-flash",
|
|
345
|
+
"deepseek/deepseek-r1",
|
|
346
|
+
"deepseek/deepseek-chat-v3",
|
|
347
|
+
"meta-llama/llama-4-maverick",
|
|
348
|
+
"meta-llama/llama-4-scout"
|
|
349
|
+
]
|
|
309
350
|
},
|
|
310
351
|
{
|
|
311
352
|
id: "gateway",
|
|
312
353
|
displayName: "Vercel AI Gateway",
|
|
313
|
-
exampleModels: [
|
|
354
|
+
exampleModels: [
|
|
355
|
+
"anthropic/claude-sonnet-4-20250514",
|
|
356
|
+
"anthropic/claude-opus-4-6",
|
|
357
|
+
"openai/gpt-4o",
|
|
358
|
+
"openai/gpt-4.1",
|
|
359
|
+
"google/gemini-2.5-pro"
|
|
360
|
+
]
|
|
314
361
|
}
|
|
315
362
|
];
|
|
316
363
|
var PROVIDER_FACTORY_MAP = {
|