@agi-cli/sdk 0.1.169 → 0.1.170
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/package.json +1 -1
- package/src/auth/src/copilot-oauth.ts +190 -0
- package/src/auth/src/index.ts +9 -0
- package/src/core/src/providers/resolver.ts +11 -0
- package/src/core/src/tools/builtin/patch.txt +6 -0
- package/src/index.ts +15 -0
- package/src/providers/src/catalog-manual.ts +0 -1
- package/src/providers/src/catalog.ts +1417 -109
- package/src/providers/src/copilot-client.ts +40 -0
- package/src/providers/src/env.ts +1 -0
- package/src/providers/src/index.ts +2 -0
- package/src/providers/src/openai-oauth-client.ts +15 -122
- package/src/providers/src/pricing.ts +1 -0
- package/src/providers/src/setu-client.ts +1 -1
- package/src/providers/src/utils.ts +3 -0
- package/src/types/src/index.ts +1 -0
- package/src/types/src/provider.ts +1 -0
|
@@ -2215,6 +2215,30 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
2215
2215
|
openrouter: {
|
|
2216
2216
|
id: 'openrouter',
|
|
2217
2217
|
models: [
|
|
2218
|
+
{
|
|
2219
|
+
id: 'allenai/molmo-2-8b:free',
|
|
2220
|
+
label: 'Molmo2 8B (free)',
|
|
2221
|
+
modalities: {
|
|
2222
|
+
input: ['text', 'image', 'video'],
|
|
2223
|
+
output: ['text'],
|
|
2224
|
+
},
|
|
2225
|
+
toolCall: true,
|
|
2226
|
+
reasoningText: true,
|
|
2227
|
+
attachment: false,
|
|
2228
|
+
temperature: true,
|
|
2229
|
+
knowledge: '2025-06',
|
|
2230
|
+
releaseDate: '2026-01-09',
|
|
2231
|
+
lastUpdated: '2026-01-31',
|
|
2232
|
+
openWeights: true,
|
|
2233
|
+
cost: {
|
|
2234
|
+
input: 0,
|
|
2235
|
+
output: 0,
|
|
2236
|
+
},
|
|
2237
|
+
limit: {
|
|
2238
|
+
context: 36864,
|
|
2239
|
+
output: 36864,
|
|
2240
|
+
},
|
|
2241
|
+
},
|
|
2218
2242
|
{
|
|
2219
2243
|
id: 'anthropic/claude-3.5-haiku',
|
|
2220
2244
|
label: 'Claude Haiku 3.5',
|
|
@@ -2423,6 +2447,198 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
2423
2447
|
output: 64000,
|
|
2424
2448
|
},
|
|
2425
2449
|
},
|
|
2450
|
+
{
|
|
2451
|
+
id: 'arcee-ai/trinity-large-preview:free',
|
|
2452
|
+
label: 'Trinity Large Preview',
|
|
2453
|
+
modalities: {
|
|
2454
|
+
input: ['text'],
|
|
2455
|
+
output: ['text'],
|
|
2456
|
+
},
|
|
2457
|
+
toolCall: true,
|
|
2458
|
+
reasoningText: false,
|
|
2459
|
+
attachment: false,
|
|
2460
|
+
temperature: true,
|
|
2461
|
+
knowledge: '2025-06',
|
|
2462
|
+
releaseDate: '2026-01-28',
|
|
2463
|
+
lastUpdated: '2026-01-28',
|
|
2464
|
+
openWeights: true,
|
|
2465
|
+
cost: {
|
|
2466
|
+
input: 0,
|
|
2467
|
+
output: 0,
|
|
2468
|
+
},
|
|
2469
|
+
limit: {
|
|
2470
|
+
context: 131072,
|
|
2471
|
+
output: 131072,
|
|
2472
|
+
},
|
|
2473
|
+
},
|
|
2474
|
+
{
|
|
2475
|
+
id: 'arcee-ai/trinity-mini:free',
|
|
2476
|
+
label: 'Trinity Mini',
|
|
2477
|
+
modalities: {
|
|
2478
|
+
input: ['text'],
|
|
2479
|
+
output: ['text'],
|
|
2480
|
+
},
|
|
2481
|
+
toolCall: true,
|
|
2482
|
+
reasoningText: false,
|
|
2483
|
+
attachment: false,
|
|
2484
|
+
temperature: true,
|
|
2485
|
+
knowledge: '2025-06',
|
|
2486
|
+
releaseDate: '2026-01-28',
|
|
2487
|
+
lastUpdated: '2026-01-28',
|
|
2488
|
+
openWeights: true,
|
|
2489
|
+
cost: {
|
|
2490
|
+
input: 0,
|
|
2491
|
+
output: 0,
|
|
2492
|
+
},
|
|
2493
|
+
limit: {
|
|
2494
|
+
context: 131072,
|
|
2495
|
+
output: 131072,
|
|
2496
|
+
},
|
|
2497
|
+
},
|
|
2498
|
+
{
|
|
2499
|
+
id: 'black-forest-labs/flux.2-flex',
|
|
2500
|
+
label: 'FLUX.2 Flex',
|
|
2501
|
+
modalities: {
|
|
2502
|
+
input: ['image', 'text'],
|
|
2503
|
+
output: ['image', 'text'],
|
|
2504
|
+
},
|
|
2505
|
+
toolCall: false,
|
|
2506
|
+
reasoningText: false,
|
|
2507
|
+
attachment: false,
|
|
2508
|
+
temperature: true,
|
|
2509
|
+
knowledge: '2025-06',
|
|
2510
|
+
releaseDate: '2025-11-25',
|
|
2511
|
+
lastUpdated: '2026-01-31',
|
|
2512
|
+
openWeights: false,
|
|
2513
|
+
cost: {
|
|
2514
|
+
input: 0,
|
|
2515
|
+
output: 0,
|
|
2516
|
+
},
|
|
2517
|
+
limit: {
|
|
2518
|
+
context: 67344,
|
|
2519
|
+
output: 67344,
|
|
2520
|
+
},
|
|
2521
|
+
},
|
|
2522
|
+
{
|
|
2523
|
+
id: 'black-forest-labs/flux.2-klein-4b',
|
|
2524
|
+
label: 'FLUX.2 Klein 4B',
|
|
2525
|
+
modalities: {
|
|
2526
|
+
input: ['image', 'text'],
|
|
2527
|
+
output: ['image', 'text'],
|
|
2528
|
+
},
|
|
2529
|
+
toolCall: false,
|
|
2530
|
+
reasoningText: false,
|
|
2531
|
+
attachment: false,
|
|
2532
|
+
temperature: true,
|
|
2533
|
+
knowledge: '2025-06',
|
|
2534
|
+
releaseDate: '2026-01-14',
|
|
2535
|
+
lastUpdated: '2026-01-31',
|
|
2536
|
+
openWeights: true,
|
|
2537
|
+
cost: {
|
|
2538
|
+
input: 0,
|
|
2539
|
+
output: 0,
|
|
2540
|
+
},
|
|
2541
|
+
limit: {
|
|
2542
|
+
context: 40960,
|
|
2543
|
+
output: 40960,
|
|
2544
|
+
},
|
|
2545
|
+
},
|
|
2546
|
+
{
|
|
2547
|
+
id: 'black-forest-labs/flux.2-max',
|
|
2548
|
+
label: 'FLUX.2 Max',
|
|
2549
|
+
modalities: {
|
|
2550
|
+
input: ['image', 'text'],
|
|
2551
|
+
output: ['image', 'text'],
|
|
2552
|
+
},
|
|
2553
|
+
toolCall: false,
|
|
2554
|
+
reasoningText: false,
|
|
2555
|
+
attachment: false,
|
|
2556
|
+
temperature: true,
|
|
2557
|
+
knowledge: '2025-06',
|
|
2558
|
+
releaseDate: '2025-12-16',
|
|
2559
|
+
lastUpdated: '2026-01-31',
|
|
2560
|
+
openWeights: false,
|
|
2561
|
+
cost: {
|
|
2562
|
+
input: 0,
|
|
2563
|
+
output: 0,
|
|
2564
|
+
},
|
|
2565
|
+
limit: {
|
|
2566
|
+
context: 46864,
|
|
2567
|
+
output: 46864,
|
|
2568
|
+
},
|
|
2569
|
+
},
|
|
2570
|
+
{
|
|
2571
|
+
id: 'black-forest-labs/flux.2-pro',
|
|
2572
|
+
label: 'FLUX.2 Pro',
|
|
2573
|
+
modalities: {
|
|
2574
|
+
input: ['image', 'text'],
|
|
2575
|
+
output: ['image', 'text'],
|
|
2576
|
+
},
|
|
2577
|
+
toolCall: false,
|
|
2578
|
+
reasoningText: false,
|
|
2579
|
+
attachment: false,
|
|
2580
|
+
temperature: true,
|
|
2581
|
+
knowledge: '2025-06',
|
|
2582
|
+
releaseDate: '2025-11-25',
|
|
2583
|
+
lastUpdated: '2026-01-31',
|
|
2584
|
+
openWeights: false,
|
|
2585
|
+
cost: {
|
|
2586
|
+
input: 0,
|
|
2587
|
+
output: 0,
|
|
2588
|
+
},
|
|
2589
|
+
limit: {
|
|
2590
|
+
context: 46864,
|
|
2591
|
+
output: 46864,
|
|
2592
|
+
},
|
|
2593
|
+
},
|
|
2594
|
+
{
|
|
2595
|
+
id: 'bytedance-seed/seedream-4.5',
|
|
2596
|
+
label: 'Seedream 4.5',
|
|
2597
|
+
modalities: {
|
|
2598
|
+
input: ['image', 'text'],
|
|
2599
|
+
output: ['image', 'text'],
|
|
2600
|
+
},
|
|
2601
|
+
toolCall: false,
|
|
2602
|
+
reasoningText: false,
|
|
2603
|
+
attachment: false,
|
|
2604
|
+
temperature: true,
|
|
2605
|
+
knowledge: '2025-06',
|
|
2606
|
+
releaseDate: '2025-12-23',
|
|
2607
|
+
lastUpdated: '2026-01-31',
|
|
2608
|
+
openWeights: true,
|
|
2609
|
+
cost: {
|
|
2610
|
+
input: 0,
|
|
2611
|
+
output: 0,
|
|
2612
|
+
},
|
|
2613
|
+
limit: {
|
|
2614
|
+
context: 4096,
|
|
2615
|
+
output: 4096,
|
|
2616
|
+
},
|
|
2617
|
+
},
|
|
2618
|
+
{
|
|
2619
|
+
id: 'cognitivecomputations/dolphin-mistral-24b-venice-edition:free',
|
|
2620
|
+
label: 'Uncensored (free)',
|
|
2621
|
+
modalities: {
|
|
2622
|
+
input: ['text'],
|
|
2623
|
+
output: ['text'],
|
|
2624
|
+
},
|
|
2625
|
+
toolCall: true,
|
|
2626
|
+
reasoningText: false,
|
|
2627
|
+
attachment: false,
|
|
2628
|
+
temperature: true,
|
|
2629
|
+
knowledge: '2025-06',
|
|
2630
|
+
releaseDate: '2025-07-09',
|
|
2631
|
+
lastUpdated: '2026-01-31',
|
|
2632
|
+
openWeights: true,
|
|
2633
|
+
cost: {
|
|
2634
|
+
input: 0,
|
|
2635
|
+
output: 0,
|
|
2636
|
+
},
|
|
2637
|
+
limit: {
|
|
2638
|
+
context: 32768,
|
|
2639
|
+
output: 32768,
|
|
2640
|
+
},
|
|
2641
|
+
},
|
|
2426
2642
|
{
|
|
2427
2643
|
id: 'cognitivecomputations/dolphin3.0-mistral-24b',
|
|
2428
2644
|
label: 'Dolphin3.0 Mistral 24B',
|
|
@@ -2550,7 +2766,7 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
2550
2766
|
input: ['text'],
|
|
2551
2767
|
output: ['text'],
|
|
2552
2768
|
},
|
|
2553
|
-
toolCall:
|
|
2769
|
+
toolCall: false,
|
|
2554
2770
|
reasoningText: true,
|
|
2555
2771
|
attachment: false,
|
|
2556
2772
|
temperature: true,
|
|
@@ -3069,13 +3285,13 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
3069
3285
|
},
|
|
3070
3286
|
},
|
|
3071
3287
|
{
|
|
3072
|
-
id: 'google/gemma-2-9b-it
|
|
3073
|
-
label: 'Gemma 2 9B
|
|
3288
|
+
id: 'google/gemma-2-9b-it',
|
|
3289
|
+
label: 'Gemma 2 9B',
|
|
3074
3290
|
modalities: {
|
|
3075
3291
|
input: ['text'],
|
|
3076
3292
|
output: ['text'],
|
|
3077
3293
|
},
|
|
3078
|
-
toolCall:
|
|
3294
|
+
toolCall: false,
|
|
3079
3295
|
reasoningText: false,
|
|
3080
3296
|
attachment: false,
|
|
3081
3297
|
temperature: true,
|
|
@@ -3084,8 +3300,8 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
3084
3300
|
lastUpdated: '2024-06-28',
|
|
3085
3301
|
openWeights: true,
|
|
3086
3302
|
cost: {
|
|
3087
|
-
input: 0,
|
|
3088
|
-
output: 0,
|
|
3303
|
+
input: 0.03,
|
|
3304
|
+
output: 0.09,
|
|
3089
3305
|
},
|
|
3090
3306
|
limit: {
|
|
3091
3307
|
context: 8192,
|
|
@@ -3094,12 +3310,12 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
3094
3310
|
},
|
|
3095
3311
|
{
|
|
3096
3312
|
id: 'google/gemma-3-12b-it',
|
|
3097
|
-
label: 'Gemma 3 12B
|
|
3313
|
+
label: 'Gemma 3 12B',
|
|
3098
3314
|
modalities: {
|
|
3099
3315
|
input: ['text', 'image'],
|
|
3100
3316
|
output: ['text'],
|
|
3101
3317
|
},
|
|
3102
|
-
toolCall:
|
|
3318
|
+
toolCall: false,
|
|
3103
3319
|
reasoningText: false,
|
|
3104
3320
|
attachment: true,
|
|
3105
3321
|
temperature: true,
|
|
@@ -3108,113 +3324,113 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
3108
3324
|
lastUpdated: '2025-03-13',
|
|
3109
3325
|
openWeights: true,
|
|
3110
3326
|
cost: {
|
|
3111
|
-
input: 0,
|
|
3112
|
-
output: 0,
|
|
3327
|
+
input: 0.03,
|
|
3328
|
+
output: 0.1,
|
|
3113
3329
|
},
|
|
3114
3330
|
limit: {
|
|
3115
|
-
context:
|
|
3116
|
-
output:
|
|
3331
|
+
context: 131072,
|
|
3332
|
+
output: 131072,
|
|
3117
3333
|
},
|
|
3118
3334
|
},
|
|
3119
3335
|
{
|
|
3120
|
-
id: 'google/gemma-3-
|
|
3121
|
-
label: 'Gemma 3
|
|
3336
|
+
id: 'google/gemma-3-12b-it:free',
|
|
3337
|
+
label: 'Gemma 3 12B (free)',
|
|
3122
3338
|
modalities: {
|
|
3123
3339
|
input: ['text', 'image'],
|
|
3124
3340
|
output: ['text'],
|
|
3125
3341
|
},
|
|
3126
|
-
toolCall:
|
|
3342
|
+
toolCall: false,
|
|
3127
3343
|
reasoningText: false,
|
|
3128
3344
|
attachment: true,
|
|
3129
3345
|
temperature: true,
|
|
3130
3346
|
knowledge: '2024-10',
|
|
3131
|
-
releaseDate: '2025-03-
|
|
3132
|
-
lastUpdated: '2025-03-
|
|
3347
|
+
releaseDate: '2025-03-13',
|
|
3348
|
+
lastUpdated: '2025-03-13',
|
|
3133
3349
|
openWeights: true,
|
|
3134
3350
|
cost: {
|
|
3135
3351
|
input: 0,
|
|
3136
3352
|
output: 0,
|
|
3137
3353
|
},
|
|
3138
3354
|
limit: {
|
|
3139
|
-
context:
|
|
3355
|
+
context: 32768,
|
|
3140
3356
|
output: 8192,
|
|
3141
3357
|
},
|
|
3142
3358
|
},
|
|
3143
3359
|
{
|
|
3144
|
-
id: 'google/gemma-
|
|
3145
|
-
label: 'Gemma
|
|
3360
|
+
id: 'google/gemma-3-27b-it',
|
|
3361
|
+
label: 'Gemma 3 27B',
|
|
3146
3362
|
modalities: {
|
|
3147
|
-
input: ['text', 'image'
|
|
3363
|
+
input: ['text', 'image'],
|
|
3148
3364
|
output: ['text'],
|
|
3149
3365
|
},
|
|
3150
|
-
toolCall:
|
|
3366
|
+
toolCall: true,
|
|
3151
3367
|
reasoningText: false,
|
|
3152
3368
|
attachment: true,
|
|
3153
3369
|
temperature: true,
|
|
3154
3370
|
knowledge: '2024-10',
|
|
3155
|
-
releaseDate: '2025-
|
|
3156
|
-
lastUpdated: '2025-
|
|
3371
|
+
releaseDate: '2025-03-12',
|
|
3372
|
+
lastUpdated: '2025-03-12',
|
|
3157
3373
|
openWeights: true,
|
|
3158
3374
|
cost: {
|
|
3159
|
-
input: 0,
|
|
3160
|
-
output: 0,
|
|
3375
|
+
input: 0.04,
|
|
3376
|
+
output: 0.15,
|
|
3161
3377
|
},
|
|
3162
3378
|
limit: {
|
|
3163
|
-
context:
|
|
3164
|
-
output:
|
|
3379
|
+
context: 96000,
|
|
3380
|
+
output: 96000,
|
|
3165
3381
|
},
|
|
3166
3382
|
},
|
|
3167
3383
|
{
|
|
3168
|
-
id: 'google/gemma-
|
|
3169
|
-
label: 'Gemma
|
|
3384
|
+
id: 'google/gemma-3-27b-it:free',
|
|
3385
|
+
label: 'Gemma 3 27B (free)',
|
|
3170
3386
|
modalities: {
|
|
3171
|
-
input: ['text', 'image'
|
|
3387
|
+
input: ['text', 'image'],
|
|
3172
3388
|
output: ['text'],
|
|
3173
3389
|
},
|
|
3174
3390
|
toolCall: true,
|
|
3175
3391
|
reasoningText: false,
|
|
3176
3392
|
attachment: true,
|
|
3177
3393
|
temperature: true,
|
|
3178
|
-
knowledge: '
|
|
3179
|
-
releaseDate: '2025-
|
|
3180
|
-
lastUpdated: '2025-
|
|
3394
|
+
knowledge: '2024-10',
|
|
3395
|
+
releaseDate: '2025-03-12',
|
|
3396
|
+
lastUpdated: '2025-03-12',
|
|
3181
3397
|
openWeights: true,
|
|
3182
3398
|
cost: {
|
|
3183
3399
|
input: 0,
|
|
3184
3400
|
output: 0,
|
|
3185
3401
|
},
|
|
3186
3402
|
limit: {
|
|
3187
|
-
context:
|
|
3403
|
+
context: 131072,
|
|
3188
3404
|
output: 8192,
|
|
3189
3405
|
},
|
|
3190
3406
|
},
|
|
3191
3407
|
{
|
|
3192
|
-
id: '
|
|
3193
|
-
label: '
|
|
3408
|
+
id: 'google/gemma-3-4b-it',
|
|
3409
|
+
label: 'Gemma 3 4B',
|
|
3194
3410
|
modalities: {
|
|
3195
|
-
input: ['text'],
|
|
3411
|
+
input: ['text', 'image'],
|
|
3196
3412
|
output: ['text'],
|
|
3197
3413
|
},
|
|
3198
|
-
toolCall:
|
|
3414
|
+
toolCall: false,
|
|
3199
3415
|
reasoningText: false,
|
|
3200
|
-
attachment:
|
|
3416
|
+
attachment: true,
|
|
3201
3417
|
temperature: true,
|
|
3202
|
-
knowledge: '
|
|
3203
|
-
releaseDate: '2025-
|
|
3204
|
-
lastUpdated: '2025-
|
|
3205
|
-
openWeights:
|
|
3418
|
+
knowledge: '2024-10',
|
|
3419
|
+
releaseDate: '2025-03-13',
|
|
3420
|
+
lastUpdated: '2025-03-13',
|
|
3421
|
+
openWeights: true,
|
|
3206
3422
|
cost: {
|
|
3207
|
-
input: 0,
|
|
3208
|
-
output: 0,
|
|
3423
|
+
input: 0.01703,
|
|
3424
|
+
output: 0.06815,
|
|
3209
3425
|
},
|
|
3210
3426
|
limit: {
|
|
3211
|
-
context:
|
|
3212
|
-
output:
|
|
3427
|
+
context: 96000,
|
|
3428
|
+
output: 96000,
|
|
3213
3429
|
},
|
|
3214
3430
|
},
|
|
3215
3431
|
{
|
|
3216
|
-
id: '
|
|
3217
|
-
label: '
|
|
3432
|
+
id: 'google/gemma-3-4b-it:free',
|
|
3433
|
+
label: 'Gemma 3 4B (free)',
|
|
3218
3434
|
modalities: {
|
|
3219
3435
|
input: ['text', 'image'],
|
|
3220
3436
|
output: ['text'],
|
|
@@ -3223,43 +3439,259 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
3223
3439
|
reasoningText: false,
|
|
3224
3440
|
attachment: true,
|
|
3225
3441
|
temperature: true,
|
|
3226
|
-
knowledge: '
|
|
3227
|
-
releaseDate: '
|
|
3228
|
-
lastUpdated: '
|
|
3442
|
+
knowledge: '2024-10',
|
|
3443
|
+
releaseDate: '2025-03-13',
|
|
3444
|
+
lastUpdated: '2025-03-13',
|
|
3229
3445
|
openWeights: true,
|
|
3230
3446
|
cost: {
|
|
3231
3447
|
input: 0,
|
|
3232
3448
|
output: 0,
|
|
3233
3449
|
},
|
|
3234
3450
|
limit: {
|
|
3235
|
-
context:
|
|
3451
|
+
context: 32768,
|
|
3236
3452
|
output: 8192,
|
|
3237
3453
|
},
|
|
3238
3454
|
},
|
|
3239
3455
|
{
|
|
3240
|
-
id: '
|
|
3241
|
-
label: '
|
|
3456
|
+
id: 'google/gemma-3n-e2b-it:free',
|
|
3457
|
+
label: 'Gemma 3n 2B (free)',
|
|
3242
3458
|
modalities: {
|
|
3243
3459
|
input: ['text'],
|
|
3244
3460
|
output: ['text'],
|
|
3245
3461
|
},
|
|
3246
|
-
toolCall:
|
|
3462
|
+
toolCall: false,
|
|
3247
3463
|
reasoningText: false,
|
|
3248
|
-
attachment:
|
|
3464
|
+
attachment: true,
|
|
3249
3465
|
temperature: true,
|
|
3250
|
-
knowledge: '2024-
|
|
3251
|
-
releaseDate: '
|
|
3252
|
-
lastUpdated: '
|
|
3466
|
+
knowledge: '2024-06',
|
|
3467
|
+
releaseDate: '2025-07-09',
|
|
3468
|
+
lastUpdated: '2025-07-09',
|
|
3469
|
+
openWeights: true,
|
|
3470
|
+
cost: {
|
|
3471
|
+
input: 0,
|
|
3472
|
+
output: 0,
|
|
3473
|
+
},
|
|
3474
|
+
limit: {
|
|
3475
|
+
context: 8192,
|
|
3476
|
+
output: 2000,
|
|
3477
|
+
},
|
|
3478
|
+
},
|
|
3479
|
+
{
|
|
3480
|
+
id: 'google/gemma-3n-e4b-it',
|
|
3481
|
+
label: 'Gemma 3n 4B',
|
|
3482
|
+
modalities: {
|
|
3483
|
+
input: ['text'],
|
|
3484
|
+
output: ['text'],
|
|
3485
|
+
},
|
|
3486
|
+
toolCall: false,
|
|
3487
|
+
reasoningText: false,
|
|
3488
|
+
attachment: true,
|
|
3489
|
+
temperature: true,
|
|
3490
|
+
knowledge: '2024-06',
|
|
3491
|
+
releaseDate: '2025-05-20',
|
|
3492
|
+
lastUpdated: '2025-05-20',
|
|
3493
|
+
openWeights: true,
|
|
3494
|
+
cost: {
|
|
3495
|
+
input: 0.02,
|
|
3496
|
+
output: 0.04,
|
|
3497
|
+
},
|
|
3498
|
+
limit: {
|
|
3499
|
+
context: 32768,
|
|
3500
|
+
output: 32768,
|
|
3501
|
+
},
|
|
3502
|
+
},
|
|
3503
|
+
{
|
|
3504
|
+
id: 'google/gemma-3n-e4b-it:free',
|
|
3505
|
+
label: 'Gemma 3n 4B (free)',
|
|
3506
|
+
modalities: {
|
|
3507
|
+
input: ['text'],
|
|
3508
|
+
output: ['text'],
|
|
3509
|
+
},
|
|
3510
|
+
toolCall: false,
|
|
3511
|
+
reasoningText: false,
|
|
3512
|
+
attachment: true,
|
|
3513
|
+
temperature: true,
|
|
3514
|
+
knowledge: '2024-06',
|
|
3515
|
+
releaseDate: '2025-05-20',
|
|
3516
|
+
lastUpdated: '2025-05-20',
|
|
3253
3517
|
openWeights: true,
|
|
3254
3518
|
cost: {
|
|
3255
3519
|
input: 0,
|
|
3256
3520
|
output: 0,
|
|
3257
3521
|
},
|
|
3258
3522
|
limit: {
|
|
3259
|
-
context:
|
|
3523
|
+
context: 8192,
|
|
3524
|
+
output: 2000,
|
|
3525
|
+
},
|
|
3526
|
+
},
|
|
3527
|
+
{
|
|
3528
|
+
id: 'kwaipilot/kat-coder-pro:free',
|
|
3529
|
+
label: 'Kat Coder Pro (free)',
|
|
3530
|
+
modalities: {
|
|
3531
|
+
input: ['text'],
|
|
3532
|
+
output: ['text'],
|
|
3533
|
+
},
|
|
3534
|
+
toolCall: true,
|
|
3535
|
+
reasoningText: false,
|
|
3536
|
+
attachment: false,
|
|
3537
|
+
temperature: true,
|
|
3538
|
+
knowledge: '2025-11',
|
|
3539
|
+
releaseDate: '2025-11-10',
|
|
3540
|
+
lastUpdated: '2025-11-10',
|
|
3541
|
+
openWeights: false,
|
|
3542
|
+
cost: {
|
|
3543
|
+
input: 0,
|
|
3544
|
+
output: 0,
|
|
3545
|
+
},
|
|
3546
|
+
limit: {
|
|
3547
|
+
context: 256000,
|
|
3260
3548
|
output: 65536,
|
|
3261
3549
|
},
|
|
3262
3550
|
},
|
|
3551
|
+
{
|
|
3552
|
+
id: 'liquid/lfm-2.5-1.2b-instruct:free',
|
|
3553
|
+
label: 'LFM2.5-1.2B-Instruct (free)',
|
|
3554
|
+
modalities: {
|
|
3555
|
+
input: ['text'],
|
|
3556
|
+
output: ['text'],
|
|
3557
|
+
},
|
|
3558
|
+
toolCall: true,
|
|
3559
|
+
reasoningText: false,
|
|
3560
|
+
attachment: false,
|
|
3561
|
+
temperature: true,
|
|
3562
|
+
knowledge: '2025-06',
|
|
3563
|
+
releaseDate: '2026-01-20',
|
|
3564
|
+
lastUpdated: '2026-01-28',
|
|
3565
|
+
openWeights: true,
|
|
3566
|
+
cost: {
|
|
3567
|
+
input: 0,
|
|
3568
|
+
output: 0,
|
|
3569
|
+
},
|
|
3570
|
+
limit: {
|
|
3571
|
+
context: 131072,
|
|
3572
|
+
output: 32768,
|
|
3573
|
+
},
|
|
3574
|
+
},
|
|
3575
|
+
{
|
|
3576
|
+
id: 'liquid/lfm-2.5-1.2b-thinking:free',
|
|
3577
|
+
label: 'LFM2.5-1.2B-Thinking (free)',
|
|
3578
|
+
modalities: {
|
|
3579
|
+
input: ['text'],
|
|
3580
|
+
output: ['text'],
|
|
3581
|
+
},
|
|
3582
|
+
toolCall: true,
|
|
3583
|
+
reasoningText: true,
|
|
3584
|
+
attachment: false,
|
|
3585
|
+
temperature: true,
|
|
3586
|
+
knowledge: '2025-06',
|
|
3587
|
+
releaseDate: '2026-01-20',
|
|
3588
|
+
lastUpdated: '2026-01-28',
|
|
3589
|
+
openWeights: true,
|
|
3590
|
+
cost: {
|
|
3591
|
+
input: 0,
|
|
3592
|
+
output: 0,
|
|
3593
|
+
},
|
|
3594
|
+
limit: {
|
|
3595
|
+
context: 131072,
|
|
3596
|
+
output: 32768,
|
|
3597
|
+
},
|
|
3598
|
+
},
|
|
3599
|
+
{
|
|
3600
|
+
id: 'meta-llama/llama-3.1-405b-instruct:free',
|
|
3601
|
+
label: 'Llama 3.1 405B Instruct (free)',
|
|
3602
|
+
modalities: {
|
|
3603
|
+
input: ['text'],
|
|
3604
|
+
output: ['text'],
|
|
3605
|
+
},
|
|
3606
|
+
toolCall: true,
|
|
3607
|
+
reasoningText: false,
|
|
3608
|
+
attachment: true,
|
|
3609
|
+
temperature: true,
|
|
3610
|
+
knowledge: '2024-08',
|
|
3611
|
+
releaseDate: '2024-07-23',
|
|
3612
|
+
lastUpdated: '2025-04-05',
|
|
3613
|
+
openWeights: true,
|
|
3614
|
+
cost: {
|
|
3615
|
+
input: 0,
|
|
3616
|
+
output: 0,
|
|
3617
|
+
},
|
|
3618
|
+
limit: {
|
|
3619
|
+
context: 131072,
|
|
3620
|
+
output: 131072,
|
|
3621
|
+
},
|
|
3622
|
+
},
|
|
3623
|
+
{
|
|
3624
|
+
id: 'meta-llama/llama-3.2-11b-vision-instruct',
|
|
3625
|
+
label: 'Llama 3.2 11B Vision Instruct',
|
|
3626
|
+
modalities: {
|
|
3627
|
+
input: ['text', 'image'],
|
|
3628
|
+
output: ['text'],
|
|
3629
|
+
},
|
|
3630
|
+
toolCall: false,
|
|
3631
|
+
reasoningText: false,
|
|
3632
|
+
attachment: true,
|
|
3633
|
+
temperature: true,
|
|
3634
|
+
knowledge: '2023-12',
|
|
3635
|
+
releaseDate: '2024-09-25',
|
|
3636
|
+
lastUpdated: '2024-09-25',
|
|
3637
|
+
openWeights: true,
|
|
3638
|
+
cost: {
|
|
3639
|
+
input: 0,
|
|
3640
|
+
output: 0,
|
|
3641
|
+
},
|
|
3642
|
+
limit: {
|
|
3643
|
+
context: 131072,
|
|
3644
|
+
output: 8192,
|
|
3645
|
+
},
|
|
3646
|
+
},
|
|
3647
|
+
{
|
|
3648
|
+
id: 'meta-llama/llama-3.2-3b-instruct:free',
|
|
3649
|
+
label: 'Llama 3.2 3B Instruct (free)',
|
|
3650
|
+
modalities: {
|
|
3651
|
+
input: ['text', 'image'],
|
|
3652
|
+
output: ['text'],
|
|
3653
|
+
},
|
|
3654
|
+
toolCall: true,
|
|
3655
|
+
reasoningText: false,
|
|
3656
|
+
attachment: true,
|
|
3657
|
+
temperature: true,
|
|
3658
|
+
knowledge: '2023-12',
|
|
3659
|
+
releaseDate: '2024-09-25',
|
|
3660
|
+
lastUpdated: '2024-09-25',
|
|
3661
|
+
openWeights: true,
|
|
3662
|
+
cost: {
|
|
3663
|
+
input: 0,
|
|
3664
|
+
output: 0,
|
|
3665
|
+
},
|
|
3666
|
+
limit: {
|
|
3667
|
+
context: 131072,
|
|
3668
|
+
output: 131072,
|
|
3669
|
+
},
|
|
3670
|
+
},
|
|
3671
|
+
{
|
|
3672
|
+
id: 'meta-llama/llama-3.3-70b-instruct:free',
|
|
3673
|
+
label: 'Llama 3.3 70B Instruct (free)',
|
|
3674
|
+
modalities: {
|
|
3675
|
+
input: ['text'],
|
|
3676
|
+
output: ['text'],
|
|
3677
|
+
},
|
|
3678
|
+
toolCall: true,
|
|
3679
|
+
reasoningText: false,
|
|
3680
|
+
attachment: false,
|
|
3681
|
+
temperature: true,
|
|
3682
|
+
knowledge: '2024-12',
|
|
3683
|
+
releaseDate: '2024-12-06',
|
|
3684
|
+
lastUpdated: '2024-12-06',
|
|
3685
|
+
openWeights: true,
|
|
3686
|
+
cost: {
|
|
3687
|
+
input: 0,
|
|
3688
|
+
output: 0,
|
|
3689
|
+
},
|
|
3690
|
+
limit: {
|
|
3691
|
+
context: 131072,
|
|
3692
|
+
output: 131072,
|
|
3693
|
+
},
|
|
3694
|
+
},
|
|
3263
3695
|
{
|
|
3264
3696
|
id: 'meta-llama/llama-4-scout:free',
|
|
3265
3697
|
label: 'Llama 4 Scout (free)',
|
|
@@ -3944,6 +4376,30 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
3944
4376
|
output: 8192,
|
|
3945
4377
|
},
|
|
3946
4378
|
},
|
|
4379
|
+
{
|
|
4380
|
+
id: 'nousresearch/hermes-3-llama-3.1-405b:free',
|
|
4381
|
+
label: 'Hermes 3 405B Instruct (free)',
|
|
4382
|
+
modalities: {
|
|
4383
|
+
input: ['text'],
|
|
4384
|
+
output: ['text'],
|
|
4385
|
+
},
|
|
4386
|
+
toolCall: true,
|
|
4387
|
+
reasoningText: true,
|
|
4388
|
+
attachment: false,
|
|
4389
|
+
temperature: true,
|
|
4390
|
+
knowledge: '2023-12',
|
|
4391
|
+
releaseDate: '2024-08-16',
|
|
4392
|
+
lastUpdated: '2024-08-16',
|
|
4393
|
+
openWeights: true,
|
|
4394
|
+
cost: {
|
|
4395
|
+
input: 0,
|
|
4396
|
+
output: 0,
|
|
4397
|
+
},
|
|
4398
|
+
limit: {
|
|
4399
|
+
context: 131072,
|
|
4400
|
+
output: 131072,
|
|
4401
|
+
},
|
|
4402
|
+
},
|
|
3947
4403
|
{
|
|
3948
4404
|
id: 'nousresearch/hermes-4-405b',
|
|
3949
4405
|
label: 'Hermes 4 405B',
|
|
@@ -3993,8 +4449,8 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
3993
4449
|
},
|
|
3994
4450
|
},
|
|
3995
4451
|
{
|
|
3996
|
-
id: 'nvidia/nemotron-nano-
|
|
3997
|
-
label: '
|
|
4452
|
+
id: 'nvidia/nemotron-3-nano-30b-a3b:free',
|
|
4453
|
+
label: 'Nemotron 3 Nano 30B A3B (free)',
|
|
3998
4454
|
modalities: {
|
|
3999
4455
|
input: ['text'],
|
|
4000
4456
|
output: ['text'],
|
|
@@ -4003,42 +4459,114 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
4003
4459
|
reasoningText: true,
|
|
4004
4460
|
attachment: false,
|
|
4005
4461
|
temperature: true,
|
|
4006
|
-
knowledge: '
|
|
4007
|
-
releaseDate: '2025-
|
|
4008
|
-
lastUpdated: '
|
|
4462
|
+
knowledge: '2025-11',
|
|
4463
|
+
releaseDate: '2025-12-14',
|
|
4464
|
+
lastUpdated: '2026-01-31',
|
|
4009
4465
|
openWeights: true,
|
|
4010
4466
|
cost: {
|
|
4011
|
-
input: 0
|
|
4012
|
-
output: 0
|
|
4467
|
+
input: 0,
|
|
4468
|
+
output: 0,
|
|
4013
4469
|
},
|
|
4014
4470
|
limit: {
|
|
4015
|
-
context:
|
|
4016
|
-
output:
|
|
4471
|
+
context: 256000,
|
|
4472
|
+
output: 256000,
|
|
4017
4473
|
},
|
|
4018
4474
|
},
|
|
4019
4475
|
{
|
|
4020
|
-
id: '
|
|
4021
|
-
label: '
|
|
4476
|
+
id: 'nvidia/nemotron-nano-12b-v2-vl:free',
|
|
4477
|
+
label: 'Nemotron Nano 12B 2 VL (free)',
|
|
4022
4478
|
modalities: {
|
|
4023
4479
|
input: ['text', 'image'],
|
|
4024
4480
|
output: ['text'],
|
|
4025
4481
|
},
|
|
4026
4482
|
toolCall: true,
|
|
4027
|
-
reasoningText:
|
|
4028
|
-
attachment:
|
|
4483
|
+
reasoningText: true,
|
|
4484
|
+
attachment: false,
|
|
4029
4485
|
temperature: true,
|
|
4030
|
-
knowledge: '
|
|
4031
|
-
releaseDate: '2025-
|
|
4032
|
-
lastUpdated: '
|
|
4033
|
-
openWeights:
|
|
4486
|
+
knowledge: '2025-11',
|
|
4487
|
+
releaseDate: '2025-10-28',
|
|
4488
|
+
lastUpdated: '2026-01-31',
|
|
4489
|
+
openWeights: true,
|
|
4034
4490
|
cost: {
|
|
4035
|
-
input:
|
|
4036
|
-
output:
|
|
4037
|
-
cacheRead: 0.5,
|
|
4491
|
+
input: 0,
|
|
4492
|
+
output: 0,
|
|
4038
4493
|
},
|
|
4039
4494
|
limit: {
|
|
4040
|
-
context:
|
|
4041
|
-
output:
|
|
4495
|
+
context: 128000,
|
|
4496
|
+
output: 128000,
|
|
4497
|
+
},
|
|
4498
|
+
},
|
|
4499
|
+
{
|
|
4500
|
+
id: 'nvidia/nemotron-nano-9b-v2',
|
|
4501
|
+
label: 'nvidia-nemotron-nano-9b-v2',
|
|
4502
|
+
modalities: {
|
|
4503
|
+
input: ['text'],
|
|
4504
|
+
output: ['text'],
|
|
4505
|
+
},
|
|
4506
|
+
toolCall: true,
|
|
4507
|
+
reasoningText: true,
|
|
4508
|
+
attachment: false,
|
|
4509
|
+
temperature: true,
|
|
4510
|
+
knowledge: '2024-09',
|
|
4511
|
+
releaseDate: '2025-08-18',
|
|
4512
|
+
lastUpdated: '2025-08-18',
|
|
4513
|
+
openWeights: true,
|
|
4514
|
+
cost: {
|
|
4515
|
+
input: 0.04,
|
|
4516
|
+
output: 0.16,
|
|
4517
|
+
},
|
|
4518
|
+
limit: {
|
|
4519
|
+
context: 131072,
|
|
4520
|
+
output: 131072,
|
|
4521
|
+
},
|
|
4522
|
+
},
|
|
4523
|
+
{
|
|
4524
|
+
id: 'nvidia/nemotron-nano-9b-v2:free',
|
|
4525
|
+
label: 'Nemotron Nano 9B V2 (free)',
|
|
4526
|
+
modalities: {
|
|
4527
|
+
input: ['text'],
|
|
4528
|
+
output: ['text'],
|
|
4529
|
+
},
|
|
4530
|
+
toolCall: true,
|
|
4531
|
+
reasoningText: true,
|
|
4532
|
+
attachment: false,
|
|
4533
|
+
temperature: true,
|
|
4534
|
+
knowledge: '2024-09',
|
|
4535
|
+
releaseDate: '2025-09-05',
|
|
4536
|
+
lastUpdated: '2025-08-18',
|
|
4537
|
+
openWeights: true,
|
|
4538
|
+
cost: {
|
|
4539
|
+
input: 0,
|
|
4540
|
+
output: 0,
|
|
4541
|
+
},
|
|
4542
|
+
limit: {
|
|
4543
|
+
context: 128000,
|
|
4544
|
+
output: 128000,
|
|
4545
|
+
},
|
|
4546
|
+
},
|
|
4547
|
+
{
|
|
4548
|
+
id: 'openai/gpt-4.1',
|
|
4549
|
+
label: 'GPT-4.1',
|
|
4550
|
+
modalities: {
|
|
4551
|
+
input: ['text', 'image'],
|
|
4552
|
+
output: ['text'],
|
|
4553
|
+
},
|
|
4554
|
+
toolCall: true,
|
|
4555
|
+
reasoningText: false,
|
|
4556
|
+
attachment: true,
|
|
4557
|
+
temperature: true,
|
|
4558
|
+
knowledge: '2024-04',
|
|
4559
|
+
releaseDate: '2025-04-14',
|
|
4560
|
+
lastUpdated: '2025-04-14',
|
|
4561
|
+
openWeights: false,
|
|
4562
|
+
cost: {
|
|
4563
|
+
input: 2,
|
|
4564
|
+
output: 8,
|
|
4565
|
+
cacheRead: 0.5,
|
|
4566
|
+
},
|
|
4567
|
+
limit: {
|
|
4568
|
+
context: 1047576,
|
|
4569
|
+
output: 32768,
|
|
4042
4570
|
},
|
|
4043
4571
|
},
|
|
4044
4572
|
{
|
|
@@ -4412,7 +4940,7 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
4412
4940
|
},
|
|
4413
4941
|
},
|
|
4414
4942
|
{
|
|
4415
|
-
id: 'openai/gpt-5.2-chat
|
|
4943
|
+
id: 'openai/gpt-5.2-chat',
|
|
4416
4944
|
label: 'GPT-5.2 Chat',
|
|
4417
4945
|
modalities: {
|
|
4418
4946
|
input: ['text', 'image'],
|
|
@@ -4531,6 +5059,29 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
4531
5059
|
output: 32768,
|
|
4532
5060
|
},
|
|
4533
5061
|
},
|
|
5062
|
+
{
|
|
5063
|
+
id: 'openai/gpt-oss-120b:free',
|
|
5064
|
+
label: 'gpt-oss-120b (free)',
|
|
5065
|
+
modalities: {
|
|
5066
|
+
input: ['text'],
|
|
5067
|
+
output: ['text'],
|
|
5068
|
+
},
|
|
5069
|
+
toolCall: true,
|
|
5070
|
+
reasoningText: true,
|
|
5071
|
+
attachment: false,
|
|
5072
|
+
temperature: true,
|
|
5073
|
+
releaseDate: '2025-08-05',
|
|
5074
|
+
lastUpdated: '2025-08-05',
|
|
5075
|
+
openWeights: true,
|
|
5076
|
+
cost: {
|
|
5077
|
+
input: 0,
|
|
5078
|
+
output: 0,
|
|
5079
|
+
},
|
|
5080
|
+
limit: {
|
|
5081
|
+
context: 131072,
|
|
5082
|
+
output: 32768,
|
|
5083
|
+
},
|
|
5084
|
+
},
|
|
4534
5085
|
{
|
|
4535
5086
|
id: 'openai/gpt-oss-20b',
|
|
4536
5087
|
label: 'GPT OSS 20B',
|
|
@@ -4554,6 +5105,29 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
4554
5105
|
output: 32768,
|
|
4555
5106
|
},
|
|
4556
5107
|
},
|
|
5108
|
+
{
|
|
5109
|
+
id: 'openai/gpt-oss-20b:free',
|
|
5110
|
+
label: 'gpt-oss-20b (free)',
|
|
5111
|
+
modalities: {
|
|
5112
|
+
input: ['text'],
|
|
5113
|
+
output: ['text'],
|
|
5114
|
+
},
|
|
5115
|
+
toolCall: true,
|
|
5116
|
+
reasoningText: true,
|
|
5117
|
+
attachment: false,
|
|
5118
|
+
temperature: true,
|
|
5119
|
+
releaseDate: '2025-08-05',
|
|
5120
|
+
lastUpdated: '2026-01-31',
|
|
5121
|
+
openWeights: true,
|
|
5122
|
+
cost: {
|
|
5123
|
+
input: 0,
|
|
5124
|
+
output: 0,
|
|
5125
|
+
},
|
|
5126
|
+
limit: {
|
|
5127
|
+
context: 131072,
|
|
5128
|
+
output: 32768,
|
|
5129
|
+
},
|
|
5130
|
+
},
|
|
4557
5131
|
{
|
|
4558
5132
|
id: 'openai/gpt-oss-safeguard-20b',
|
|
4559
5133
|
label: 'GPT OSS Safeguard 20B',
|
|
@@ -4674,6 +5248,30 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
4674
5248
|
output: 8192,
|
|
4675
5249
|
},
|
|
4676
5250
|
},
|
|
5251
|
+
{
|
|
5252
|
+
id: 'qwen/qwen-2.5-vl-7b-instruct:free',
|
|
5253
|
+
label: 'Qwen2.5-VL 7B Instruct (free)',
|
|
5254
|
+
modalities: {
|
|
5255
|
+
input: ['text', 'image'],
|
|
5256
|
+
output: ['text'],
|
|
5257
|
+
},
|
|
5258
|
+
toolCall: true,
|
|
5259
|
+
reasoningText: false,
|
|
5260
|
+
attachment: true,
|
|
5261
|
+
temperature: true,
|
|
5262
|
+
knowledge: '2025-02',
|
|
5263
|
+
releaseDate: '2024-08-28',
|
|
5264
|
+
lastUpdated: '2024-08-28',
|
|
5265
|
+
openWeights: true,
|
|
5266
|
+
cost: {
|
|
5267
|
+
input: 0,
|
|
5268
|
+
output: 0,
|
|
5269
|
+
},
|
|
5270
|
+
limit: {
|
|
5271
|
+
context: 32768,
|
|
5272
|
+
output: 32768,
|
|
5273
|
+
},
|
|
5274
|
+
},
|
|
4677
5275
|
{
|
|
4678
5276
|
id: 'qwen/qwen2.5-vl-32b-instruct:free',
|
|
4679
5277
|
label: 'Qwen2.5 VL 32B Instruct (free)',
|
|
@@ -4962,6 +5560,30 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
4962
5560
|
output: 40960,
|
|
4963
5561
|
},
|
|
4964
5562
|
},
|
|
5563
|
+
{
|
|
5564
|
+
id: 'qwen/qwen3-4b:free',
|
|
5565
|
+
label: 'Qwen3 4B (free)',
|
|
5566
|
+
modalities: {
|
|
5567
|
+
input: ['text'],
|
|
5568
|
+
output: ['text'],
|
|
5569
|
+
},
|
|
5570
|
+
toolCall: true,
|
|
5571
|
+
reasoningText: true,
|
|
5572
|
+
attachment: false,
|
|
5573
|
+
temperature: true,
|
|
5574
|
+
knowledge: '2025-04',
|
|
5575
|
+
releaseDate: '2025-04-30',
|
|
5576
|
+
lastUpdated: '2025-07-23',
|
|
5577
|
+
openWeights: true,
|
|
5578
|
+
cost: {
|
|
5579
|
+
input: 0,
|
|
5580
|
+
output: 0,
|
|
5581
|
+
},
|
|
5582
|
+
limit: {
|
|
5583
|
+
context: 40960,
|
|
5584
|
+
output: 40960,
|
|
5585
|
+
},
|
|
5586
|
+
},
|
|
4965
5587
|
{
|
|
4966
5588
|
id: 'qwen/qwen3-8b:free',
|
|
4967
5589
|
label: 'Qwen3 8B (free)',
|
|
@@ -5153,6 +5775,30 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
5153
5775
|
output: 262144,
|
|
5154
5776
|
},
|
|
5155
5777
|
},
|
|
5778
|
+
{
|
|
5779
|
+
id: 'qwen/qwen3-next-80b-a3b-instruct:free',
|
|
5780
|
+
label: 'Qwen3 Next 80B A3B Instruct (free)',
|
|
5781
|
+
modalities: {
|
|
5782
|
+
input: ['text'],
|
|
5783
|
+
output: ['text'],
|
|
5784
|
+
},
|
|
5785
|
+
toolCall: true,
|
|
5786
|
+
reasoningText: false,
|
|
5787
|
+
attachment: false,
|
|
5788
|
+
temperature: true,
|
|
5789
|
+
knowledge: '2025-04',
|
|
5790
|
+
releaseDate: '2025-09-11',
|
|
5791
|
+
lastUpdated: '2025-09-11',
|
|
5792
|
+
openWeights: true,
|
|
5793
|
+
cost: {
|
|
5794
|
+
input: 0,
|
|
5795
|
+
output: 0,
|
|
5796
|
+
},
|
|
5797
|
+
limit: {
|
|
5798
|
+
context: 262144,
|
|
5799
|
+
output: 262144,
|
|
5800
|
+
},
|
|
5801
|
+
},
|
|
5156
5802
|
{
|
|
5157
5803
|
id: 'qwen/qwen3-next-80b-a3b-thinking',
|
|
5158
5804
|
label: 'Qwen3 Next 80B A3B Thinking',
|
|
@@ -5249,6 +5895,78 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
5249
5895
|
output: 32768,
|
|
5250
5896
|
},
|
|
5251
5897
|
},
|
|
5898
|
+
{
|
|
5899
|
+
id: 'sourceful/riverflow-v2-fast-preview',
|
|
5900
|
+
label: 'Riverflow V2 Fast Preview',
|
|
5901
|
+
modalities: {
|
|
5902
|
+
input: ['text', 'image'],
|
|
5903
|
+
output: ['image'],
|
|
5904
|
+
},
|
|
5905
|
+
toolCall: false,
|
|
5906
|
+
reasoningText: false,
|
|
5907
|
+
attachment: false,
|
|
5908
|
+
temperature: true,
|
|
5909
|
+
knowledge: '2025-06',
|
|
5910
|
+
releaseDate: '2025-12-08',
|
|
5911
|
+
lastUpdated: '2026-01-28',
|
|
5912
|
+
openWeights: true,
|
|
5913
|
+
cost: {
|
|
5914
|
+
input: 0,
|
|
5915
|
+
output: 0,
|
|
5916
|
+
},
|
|
5917
|
+
limit: {
|
|
5918
|
+
context: 8192,
|
|
5919
|
+
output: 8192,
|
|
5920
|
+
},
|
|
5921
|
+
},
|
|
5922
|
+
{
|
|
5923
|
+
id: 'sourceful/riverflow-v2-max-preview',
|
|
5924
|
+
label: 'Riverflow V2 Max Preview',
|
|
5925
|
+
modalities: {
|
|
5926
|
+
input: ['text', 'image'],
|
|
5927
|
+
output: ['image'],
|
|
5928
|
+
},
|
|
5929
|
+
toolCall: false,
|
|
5930
|
+
reasoningText: false,
|
|
5931
|
+
attachment: false,
|
|
5932
|
+
temperature: true,
|
|
5933
|
+
knowledge: '2025-06',
|
|
5934
|
+
releaseDate: '2025-12-08',
|
|
5935
|
+
lastUpdated: '2026-01-28',
|
|
5936
|
+
openWeights: true,
|
|
5937
|
+
cost: {
|
|
5938
|
+
input: 0,
|
|
5939
|
+
output: 0,
|
|
5940
|
+
},
|
|
5941
|
+
limit: {
|
|
5942
|
+
context: 8192,
|
|
5943
|
+
output: 8192,
|
|
5944
|
+
},
|
|
5945
|
+
},
|
|
5946
|
+
{
|
|
5947
|
+
id: 'sourceful/riverflow-v2-standard-preview',
|
|
5948
|
+
label: 'Riverflow V2 Standard Preview',
|
|
5949
|
+
modalities: {
|
|
5950
|
+
input: ['text', 'image'],
|
|
5951
|
+
output: ['image'],
|
|
5952
|
+
},
|
|
5953
|
+
toolCall: false,
|
|
5954
|
+
reasoningText: false,
|
|
5955
|
+
attachment: false,
|
|
5956
|
+
temperature: true,
|
|
5957
|
+
knowledge: '2025-06',
|
|
5958
|
+
releaseDate: '2025-12-08',
|
|
5959
|
+
lastUpdated: '2026-01-28',
|
|
5960
|
+
openWeights: true,
|
|
5961
|
+
cost: {
|
|
5962
|
+
input: 0,
|
|
5963
|
+
output: 0,
|
|
5964
|
+
},
|
|
5965
|
+
limit: {
|
|
5966
|
+
context: 8192,
|
|
5967
|
+
output: 8192,
|
|
5968
|
+
},
|
|
5969
|
+
},
|
|
5252
5970
|
{
|
|
5253
5971
|
id: 'thudm/glm-z1-32b:free',
|
|
5254
5972
|
label: 'GLM Z1 32B (free)',
|
|
@@ -5298,28 +6016,52 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
5298
6016
|
},
|
|
5299
6017
|
},
|
|
5300
6018
|
{
|
|
5301
|
-
id: '
|
|
5302
|
-
label: '
|
|
6019
|
+
id: 'tngtech/tng-r1t-chimera:free',
|
|
6020
|
+
label: 'R1T Chimera (free)',
|
|
5303
6021
|
modalities: {
|
|
5304
6022
|
input: ['text'],
|
|
5305
6023
|
output: ['text'],
|
|
5306
6024
|
},
|
|
5307
|
-
toolCall:
|
|
5308
|
-
reasoningText:
|
|
6025
|
+
toolCall: false,
|
|
6026
|
+
reasoningText: true,
|
|
5309
6027
|
attachment: false,
|
|
5310
6028
|
temperature: true,
|
|
5311
|
-
knowledge: '
|
|
5312
|
-
releaseDate: '2025-
|
|
5313
|
-
lastUpdated: '
|
|
5314
|
-
openWeights:
|
|
6029
|
+
knowledge: '2025-07',
|
|
6030
|
+
releaseDate: '2025-11-26',
|
|
6031
|
+
lastUpdated: '2026-01-31',
|
|
6032
|
+
openWeights: true,
|
|
5315
6033
|
cost: {
|
|
5316
|
-
input:
|
|
5317
|
-
output:
|
|
5318
|
-
cacheRead: 0.75,
|
|
5319
|
-
cacheWrite: 15,
|
|
6034
|
+
input: 0,
|
|
6035
|
+
output: 0,
|
|
5320
6036
|
},
|
|
5321
6037
|
limit: {
|
|
5322
|
-
context:
|
|
6038
|
+
context: 163840,
|
|
6039
|
+
output: 163840,
|
|
6040
|
+
},
|
|
6041
|
+
},
|
|
6042
|
+
{
|
|
6043
|
+
id: 'x-ai/grok-3',
|
|
6044
|
+
label: 'Grok 3',
|
|
6045
|
+
modalities: {
|
|
6046
|
+
input: ['text'],
|
|
6047
|
+
output: ['text'],
|
|
6048
|
+
},
|
|
6049
|
+
toolCall: true,
|
|
6050
|
+
reasoningText: false,
|
|
6051
|
+
attachment: false,
|
|
6052
|
+
temperature: true,
|
|
6053
|
+
knowledge: '2024-11',
|
|
6054
|
+
releaseDate: '2025-02-17',
|
|
6055
|
+
lastUpdated: '2025-02-17',
|
|
6056
|
+
openWeights: false,
|
|
6057
|
+
cost: {
|
|
6058
|
+
input: 3,
|
|
6059
|
+
output: 15,
|
|
6060
|
+
cacheRead: 0.75,
|
|
6061
|
+
cacheWrite: 15,
|
|
6062
|
+
},
|
|
6063
|
+
limit: {
|
|
6064
|
+
context: 131072,
|
|
5323
6065
|
output: 8192,
|
|
5324
6066
|
},
|
|
5325
6067
|
},
|
|
@@ -5678,6 +6420,32 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
5678
6420
|
npm: '@openrouter/ai-sdk-provider',
|
|
5679
6421
|
},
|
|
5680
6422
|
},
|
|
6423
|
+
{
|
|
6424
|
+
id: 'z-ai/glm-4.7-flash',
|
|
6425
|
+
label: 'GLM-4.7',
|
|
6426
|
+
modalities: {
|
|
6427
|
+
input: ['text'],
|
|
6428
|
+
output: ['text'],
|
|
6429
|
+
},
|
|
6430
|
+
toolCall: true,
|
|
6431
|
+
reasoningText: true,
|
|
6432
|
+
attachment: false,
|
|
6433
|
+
temperature: true,
|
|
6434
|
+
releaseDate: '2026-01-19',
|
|
6435
|
+
lastUpdated: '2026-01-19',
|
|
6436
|
+
openWeights: true,
|
|
6437
|
+
cost: {
|
|
6438
|
+
input: 0.07,
|
|
6439
|
+
output: 0.4,
|
|
6440
|
+
},
|
|
6441
|
+
limit: {
|
|
6442
|
+
context: 200000,
|
|
6443
|
+
output: 65535,
|
|
6444
|
+
},
|
|
6445
|
+
provider: {
|
|
6446
|
+
npm: '@openrouter/ai-sdk-provider',
|
|
6447
|
+
},
|
|
6448
|
+
},
|
|
5681
6449
|
],
|
|
5682
6450
|
label: 'OpenRouter',
|
|
5683
6451
|
env: ['OPENROUTER_API_KEY'],
|
|
@@ -5996,7 +6764,7 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
5996
6764
|
},
|
|
5997
6765
|
{
|
|
5998
6766
|
id: 'glm-4.7-free',
|
|
5999
|
-
label: 'GLM-4.7',
|
|
6767
|
+
label: 'GLM-4.7 Free',
|
|
6000
6768
|
modalities: {
|
|
6001
6769
|
input: ['text'],
|
|
6002
6770
|
output: ['text'],
|
|
@@ -6355,16 +7123,41 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
6355
7123
|
},
|
|
6356
7124
|
toolCall: true,
|
|
6357
7125
|
reasoningText: true,
|
|
6358
|
-
attachment:
|
|
7126
|
+
attachment: true,
|
|
6359
7127
|
temperature: true,
|
|
6360
7128
|
knowledge: '2024-10',
|
|
6361
7129
|
releaseDate: '2026-01-27',
|
|
6362
7130
|
lastUpdated: '2026-01-27',
|
|
6363
7131
|
openWeights: true,
|
|
6364
7132
|
cost: {
|
|
6365
|
-
input:
|
|
6366
|
-
output:
|
|
6367
|
-
cacheRead: 0.
|
|
7133
|
+
input: 0.6,
|
|
7134
|
+
output: 3,
|
|
7135
|
+
cacheRead: 0.08,
|
|
7136
|
+
},
|
|
7137
|
+
limit: {
|
|
7138
|
+
context: 262144,
|
|
7139
|
+
output: 262144,
|
|
7140
|
+
},
|
|
7141
|
+
},
|
|
7142
|
+
{
|
|
7143
|
+
id: 'kimi-k2.5-free',
|
|
7144
|
+
label: 'Kimi K2.5 Free',
|
|
7145
|
+
modalities: {
|
|
7146
|
+
input: ['text', 'image', 'video'],
|
|
7147
|
+
output: ['text'],
|
|
7148
|
+
},
|
|
7149
|
+
toolCall: true,
|
|
7150
|
+
reasoningText: true,
|
|
7151
|
+
attachment: true,
|
|
7152
|
+
temperature: true,
|
|
7153
|
+
knowledge: '2024-10',
|
|
7154
|
+
releaseDate: '2026-01-27',
|
|
7155
|
+
lastUpdated: '2026-01-27',
|
|
7156
|
+
openWeights: true,
|
|
7157
|
+
cost: {
|
|
7158
|
+
input: 0,
|
|
7159
|
+
output: 0,
|
|
7160
|
+
cacheRead: 0,
|
|
6368
7161
|
},
|
|
6369
7162
|
limit: {
|
|
6370
7163
|
context: 262144,
|
|
@@ -6398,7 +7191,7 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
6398
7191
|
},
|
|
6399
7192
|
{
|
|
6400
7193
|
id: 'minimax-m2.1-free',
|
|
6401
|
-
label: 'MiniMax M2.1',
|
|
7194
|
+
label: 'MiniMax M2.1 Free',
|
|
6402
7195
|
modalities: {
|
|
6403
7196
|
input: ['text'],
|
|
6404
7197
|
output: ['text'],
|
|
@@ -6448,6 +7241,30 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
6448
7241
|
output: 65536,
|
|
6449
7242
|
},
|
|
6450
7243
|
},
|
|
7244
|
+
{
|
|
7245
|
+
id: 'trinity-large-preview-free',
|
|
7246
|
+
label: 'Trinity Large Preview',
|
|
7247
|
+
modalities: {
|
|
7248
|
+
input: ['text'],
|
|
7249
|
+
output: ['text'],
|
|
7250
|
+
},
|
|
7251
|
+
toolCall: true,
|
|
7252
|
+
reasoningText: false,
|
|
7253
|
+
attachment: false,
|
|
7254
|
+
temperature: true,
|
|
7255
|
+
knowledge: '2025-06',
|
|
7256
|
+
releaseDate: '2026-01-28',
|
|
7257
|
+
lastUpdated: '2026-01-28',
|
|
7258
|
+
openWeights: true,
|
|
7259
|
+
cost: {
|
|
7260
|
+
input: 0,
|
|
7261
|
+
output: 0,
|
|
7262
|
+
},
|
|
7263
|
+
limit: {
|
|
7264
|
+
context: 131072,
|
|
7265
|
+
output: 131072,
|
|
7266
|
+
},
|
|
7267
|
+
},
|
|
6451
7268
|
],
|
|
6452
7269
|
label: 'OpenCode Zen',
|
|
6453
7270
|
env: ['OPENCODE_API_KEY'],
|
|
@@ -6636,6 +7453,32 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
6636
7453
|
output: 131072,
|
|
6637
7454
|
},
|
|
6638
7455
|
},
|
|
7456
|
+
{
|
|
7457
|
+
id: 'glm-4.7-flash',
|
|
7458
|
+
label: 'GLM-4.7-Flash',
|
|
7459
|
+
modalities: {
|
|
7460
|
+
input: ['text'],
|
|
7461
|
+
output: ['text'],
|
|
7462
|
+
},
|
|
7463
|
+
toolCall: true,
|
|
7464
|
+
reasoningText: true,
|
|
7465
|
+
attachment: false,
|
|
7466
|
+
temperature: true,
|
|
7467
|
+
knowledge: '2025-04',
|
|
7468
|
+
releaseDate: '2026-01-19',
|
|
7469
|
+
lastUpdated: '2026-01-19',
|
|
7470
|
+
openWeights: true,
|
|
7471
|
+
cost: {
|
|
7472
|
+
input: 0,
|
|
7473
|
+
output: 0,
|
|
7474
|
+
cacheRead: 0,
|
|
7475
|
+
cacheWrite: 0,
|
|
7476
|
+
},
|
|
7477
|
+
limit: {
|
|
7478
|
+
context: 200000,
|
|
7479
|
+
output: 131072,
|
|
7480
|
+
},
|
|
7481
|
+
},
|
|
6639
7482
|
],
|
|
6640
7483
|
label: 'Z.AI',
|
|
6641
7484
|
env: ['ZHIPU_API_KEY'],
|
|
@@ -6995,16 +7838,15 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
6995
7838
|
toolCall: true,
|
|
6996
7839
|
reasoningText: true,
|
|
6997
7840
|
attachment: false,
|
|
6998
|
-
temperature:
|
|
7841
|
+
temperature: false,
|
|
6999
7842
|
knowledge: '2025-01',
|
|
7000
7843
|
releaseDate: '2026-01',
|
|
7001
7844
|
lastUpdated: '2026-01',
|
|
7002
7845
|
openWeights: true,
|
|
7003
7846
|
cost: {
|
|
7004
|
-
input: 0,
|
|
7005
|
-
output:
|
|
7006
|
-
cacheRead: 0,
|
|
7007
|
-
cacheWrite: 0,
|
|
7847
|
+
input: 0.6,
|
|
7848
|
+
output: 3,
|
|
7849
|
+
cacheRead: 0.1,
|
|
7008
7850
|
},
|
|
7009
7851
|
limit: {
|
|
7010
7852
|
context: 262144,
|
|
@@ -7018,4 +7860,470 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
7018
7860
|
api: 'https://api.moonshot.ai/v1',
|
|
7019
7861
|
doc: 'https://platform.moonshot.ai/docs/api/chat',
|
|
7020
7862
|
},
|
|
7863
|
+
copilot: {
|
|
7864
|
+
id: 'copilot',
|
|
7865
|
+
models: [
|
|
7866
|
+
{
|
|
7867
|
+
id: 'claude-haiku-4.5',
|
|
7868
|
+
label: 'Claude Haiku 4.5',
|
|
7869
|
+
modalities: {
|
|
7870
|
+
input: ['text', 'image'],
|
|
7871
|
+
output: ['text'],
|
|
7872
|
+
},
|
|
7873
|
+
toolCall: true,
|
|
7874
|
+
reasoningText: true,
|
|
7875
|
+
attachment: true,
|
|
7876
|
+
temperature: true,
|
|
7877
|
+
knowledge: '2025-02-28',
|
|
7878
|
+
releaseDate: '2025-10-15',
|
|
7879
|
+
lastUpdated: '2025-10-15',
|
|
7880
|
+
openWeights: false,
|
|
7881
|
+
cost: {
|
|
7882
|
+
input: 0,
|
|
7883
|
+
output: 0,
|
|
7884
|
+
},
|
|
7885
|
+
limit: {
|
|
7886
|
+
context: 128000,
|
|
7887
|
+
output: 16000,
|
|
7888
|
+
},
|
|
7889
|
+
},
|
|
7890
|
+
{
|
|
7891
|
+
id: 'claude-opus-4.5',
|
|
7892
|
+
label: 'Claude Opus 4.5',
|
|
7893
|
+
modalities: {
|
|
7894
|
+
input: ['text', 'image'],
|
|
7895
|
+
output: ['text'],
|
|
7896
|
+
},
|
|
7897
|
+
toolCall: true,
|
|
7898
|
+
reasoningText: true,
|
|
7899
|
+
attachment: true,
|
|
7900
|
+
temperature: true,
|
|
7901
|
+
knowledge: '2025-03-31',
|
|
7902
|
+
releaseDate: '2025-11-24',
|
|
7903
|
+
lastUpdated: '2025-08-01',
|
|
7904
|
+
openWeights: false,
|
|
7905
|
+
cost: {
|
|
7906
|
+
input: 0,
|
|
7907
|
+
output: 0,
|
|
7908
|
+
},
|
|
7909
|
+
limit: {
|
|
7910
|
+
context: 128000,
|
|
7911
|
+
output: 16000,
|
|
7912
|
+
},
|
|
7913
|
+
},
|
|
7914
|
+
{
|
|
7915
|
+
id: 'claude-opus-41',
|
|
7916
|
+
label: 'Claude Opus 4.1',
|
|
7917
|
+
modalities: {
|
|
7918
|
+
input: ['text', 'image'],
|
|
7919
|
+
output: ['text'],
|
|
7920
|
+
},
|
|
7921
|
+
toolCall: false,
|
|
7922
|
+
reasoningText: true,
|
|
7923
|
+
attachment: true,
|
|
7924
|
+
temperature: true,
|
|
7925
|
+
knowledge: '2025-03-31',
|
|
7926
|
+
releaseDate: '2025-08-05',
|
|
7927
|
+
lastUpdated: '2025-08-05',
|
|
7928
|
+
openWeights: false,
|
|
7929
|
+
cost: {
|
|
7930
|
+
input: 0,
|
|
7931
|
+
output: 0,
|
|
7932
|
+
},
|
|
7933
|
+
limit: {
|
|
7934
|
+
context: 80000,
|
|
7935
|
+
output: 16000,
|
|
7936
|
+
},
|
|
7937
|
+
},
|
|
7938
|
+
{
|
|
7939
|
+
id: 'claude-sonnet-4',
|
|
7940
|
+
label: 'Claude Sonnet 4',
|
|
7941
|
+
modalities: {
|
|
7942
|
+
input: ['text', 'image'],
|
|
7943
|
+
output: ['text'],
|
|
7944
|
+
},
|
|
7945
|
+
toolCall: true,
|
|
7946
|
+
reasoningText: true,
|
|
7947
|
+
attachment: true,
|
|
7948
|
+
temperature: true,
|
|
7949
|
+
knowledge: '2025-03-31',
|
|
7950
|
+
releaseDate: '2025-05-22',
|
|
7951
|
+
lastUpdated: '2025-05-22',
|
|
7952
|
+
openWeights: false,
|
|
7953
|
+
cost: {
|
|
7954
|
+
input: 0,
|
|
7955
|
+
output: 0,
|
|
7956
|
+
},
|
|
7957
|
+
limit: {
|
|
7958
|
+
context: 128000,
|
|
7959
|
+
output: 16000,
|
|
7960
|
+
},
|
|
7961
|
+
},
|
|
7962
|
+
{
|
|
7963
|
+
id: 'claude-sonnet-4.5',
|
|
7964
|
+
label: 'Claude Sonnet 4.5',
|
|
7965
|
+
modalities: {
|
|
7966
|
+
input: ['text', 'image'],
|
|
7967
|
+
output: ['text'],
|
|
7968
|
+
},
|
|
7969
|
+
toolCall: true,
|
|
7970
|
+
reasoningText: true,
|
|
7971
|
+
attachment: true,
|
|
7972
|
+
temperature: true,
|
|
7973
|
+
knowledge: '2025-03-31',
|
|
7974
|
+
releaseDate: '2025-09-29',
|
|
7975
|
+
lastUpdated: '2025-09-29',
|
|
7976
|
+
openWeights: false,
|
|
7977
|
+
cost: {
|
|
7978
|
+
input: 0,
|
|
7979
|
+
output: 0,
|
|
7980
|
+
},
|
|
7981
|
+
limit: {
|
|
7982
|
+
context: 128000,
|
|
7983
|
+
output: 16000,
|
|
7984
|
+
},
|
|
7985
|
+
},
|
|
7986
|
+
{
|
|
7987
|
+
id: 'gemini-2.5-pro',
|
|
7988
|
+
label: 'Gemini 2.5 Pro',
|
|
7989
|
+
modalities: {
|
|
7990
|
+
input: ['text', 'image', 'audio', 'video'],
|
|
7991
|
+
output: ['text'],
|
|
7992
|
+
},
|
|
7993
|
+
toolCall: true,
|
|
7994
|
+
reasoningText: false,
|
|
7995
|
+
attachment: true,
|
|
7996
|
+
temperature: true,
|
|
7997
|
+
knowledge: '2025-01',
|
|
7998
|
+
releaseDate: '2025-03-20',
|
|
7999
|
+
lastUpdated: '2025-06-05',
|
|
8000
|
+
openWeights: false,
|
|
8001
|
+
cost: {
|
|
8002
|
+
input: 0,
|
|
8003
|
+
output: 0,
|
|
8004
|
+
},
|
|
8005
|
+
limit: {
|
|
8006
|
+
context: 128000,
|
|
8007
|
+
output: 64000,
|
|
8008
|
+
},
|
|
8009
|
+
},
|
|
8010
|
+
{
|
|
8011
|
+
id: 'gemini-3-flash-preview',
|
|
8012
|
+
label: 'Gemini 3 Flash',
|
|
8013
|
+
modalities: {
|
|
8014
|
+
input: ['text', 'image', 'audio', 'video'],
|
|
8015
|
+
output: ['text'],
|
|
8016
|
+
},
|
|
8017
|
+
toolCall: true,
|
|
8018
|
+
reasoningText: true,
|
|
8019
|
+
attachment: true,
|
|
8020
|
+
temperature: true,
|
|
8021
|
+
knowledge: '2025-01',
|
|
8022
|
+
releaseDate: '2025-12-17',
|
|
8023
|
+
lastUpdated: '2025-12-17',
|
|
8024
|
+
openWeights: false,
|
|
8025
|
+
cost: {
|
|
8026
|
+
input: 0,
|
|
8027
|
+
output: 0,
|
|
8028
|
+
},
|
|
8029
|
+
limit: {
|
|
8030
|
+
context: 128000,
|
|
8031
|
+
output: 64000,
|
|
8032
|
+
},
|
|
8033
|
+
},
|
|
8034
|
+
{
|
|
8035
|
+
id: 'gemini-3-pro-preview',
|
|
8036
|
+
label: 'Gemini 3 Pro Preview',
|
|
8037
|
+
modalities: {
|
|
8038
|
+
input: ['text', 'image', 'audio', 'video'],
|
|
8039
|
+
output: ['text'],
|
|
8040
|
+
},
|
|
8041
|
+
toolCall: true,
|
|
8042
|
+
reasoningText: true,
|
|
8043
|
+
attachment: true,
|
|
8044
|
+
temperature: true,
|
|
8045
|
+
knowledge: '2025-01',
|
|
8046
|
+
releaseDate: '2025-11-18',
|
|
8047
|
+
lastUpdated: '2025-11-18',
|
|
8048
|
+
openWeights: false,
|
|
8049
|
+
cost: {
|
|
8050
|
+
input: 0,
|
|
8051
|
+
output: 0,
|
|
8052
|
+
},
|
|
8053
|
+
limit: {
|
|
8054
|
+
context: 128000,
|
|
8055
|
+
output: 64000,
|
|
8056
|
+
},
|
|
8057
|
+
},
|
|
8058
|
+
{
|
|
8059
|
+
id: 'gpt-4.1',
|
|
8060
|
+
label: 'GPT-4.1',
|
|
8061
|
+
modalities: {
|
|
8062
|
+
input: ['text', 'image'],
|
|
8063
|
+
output: ['text'],
|
|
8064
|
+
},
|
|
8065
|
+
toolCall: true,
|
|
8066
|
+
reasoningText: false,
|
|
8067
|
+
attachment: true,
|
|
8068
|
+
temperature: true,
|
|
8069
|
+
knowledge: '2024-04',
|
|
8070
|
+
releaseDate: '2025-04-14',
|
|
8071
|
+
lastUpdated: '2025-04-14',
|
|
8072
|
+
openWeights: false,
|
|
8073
|
+
cost: {
|
|
8074
|
+
input: 0,
|
|
8075
|
+
output: 0,
|
|
8076
|
+
},
|
|
8077
|
+
limit: {
|
|
8078
|
+
context: 64000,
|
|
8079
|
+
output: 16384,
|
|
8080
|
+
},
|
|
8081
|
+
},
|
|
8082
|
+
{
|
|
8083
|
+
id: 'gpt-4o',
|
|
8084
|
+
label: 'GPT-4o',
|
|
8085
|
+
modalities: {
|
|
8086
|
+
input: ['text', 'image'],
|
|
8087
|
+
output: ['text'],
|
|
8088
|
+
},
|
|
8089
|
+
toolCall: true,
|
|
8090
|
+
reasoningText: false,
|
|
8091
|
+
attachment: true,
|
|
8092
|
+
temperature: true,
|
|
8093
|
+
knowledge: '2023-09',
|
|
8094
|
+
releaseDate: '2024-05-13',
|
|
8095
|
+
lastUpdated: '2024-05-13',
|
|
8096
|
+
openWeights: false,
|
|
8097
|
+
cost: {
|
|
8098
|
+
input: 0,
|
|
8099
|
+
output: 0,
|
|
8100
|
+
},
|
|
8101
|
+
limit: {
|
|
8102
|
+
context: 64000,
|
|
8103
|
+
output: 16384,
|
|
8104
|
+
},
|
|
8105
|
+
},
|
|
8106
|
+
{
|
|
8107
|
+
id: 'gpt-5',
|
|
8108
|
+
label: 'GPT-5',
|
|
8109
|
+
modalities: {
|
|
8110
|
+
input: ['text', 'image'],
|
|
8111
|
+
output: ['text'],
|
|
8112
|
+
},
|
|
8113
|
+
toolCall: true,
|
|
8114
|
+
reasoningText: true,
|
|
8115
|
+
attachment: true,
|
|
8116
|
+
temperature: true,
|
|
8117
|
+
knowledge: '2024-10',
|
|
8118
|
+
releaseDate: '2025-08-07',
|
|
8119
|
+
lastUpdated: '2025-08-07',
|
|
8120
|
+
openWeights: false,
|
|
8121
|
+
cost: {
|
|
8122
|
+
input: 0,
|
|
8123
|
+
output: 0,
|
|
8124
|
+
},
|
|
8125
|
+
limit: {
|
|
8126
|
+
context: 128000,
|
|
8127
|
+
output: 128000,
|
|
8128
|
+
},
|
|
8129
|
+
},
|
|
8130
|
+
{
|
|
8131
|
+
id: 'gpt-5-mini',
|
|
8132
|
+
label: 'GPT-5-mini',
|
|
8133
|
+
modalities: {
|
|
8134
|
+
input: ['text', 'image'],
|
|
8135
|
+
output: ['text'],
|
|
8136
|
+
},
|
|
8137
|
+
toolCall: true,
|
|
8138
|
+
reasoningText: true,
|
|
8139
|
+
attachment: true,
|
|
8140
|
+
temperature: true,
|
|
8141
|
+
knowledge: '2024-06',
|
|
8142
|
+
releaseDate: '2025-08-13',
|
|
8143
|
+
lastUpdated: '2025-08-13',
|
|
8144
|
+
openWeights: false,
|
|
8145
|
+
cost: {
|
|
8146
|
+
input: 0,
|
|
8147
|
+
output: 0,
|
|
8148
|
+
},
|
|
8149
|
+
limit: {
|
|
8150
|
+
context: 128000,
|
|
8151
|
+
output: 64000,
|
|
8152
|
+
},
|
|
8153
|
+
},
|
|
8154
|
+
{
|
|
8155
|
+
id: 'gpt-5.1',
|
|
8156
|
+
label: 'GPT-5.1',
|
|
8157
|
+
modalities: {
|
|
8158
|
+
input: ['text', 'image'],
|
|
8159
|
+
output: ['text'],
|
|
8160
|
+
},
|
|
8161
|
+
toolCall: true,
|
|
8162
|
+
reasoningText: true,
|
|
8163
|
+
attachment: true,
|
|
8164
|
+
temperature: false,
|
|
8165
|
+
knowledge: '2024-09-30',
|
|
8166
|
+
releaseDate: '2025-11-13',
|
|
8167
|
+
lastUpdated: '2025-11-13',
|
|
8168
|
+
openWeights: false,
|
|
8169
|
+
cost: {
|
|
8170
|
+
input: 0,
|
|
8171
|
+
output: 0,
|
|
8172
|
+
},
|
|
8173
|
+
limit: {
|
|
8174
|
+
context: 128000,
|
|
8175
|
+
output: 128000,
|
|
8176
|
+
},
|
|
8177
|
+
},
|
|
8178
|
+
{
|
|
8179
|
+
id: 'gpt-5.1-codex',
|
|
8180
|
+
label: 'GPT-5.1-Codex',
|
|
8181
|
+
modalities: {
|
|
8182
|
+
input: ['text', 'image'],
|
|
8183
|
+
output: ['text'],
|
|
8184
|
+
},
|
|
8185
|
+
toolCall: true,
|
|
8186
|
+
reasoningText: true,
|
|
8187
|
+
attachment: false,
|
|
8188
|
+
temperature: false,
|
|
8189
|
+
knowledge: '2024-09-30',
|
|
8190
|
+
releaseDate: '2025-11-13',
|
|
8191
|
+
lastUpdated: '2025-11-13',
|
|
8192
|
+
openWeights: false,
|
|
8193
|
+
cost: {
|
|
8194
|
+
input: 0,
|
|
8195
|
+
output: 0,
|
|
8196
|
+
},
|
|
8197
|
+
limit: {
|
|
8198
|
+
context: 128000,
|
|
8199
|
+
output: 128000,
|
|
8200
|
+
},
|
|
8201
|
+
},
|
|
8202
|
+
{
|
|
8203
|
+
id: 'gpt-5.1-codex-max',
|
|
8204
|
+
label: 'GPT-5.1-Codex-max',
|
|
8205
|
+
modalities: {
|
|
8206
|
+
input: ['text', 'image'],
|
|
8207
|
+
output: ['text'],
|
|
8208
|
+
},
|
|
8209
|
+
toolCall: true,
|
|
8210
|
+
reasoningText: true,
|
|
8211
|
+
attachment: true,
|
|
8212
|
+
temperature: false,
|
|
8213
|
+
knowledge: '2024-09-30',
|
|
8214
|
+
releaseDate: '2025-12-04',
|
|
8215
|
+
lastUpdated: '2025-12-04',
|
|
8216
|
+
openWeights: false,
|
|
8217
|
+
cost: {
|
|
8218
|
+
input: 0,
|
|
8219
|
+
output: 0,
|
|
8220
|
+
},
|
|
8221
|
+
limit: {
|
|
8222
|
+
context: 128000,
|
|
8223
|
+
output: 128000,
|
|
8224
|
+
},
|
|
8225
|
+
},
|
|
8226
|
+
{
|
|
8227
|
+
id: 'gpt-5.1-codex-mini',
|
|
8228
|
+
label: 'GPT-5.1-Codex-mini',
|
|
8229
|
+
modalities: {
|
|
8230
|
+
input: ['text', 'image'],
|
|
8231
|
+
output: ['text'],
|
|
8232
|
+
},
|
|
8233
|
+
toolCall: true,
|
|
8234
|
+
reasoningText: true,
|
|
8235
|
+
attachment: false,
|
|
8236
|
+
temperature: false,
|
|
8237
|
+
knowledge: '2024-09-30',
|
|
8238
|
+
releaseDate: '2025-11-13',
|
|
8239
|
+
lastUpdated: '2025-11-13',
|
|
8240
|
+
openWeights: false,
|
|
8241
|
+
cost: {
|
|
8242
|
+
input: 0,
|
|
8243
|
+
output: 0,
|
|
8244
|
+
},
|
|
8245
|
+
limit: {
|
|
8246
|
+
context: 128000,
|
|
8247
|
+
output: 100000,
|
|
8248
|
+
},
|
|
8249
|
+
},
|
|
8250
|
+
{
|
|
8251
|
+
id: 'gpt-5.2',
|
|
8252
|
+
label: 'GPT-5.2',
|
|
8253
|
+
modalities: {
|
|
8254
|
+
input: ['text', 'image'],
|
|
8255
|
+
output: ['text'],
|
|
8256
|
+
},
|
|
8257
|
+
toolCall: true,
|
|
8258
|
+
reasoningText: true,
|
|
8259
|
+
attachment: true,
|
|
8260
|
+
temperature: false,
|
|
8261
|
+
knowledge: '2025-08-31',
|
|
8262
|
+
releaseDate: '2025-12-11',
|
|
8263
|
+
lastUpdated: '2025-12-11',
|
|
8264
|
+
openWeights: false,
|
|
8265
|
+
cost: {
|
|
8266
|
+
input: 0,
|
|
8267
|
+
output: 0,
|
|
8268
|
+
},
|
|
8269
|
+
limit: {
|
|
8270
|
+
context: 128000,
|
|
8271
|
+
output: 64000,
|
|
8272
|
+
},
|
|
8273
|
+
},
|
|
8274
|
+
{
|
|
8275
|
+
id: 'gpt-5.2-codex',
|
|
8276
|
+
label: 'GPT-5.2-Codex',
|
|
8277
|
+
modalities: {
|
|
8278
|
+
input: ['text', 'image'],
|
|
8279
|
+
output: ['text'],
|
|
8280
|
+
},
|
|
8281
|
+
toolCall: true,
|
|
8282
|
+
reasoningText: true,
|
|
8283
|
+
attachment: false,
|
|
8284
|
+
temperature: false,
|
|
8285
|
+
knowledge: '2025-08-31',
|
|
8286
|
+
releaseDate: '2025-12-11',
|
|
8287
|
+
lastUpdated: '2025-12-11',
|
|
8288
|
+
openWeights: false,
|
|
8289
|
+
cost: {
|
|
8290
|
+
input: 0,
|
|
8291
|
+
output: 0,
|
|
8292
|
+
},
|
|
8293
|
+
limit: {
|
|
8294
|
+
context: 272000,
|
|
8295
|
+
output: 128000,
|
|
8296
|
+
},
|
|
8297
|
+
},
|
|
8298
|
+
{
|
|
8299
|
+
id: 'grok-code-fast-1',
|
|
8300
|
+
label: 'Grok Code Fast 1',
|
|
8301
|
+
modalities: {
|
|
8302
|
+
input: ['text'],
|
|
8303
|
+
output: ['text'],
|
|
8304
|
+
},
|
|
8305
|
+
toolCall: true,
|
|
8306
|
+
reasoningText: true,
|
|
8307
|
+
attachment: false,
|
|
8308
|
+
temperature: true,
|
|
8309
|
+
knowledge: '2025-08',
|
|
8310
|
+
releaseDate: '2025-08-27',
|
|
8311
|
+
lastUpdated: '2025-08-27',
|
|
8312
|
+
openWeights: false,
|
|
8313
|
+
cost: {
|
|
8314
|
+
input: 0,
|
|
8315
|
+
output: 0,
|
|
8316
|
+
},
|
|
8317
|
+
limit: {
|
|
8318
|
+
context: 128000,
|
|
8319
|
+
output: 64000,
|
|
8320
|
+
},
|
|
8321
|
+
},
|
|
8322
|
+
],
|
|
8323
|
+
label: 'GitHub Copilot',
|
|
8324
|
+
env: ['GITHUB_TOKEN'],
|
|
8325
|
+
npm: '@ai-sdk/openai-compatible',
|
|
8326
|
+
api: 'https://api.githubcopilot.com',
|
|
8327
|
+
doc: 'https://docs.github.com/en/copilot',
|
|
8328
|
+
},
|
|
7021
8329
|
} as const satisfies Partial<Record<ProviderId, ProviderCatalogEntry>>;
|