@agi-cli/sdk 0.1.54 → 0.1.56

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.
Files changed (81) hide show
  1. package/package.json +53 -27
  2. package/src/agent/types.ts +1 -1
  3. package/src/auth/src/index.ts +70 -0
  4. package/src/auth/src/oauth.ts +172 -0
  5. package/src/config/src/index.ts +120 -0
  6. package/src/config/src/manager.ts +102 -0
  7. package/src/config/src/paths.ts +98 -0
  8. package/src/core/src/errors.ts +102 -0
  9. package/src/core/src/index.ts +75 -0
  10. package/src/core/src/providers/resolver.ts +84 -0
  11. package/src/core/src/streaming/artifacts.ts +41 -0
  12. package/src/core/src/tools/builtin/bash.ts +90 -0
  13. package/src/core/src/tools/builtin/bash.txt +7 -0
  14. package/src/core/src/tools/builtin/edit.ts +152 -0
  15. package/src/core/src/tools/builtin/edit.txt +7 -0
  16. package/src/core/src/tools/builtin/file-cache.ts +39 -0
  17. package/src/core/src/tools/builtin/finish.ts +11 -0
  18. package/src/core/src/tools/builtin/finish.txt +5 -0
  19. package/src/core/src/tools/builtin/fs/cd.ts +19 -0
  20. package/src/core/src/tools/builtin/fs/cd.txt +5 -0
  21. package/src/core/src/tools/builtin/fs/index.ts +20 -0
  22. package/src/core/src/tools/builtin/fs/ls.ts +60 -0
  23. package/src/core/src/tools/builtin/fs/ls.txt +8 -0
  24. package/src/core/src/tools/builtin/fs/pwd.ts +17 -0
  25. package/src/core/src/tools/builtin/fs/pwd.txt +5 -0
  26. package/src/core/src/tools/builtin/fs/read.ts +80 -0
  27. package/src/core/src/tools/builtin/fs/read.txt +8 -0
  28. package/src/core/src/tools/builtin/fs/tree.ts +71 -0
  29. package/src/core/src/tools/builtin/fs/tree.txt +8 -0
  30. package/src/core/src/tools/builtin/fs/util.ts +95 -0
  31. package/src/core/src/tools/builtin/fs/write.ts +61 -0
  32. package/src/core/src/tools/builtin/fs/write.txt +8 -0
  33. package/src/core/src/tools/builtin/git.commit.txt +6 -0
  34. package/src/core/src/tools/builtin/git.diff.txt +5 -0
  35. package/src/core/src/tools/builtin/git.status.txt +5 -0
  36. package/src/core/src/tools/builtin/git.ts +128 -0
  37. package/src/core/src/tools/builtin/grep.ts +140 -0
  38. package/src/core/src/tools/builtin/grep.txt +9 -0
  39. package/src/core/src/tools/builtin/ignore.ts +45 -0
  40. package/src/core/src/tools/builtin/patch.ts +269 -0
  41. package/src/core/src/tools/builtin/patch.txt +7 -0
  42. package/src/core/src/tools/builtin/plan.ts +58 -0
  43. package/src/core/src/tools/builtin/plan.txt +6 -0
  44. package/src/core/src/tools/builtin/progress.ts +55 -0
  45. package/src/core/src/tools/builtin/progress.txt +7 -0
  46. package/src/core/src/tools/builtin/ripgrep.ts +102 -0
  47. package/src/core/src/tools/builtin/ripgrep.txt +7 -0
  48. package/src/core/src/tools/builtin/websearch.ts +219 -0
  49. package/src/core/src/tools/builtin/websearch.txt +12 -0
  50. package/src/core/src/tools/loader.ts +398 -0
  51. package/src/core/src/types/index.ts +11 -0
  52. package/src/core/src/types/types.ts +4 -0
  53. package/src/index.ts +57 -58
  54. package/src/prompts/src/agents/build.txt +5 -0
  55. package/src/prompts/src/agents/general.txt +6 -0
  56. package/src/prompts/src/agents/plan.txt +13 -0
  57. package/src/prompts/src/base.txt +14 -0
  58. package/src/prompts/src/debug.ts +104 -0
  59. package/src/prompts/src/index.ts +1 -0
  60. package/src/prompts/src/modes/oneshot.txt +9 -0
  61. package/src/prompts/src/providers/anthropic.txt +151 -0
  62. package/src/prompts/src/providers/anthropicSpoof.txt +1 -0
  63. package/src/prompts/src/providers/default.txt +310 -0
  64. package/src/prompts/src/providers/google.txt +155 -0
  65. package/src/prompts/src/providers/openai.txt +310 -0
  66. package/src/prompts/src/providers.ts +116 -0
  67. package/src/providers/src/authorization.ts +17 -0
  68. package/src/providers/src/catalog.ts +4201 -0
  69. package/src/providers/src/env.ts +26 -0
  70. package/src/providers/src/index.ts +12 -0
  71. package/src/providers/src/pricing.ts +135 -0
  72. package/src/providers/src/utils.ts +24 -0
  73. package/src/providers/src/validate.ts +39 -0
  74. package/src/types/src/auth.ts +26 -0
  75. package/src/types/src/config.ts +40 -0
  76. package/src/types/src/index.ts +14 -0
  77. package/src/types/src/provider.ts +28 -0
  78. package/src/global.d.ts +0 -4
  79. package/src/tools/builtin/fs.ts +0 -1
  80. package/src/tools/builtin/git.ts +0 -1
  81. package/src/web-ui.ts +0 -8
@@ -0,0 +1,4201 @@
1
+ // AUTO-GENERATED by scripts/update-catalog.ts. Do not edit manually.
2
+
3
+ import type { ProviderId, ModelInfo } from '../../types/src/index.ts';
4
+
5
+ export const catalog: Record<ProviderId, { models: ModelInfo[] }> = {
6
+ openai: {
7
+ models: [
8
+ {
9
+ id: 'codex-mini-latest',
10
+ label: 'Codex Mini',
11
+ modalities: {
12
+ input: ['text'],
13
+ output: ['text'],
14
+ },
15
+ toolCall: true,
16
+ reasoning: true,
17
+ attachment: true,
18
+ temperature: false,
19
+ knowledge: '2024-04',
20
+ releaseDate: '2025-05-16',
21
+ lastUpdated: '2025-05-16',
22
+ openWeights: false,
23
+ cost: {
24
+ input: 1.5,
25
+ output: 6,
26
+ cacheRead: 0.375,
27
+ },
28
+ limit: {
29
+ context: 200000,
30
+ output: 100000,
31
+ },
32
+ },
33
+ {
34
+ id: 'gpt-3.5-turbo',
35
+ label: 'GPT-3.5-turbo',
36
+ modalities: {
37
+ input: ['text'],
38
+ output: ['text'],
39
+ },
40
+ toolCall: false,
41
+ reasoning: false,
42
+ attachment: false,
43
+ temperature: true,
44
+ knowledge: '2021-09-01',
45
+ releaseDate: '2023-03-01',
46
+ lastUpdated: '2023-11-06',
47
+ openWeights: false,
48
+ cost: {
49
+ input: 0.5,
50
+ output: 1.5,
51
+ cacheRead: 1.25,
52
+ },
53
+ limit: {
54
+ context: 16385,
55
+ output: 4096,
56
+ },
57
+ },
58
+ {
59
+ id: 'gpt-4',
60
+ label: 'GPT-4',
61
+ modalities: {
62
+ input: ['text'],
63
+ output: ['text'],
64
+ },
65
+ toolCall: true,
66
+ reasoning: false,
67
+ attachment: true,
68
+ temperature: true,
69
+ knowledge: '2023-11',
70
+ releaseDate: '2023-11-06',
71
+ lastUpdated: '2024-04-09',
72
+ openWeights: false,
73
+ cost: {
74
+ input: 30,
75
+ output: 60,
76
+ },
77
+ limit: {
78
+ context: 8192,
79
+ output: 8192,
80
+ },
81
+ },
82
+ {
83
+ id: 'gpt-4-turbo',
84
+ label: 'GPT-4 Turbo',
85
+ modalities: {
86
+ input: ['text', 'image'],
87
+ output: ['text'],
88
+ },
89
+ toolCall: true,
90
+ reasoning: false,
91
+ attachment: true,
92
+ temperature: true,
93
+ knowledge: '2023-12',
94
+ releaseDate: '2023-11-06',
95
+ lastUpdated: '2024-04-09',
96
+ openWeights: false,
97
+ cost: {
98
+ input: 10,
99
+ output: 30,
100
+ },
101
+ limit: {
102
+ context: 128000,
103
+ output: 4096,
104
+ },
105
+ },
106
+ {
107
+ id: 'gpt-4.1',
108
+ label: 'GPT-4.1',
109
+ modalities: {
110
+ input: ['text', 'image'],
111
+ output: ['text'],
112
+ },
113
+ toolCall: true,
114
+ reasoning: false,
115
+ attachment: true,
116
+ temperature: true,
117
+ knowledge: '2024-04',
118
+ releaseDate: '2025-04-14',
119
+ lastUpdated: '2025-04-14',
120
+ openWeights: false,
121
+ cost: {
122
+ input: 2,
123
+ output: 8,
124
+ cacheRead: 0.5,
125
+ },
126
+ limit: {
127
+ context: 1047576,
128
+ output: 32768,
129
+ },
130
+ },
131
+ {
132
+ id: 'gpt-4.1-mini',
133
+ label: 'GPT-4.1 mini',
134
+ modalities: {
135
+ input: ['text', 'image'],
136
+ output: ['text'],
137
+ },
138
+ toolCall: true,
139
+ reasoning: false,
140
+ attachment: true,
141
+ temperature: true,
142
+ knowledge: '2024-04',
143
+ releaseDate: '2025-04-14',
144
+ lastUpdated: '2025-04-14',
145
+ openWeights: false,
146
+ cost: {
147
+ input: 0.4,
148
+ output: 1.6,
149
+ cacheRead: 0.1,
150
+ },
151
+ limit: {
152
+ context: 1047576,
153
+ output: 32768,
154
+ },
155
+ },
156
+ {
157
+ id: 'gpt-4.1-nano',
158
+ label: 'GPT-4.1 nano',
159
+ modalities: {
160
+ input: ['text', 'image'],
161
+ output: ['text'],
162
+ },
163
+ toolCall: true,
164
+ reasoning: false,
165
+ attachment: true,
166
+ temperature: true,
167
+ knowledge: '2024-04',
168
+ releaseDate: '2025-04-14',
169
+ lastUpdated: '2025-04-14',
170
+ openWeights: false,
171
+ cost: {
172
+ input: 0.1,
173
+ output: 0.4,
174
+ cacheRead: 0.03,
175
+ },
176
+ limit: {
177
+ context: 1047576,
178
+ output: 32768,
179
+ },
180
+ },
181
+ {
182
+ id: 'gpt-4o',
183
+ label: 'GPT-4o',
184
+ modalities: {
185
+ input: ['text', 'image'],
186
+ output: ['text'],
187
+ },
188
+ toolCall: true,
189
+ reasoning: false,
190
+ attachment: true,
191
+ temperature: true,
192
+ knowledge: '2023-09',
193
+ releaseDate: '2024-05-13',
194
+ lastUpdated: '2024-08-06',
195
+ openWeights: false,
196
+ cost: {
197
+ input: 2.5,
198
+ output: 10,
199
+ cacheRead: 1.25,
200
+ },
201
+ limit: {
202
+ context: 128000,
203
+ output: 16384,
204
+ },
205
+ },
206
+ {
207
+ id: 'gpt-4o-2024-05-13',
208
+ label: 'GPT-4o (2024-05-13)',
209
+ modalities: {
210
+ input: ['text', 'image'],
211
+ output: ['text'],
212
+ },
213
+ toolCall: true,
214
+ reasoning: false,
215
+ attachment: true,
216
+ temperature: true,
217
+ knowledge: '2023-09',
218
+ releaseDate: '2024-05-13',
219
+ lastUpdated: '2024-05-13',
220
+ openWeights: false,
221
+ cost: {
222
+ input: 5,
223
+ output: 15,
224
+ },
225
+ limit: {
226
+ context: 128000,
227
+ output: 4096,
228
+ },
229
+ },
230
+ {
231
+ id: 'gpt-4o-2024-08-06',
232
+ label: 'GPT-4o (2024-08-06)',
233
+ modalities: {
234
+ input: ['text', 'image'],
235
+ output: ['text'],
236
+ },
237
+ toolCall: true,
238
+ reasoning: false,
239
+ attachment: true,
240
+ temperature: true,
241
+ knowledge: '2023-09',
242
+ releaseDate: '2024-08-06',
243
+ lastUpdated: '2024-08-06',
244
+ openWeights: false,
245
+ cost: {
246
+ input: 2.5,
247
+ output: 10,
248
+ cacheRead: 1.25,
249
+ },
250
+ limit: {
251
+ context: 128000,
252
+ output: 16384,
253
+ },
254
+ },
255
+ {
256
+ id: 'gpt-4o-2024-11-20',
257
+ label: 'GPT-4o (2024-11-20)',
258
+ modalities: {
259
+ input: ['text', 'image'],
260
+ output: ['text'],
261
+ },
262
+ toolCall: true,
263
+ reasoning: false,
264
+ attachment: true,
265
+ temperature: true,
266
+ knowledge: '2023-09',
267
+ releaseDate: '2024-11-20',
268
+ lastUpdated: '2024-11-20',
269
+ openWeights: false,
270
+ cost: {
271
+ input: 2.5,
272
+ output: 10,
273
+ cacheRead: 1.25,
274
+ },
275
+ limit: {
276
+ context: 128000,
277
+ output: 16384,
278
+ },
279
+ },
280
+ {
281
+ id: 'gpt-4o-mini',
282
+ label: 'GPT-4o mini',
283
+ modalities: {
284
+ input: ['text', 'image'],
285
+ output: ['text'],
286
+ },
287
+ toolCall: true,
288
+ reasoning: false,
289
+ attachment: true,
290
+ temperature: true,
291
+ knowledge: '2023-09',
292
+ releaseDate: '2024-07-18',
293
+ lastUpdated: '2024-07-18',
294
+ openWeights: false,
295
+ cost: {
296
+ input: 0.15,
297
+ output: 0.6,
298
+ cacheRead: 0.08,
299
+ },
300
+ limit: {
301
+ context: 128000,
302
+ output: 16384,
303
+ },
304
+ },
305
+ {
306
+ id: 'gpt-5',
307
+ label: 'GPT-5',
308
+ modalities: {
309
+ input: ['text', 'image'],
310
+ output: ['text'],
311
+ },
312
+ toolCall: true,
313
+ reasoning: true,
314
+ attachment: true,
315
+ temperature: false,
316
+ knowledge: '2024-09-30',
317
+ releaseDate: '2025-08-07',
318
+ lastUpdated: '2025-08-07',
319
+ openWeights: false,
320
+ cost: {
321
+ input: 1.25,
322
+ output: 10,
323
+ cacheRead: 0.13,
324
+ },
325
+ limit: {
326
+ context: 400000,
327
+ output: 128000,
328
+ },
329
+ },
330
+ {
331
+ id: 'gpt-5-chat-latest',
332
+ label: 'GPT-5 Chat (latest)',
333
+ modalities: {
334
+ input: ['text', 'image'],
335
+ output: ['text'],
336
+ },
337
+ toolCall: false,
338
+ reasoning: true,
339
+ attachment: true,
340
+ temperature: true,
341
+ knowledge: '2024-09-30',
342
+ releaseDate: '2025-08-07',
343
+ lastUpdated: '2025-08-07',
344
+ openWeights: false,
345
+ cost: {
346
+ input: 1.25,
347
+ output: 10,
348
+ },
349
+ limit: {
350
+ context: 400000,
351
+ output: 128000,
352
+ },
353
+ },
354
+ {
355
+ id: 'gpt-5-codex',
356
+ label: 'GPT-5-Codex',
357
+ modalities: {
358
+ input: ['text', 'image'],
359
+ output: ['text'],
360
+ },
361
+ toolCall: true,
362
+ reasoning: true,
363
+ attachment: false,
364
+ temperature: false,
365
+ knowledge: '2024-09-30',
366
+ releaseDate: '2025-09-15',
367
+ lastUpdated: '2025-09-15',
368
+ openWeights: false,
369
+ limit: {
370
+ context: 400000,
371
+ output: 128000,
372
+ },
373
+ },
374
+ {
375
+ id: 'gpt-5-mini',
376
+ label: 'GPT-5 Mini',
377
+ modalities: {
378
+ input: ['text', 'image'],
379
+ output: ['text'],
380
+ },
381
+ toolCall: true,
382
+ reasoning: true,
383
+ attachment: true,
384
+ temperature: false,
385
+ knowledge: '2024-05-30',
386
+ releaseDate: '2025-08-07',
387
+ lastUpdated: '2025-08-07',
388
+ openWeights: false,
389
+ cost: {
390
+ input: 0.25,
391
+ output: 2,
392
+ cacheRead: 0.03,
393
+ },
394
+ limit: {
395
+ context: 400000,
396
+ output: 128000,
397
+ },
398
+ },
399
+ {
400
+ id: 'gpt-5-nano',
401
+ label: 'GPT-5 Nano',
402
+ modalities: {
403
+ input: ['text', 'image'],
404
+ output: ['text'],
405
+ },
406
+ toolCall: true,
407
+ reasoning: true,
408
+ attachment: true,
409
+ temperature: false,
410
+ knowledge: '2024-05-30',
411
+ releaseDate: '2025-08-07',
412
+ lastUpdated: '2025-08-07',
413
+ openWeights: false,
414
+ cost: {
415
+ input: 0.05,
416
+ output: 0.4,
417
+ cacheRead: 0.01,
418
+ },
419
+ limit: {
420
+ context: 400000,
421
+ output: 128000,
422
+ },
423
+ },
424
+ {
425
+ id: 'o1',
426
+ label: 'o1',
427
+ modalities: {
428
+ input: ['text', 'image'],
429
+ output: ['text'],
430
+ },
431
+ toolCall: true,
432
+ reasoning: true,
433
+ attachment: true,
434
+ temperature: false,
435
+ knowledge: '2023-09',
436
+ releaseDate: '2024-12-05',
437
+ lastUpdated: '2024-12-05',
438
+ openWeights: false,
439
+ cost: {
440
+ input: 15,
441
+ output: 60,
442
+ cacheRead: 7.5,
443
+ },
444
+ limit: {
445
+ context: 200000,
446
+ output: 100000,
447
+ },
448
+ },
449
+ {
450
+ id: 'o1-mini',
451
+ label: 'o1-mini',
452
+ modalities: {
453
+ input: ['text'],
454
+ output: ['text'],
455
+ },
456
+ toolCall: false,
457
+ reasoning: true,
458
+ attachment: false,
459
+ temperature: false,
460
+ knowledge: '2023-09',
461
+ releaseDate: '2024-09-12',
462
+ lastUpdated: '2024-09-12',
463
+ openWeights: false,
464
+ cost: {
465
+ input: 1.1,
466
+ output: 4.4,
467
+ cacheRead: 0.55,
468
+ },
469
+ limit: {
470
+ context: 128000,
471
+ output: 65536,
472
+ },
473
+ },
474
+ {
475
+ id: 'o1-preview',
476
+ label: 'o1-preview',
477
+ modalities: {
478
+ input: ['text'],
479
+ output: ['text'],
480
+ },
481
+ toolCall: false,
482
+ reasoning: true,
483
+ attachment: false,
484
+ temperature: true,
485
+ knowledge: '2023-09',
486
+ releaseDate: '2024-09-12',
487
+ lastUpdated: '2024-09-12',
488
+ openWeights: false,
489
+ cost: {
490
+ input: 15,
491
+ output: 60,
492
+ cacheRead: 7.5,
493
+ },
494
+ limit: {
495
+ context: 128000,
496
+ output: 32768,
497
+ },
498
+ },
499
+ {
500
+ id: 'o1-pro',
501
+ label: 'o1-pro',
502
+ modalities: {
503
+ input: ['text', 'image'],
504
+ output: ['text'],
505
+ },
506
+ toolCall: true,
507
+ reasoning: true,
508
+ attachment: true,
509
+ temperature: false,
510
+ knowledge: '2023-09',
511
+ releaseDate: '2025-03-19',
512
+ lastUpdated: '2025-03-19',
513
+ openWeights: false,
514
+ cost: {
515
+ input: 150,
516
+ output: 600,
517
+ },
518
+ limit: {
519
+ context: 200000,
520
+ output: 100000,
521
+ },
522
+ },
523
+ {
524
+ id: 'o3',
525
+ label: 'o3',
526
+ modalities: {
527
+ input: ['text', 'image'],
528
+ output: ['text'],
529
+ },
530
+ toolCall: true,
531
+ reasoning: true,
532
+ attachment: true,
533
+ temperature: false,
534
+ knowledge: '2024-05',
535
+ releaseDate: '2025-04-16',
536
+ lastUpdated: '2025-04-16',
537
+ openWeights: false,
538
+ cost: {
539
+ input: 2,
540
+ output: 8,
541
+ cacheRead: 0.5,
542
+ },
543
+ limit: {
544
+ context: 200000,
545
+ output: 100000,
546
+ },
547
+ },
548
+ {
549
+ id: 'o3-deep-research',
550
+ label: 'o3-deep-research',
551
+ modalities: {
552
+ input: ['text', 'image'],
553
+ output: ['text'],
554
+ },
555
+ toolCall: true,
556
+ reasoning: true,
557
+ attachment: true,
558
+ temperature: false,
559
+ knowledge: '2024-05',
560
+ releaseDate: '2024-06-26',
561
+ lastUpdated: '2024-06-26',
562
+ openWeights: false,
563
+ cost: {
564
+ input: 10,
565
+ output: 40,
566
+ cacheRead: 2.5,
567
+ },
568
+ limit: {
569
+ context: 200000,
570
+ output: 100000,
571
+ },
572
+ },
573
+ {
574
+ id: 'o3-mini',
575
+ label: 'o3-mini',
576
+ modalities: {
577
+ input: ['text'],
578
+ output: ['text'],
579
+ },
580
+ toolCall: true,
581
+ reasoning: true,
582
+ attachment: false,
583
+ temperature: false,
584
+ knowledge: '2024-05',
585
+ releaseDate: '2024-12-20',
586
+ lastUpdated: '2025-01-29',
587
+ openWeights: false,
588
+ cost: {
589
+ input: 1.1,
590
+ output: 4.4,
591
+ cacheRead: 0.55,
592
+ },
593
+ limit: {
594
+ context: 200000,
595
+ output: 100000,
596
+ },
597
+ },
598
+ {
599
+ id: 'o3-pro',
600
+ label: 'o3-pro',
601
+ modalities: {
602
+ input: ['text', 'image'],
603
+ output: ['text'],
604
+ },
605
+ toolCall: true,
606
+ reasoning: true,
607
+ attachment: true,
608
+ temperature: false,
609
+ knowledge: '2024-05',
610
+ releaseDate: '2025-06-10',
611
+ lastUpdated: '2025-06-10',
612
+ openWeights: false,
613
+ cost: {
614
+ input: 20,
615
+ output: 80,
616
+ },
617
+ limit: {
618
+ context: 200000,
619
+ output: 100000,
620
+ },
621
+ },
622
+ {
623
+ id: 'o4-mini',
624
+ label: 'o4-mini',
625
+ modalities: {
626
+ input: ['text', 'image'],
627
+ output: ['text'],
628
+ },
629
+ toolCall: true,
630
+ reasoning: true,
631
+ attachment: true,
632
+ temperature: false,
633
+ knowledge: '2024-05',
634
+ releaseDate: '2025-04-16',
635
+ lastUpdated: '2025-04-16',
636
+ openWeights: false,
637
+ cost: {
638
+ input: 1.1,
639
+ output: 4.4,
640
+ cacheRead: 0.28,
641
+ },
642
+ limit: {
643
+ context: 200000,
644
+ output: 100000,
645
+ },
646
+ },
647
+ {
648
+ id: 'o4-mini-deep-research',
649
+ label: 'o4-mini-deep-research',
650
+ modalities: {
651
+ input: ['text', 'image'],
652
+ output: ['text'],
653
+ },
654
+ toolCall: true,
655
+ reasoning: true,
656
+ attachment: true,
657
+ temperature: false,
658
+ knowledge: '2024-05',
659
+ releaseDate: '2024-06-26',
660
+ lastUpdated: '2024-06-26',
661
+ openWeights: false,
662
+ cost: {
663
+ input: 2,
664
+ output: 8,
665
+ cacheRead: 0.5,
666
+ },
667
+ limit: {
668
+ context: 200000,
669
+ output: 100000,
670
+ },
671
+ },
672
+ ],
673
+ },
674
+ anthropic: {
675
+ models: [
676
+ {
677
+ id: 'claude-3-5-haiku-20241022',
678
+ label: 'Claude Haiku 3.5',
679
+ modalities: {
680
+ input: ['text', 'image'],
681
+ output: ['text'],
682
+ },
683
+ toolCall: true,
684
+ reasoning: false,
685
+ attachment: true,
686
+ temperature: true,
687
+ knowledge: '2024-07-31',
688
+ releaseDate: '2024-10-22',
689
+ lastUpdated: '2024-10-22',
690
+ openWeights: false,
691
+ cost: {
692
+ input: 0.8,
693
+ output: 4,
694
+ cacheRead: 0.08,
695
+ },
696
+ limit: {
697
+ context: 200000,
698
+ output: 8192,
699
+ },
700
+ },
701
+ {
702
+ id: 'claude-3-5-sonnet-20240620',
703
+ label: 'Claude Sonnet 3.5',
704
+ modalities: {
705
+ input: ['text', 'image'],
706
+ output: ['text'],
707
+ },
708
+ toolCall: true,
709
+ reasoning: false,
710
+ attachment: true,
711
+ temperature: true,
712
+ knowledge: '2024-04-30',
713
+ releaseDate: '2024-06-20',
714
+ lastUpdated: '2024-06-20',
715
+ openWeights: false,
716
+ cost: {
717
+ input: 3,
718
+ output: 15,
719
+ cacheRead: 0.3,
720
+ },
721
+ limit: {
722
+ context: 200000,
723
+ output: 8192,
724
+ },
725
+ },
726
+ {
727
+ id: 'claude-3-5-sonnet-20241022',
728
+ label: 'Claude Sonnet 3.5 v2',
729
+ modalities: {
730
+ input: ['text', 'image'],
731
+ output: ['text'],
732
+ },
733
+ toolCall: true,
734
+ reasoning: false,
735
+ attachment: true,
736
+ temperature: true,
737
+ knowledge: '2024-04-30',
738
+ releaseDate: '2024-10-22',
739
+ lastUpdated: '2024-10-22',
740
+ openWeights: false,
741
+ cost: {
742
+ input: 3,
743
+ output: 15,
744
+ cacheRead: 0.3,
745
+ },
746
+ limit: {
747
+ context: 200000,
748
+ output: 8192,
749
+ },
750
+ },
751
+ {
752
+ id: 'claude-3-7-sonnet-20250219',
753
+ label: 'Claude Sonnet 3.7',
754
+ modalities: {
755
+ input: ['text', 'image'],
756
+ output: ['text'],
757
+ },
758
+ toolCall: true,
759
+ reasoning: true,
760
+ attachment: true,
761
+ temperature: true,
762
+ knowledge: '2024-10-31',
763
+ releaseDate: '2025-02-19',
764
+ lastUpdated: '2025-02-19',
765
+ openWeights: false,
766
+ cost: {
767
+ input: 3,
768
+ output: 15,
769
+ cacheRead: 0.3,
770
+ },
771
+ limit: {
772
+ context: 200000,
773
+ output: 64000,
774
+ },
775
+ },
776
+ {
777
+ id: 'claude-3-haiku-20240307',
778
+ label: 'Claude Haiku 3',
779
+ modalities: {
780
+ input: ['text', 'image'],
781
+ output: ['text'],
782
+ },
783
+ toolCall: true,
784
+ reasoning: false,
785
+ attachment: true,
786
+ temperature: true,
787
+ knowledge: '2023-08-31',
788
+ releaseDate: '2024-03-13',
789
+ lastUpdated: '2024-03-13',
790
+ openWeights: false,
791
+ cost: {
792
+ input: 0.25,
793
+ output: 1.25,
794
+ cacheRead: 0.03,
795
+ },
796
+ limit: {
797
+ context: 200000,
798
+ output: 4096,
799
+ },
800
+ },
801
+ {
802
+ id: 'claude-3-opus-20240229',
803
+ label: 'Claude Opus 3',
804
+ modalities: {
805
+ input: ['text', 'image'],
806
+ output: ['text'],
807
+ },
808
+ toolCall: true,
809
+ reasoning: false,
810
+ attachment: true,
811
+ temperature: true,
812
+ knowledge: '2023-08-31',
813
+ releaseDate: '2024-02-29',
814
+ lastUpdated: '2024-02-29',
815
+ openWeights: false,
816
+ cost: {
817
+ input: 15,
818
+ output: 75,
819
+ cacheRead: 1.5,
820
+ },
821
+ limit: {
822
+ context: 200000,
823
+ output: 4096,
824
+ },
825
+ },
826
+ {
827
+ id: 'claude-3-sonnet-20240229',
828
+ label: 'Claude Sonnet 3',
829
+ modalities: {
830
+ input: ['text', 'image'],
831
+ output: ['text'],
832
+ },
833
+ toolCall: true,
834
+ reasoning: false,
835
+ attachment: true,
836
+ temperature: true,
837
+ knowledge: '2023-08-31',
838
+ releaseDate: '2024-03-04',
839
+ lastUpdated: '2024-03-04',
840
+ openWeights: false,
841
+ cost: {
842
+ input: 3,
843
+ output: 15,
844
+ cacheRead: 0.3,
845
+ },
846
+ limit: {
847
+ context: 200000,
848
+ output: 4096,
849
+ },
850
+ },
851
+ {
852
+ id: 'claude-opus-4-1-20250805',
853
+ label: 'Claude Opus 4.1',
854
+ modalities: {
855
+ input: ['text', 'image'],
856
+ output: ['text'],
857
+ },
858
+ toolCall: true,
859
+ reasoning: true,
860
+ attachment: true,
861
+ temperature: true,
862
+ knowledge: '2025-03-31',
863
+ releaseDate: '2025-08-05',
864
+ lastUpdated: '2025-08-05',
865
+ openWeights: false,
866
+ cost: {
867
+ input: 15,
868
+ output: 75,
869
+ cacheRead: 1.5,
870
+ },
871
+ limit: {
872
+ context: 200000,
873
+ output: 32000,
874
+ },
875
+ },
876
+ {
877
+ id: 'claude-opus-4-20250514',
878
+ label: 'Claude Opus 4',
879
+ modalities: {
880
+ input: ['text', 'image'],
881
+ output: ['text'],
882
+ },
883
+ toolCall: true,
884
+ reasoning: true,
885
+ attachment: true,
886
+ temperature: true,
887
+ knowledge: '2025-03-31',
888
+ releaseDate: '2025-05-22',
889
+ lastUpdated: '2025-05-22',
890
+ openWeights: false,
891
+ cost: {
892
+ input: 15,
893
+ output: 75,
894
+ cacheRead: 1.5,
895
+ },
896
+ limit: {
897
+ context: 200000,
898
+ output: 32000,
899
+ },
900
+ },
901
+ {
902
+ id: 'claude-sonnet-4-20250514',
903
+ label: 'Claude Sonnet 4',
904
+ modalities: {
905
+ input: ['text', 'image'],
906
+ output: ['text'],
907
+ },
908
+ toolCall: true,
909
+ reasoning: true,
910
+ attachment: true,
911
+ temperature: true,
912
+ knowledge: '2025-03-31',
913
+ releaseDate: '2025-05-22',
914
+ lastUpdated: '2025-05-22',
915
+ openWeights: false,
916
+ cost: {
917
+ input: 3,
918
+ output: 15,
919
+ cacheRead: 0.3,
920
+ },
921
+ limit: {
922
+ context: 200000,
923
+ output: 64000,
924
+ },
925
+ },
926
+ {
927
+ id: 'claude-sonnet-4-5-20250929',
928
+ label: 'Claude Sonnet 4.5',
929
+ modalities: {
930
+ input: ['text', 'image'],
931
+ output: ['text'],
932
+ },
933
+ toolCall: true,
934
+ reasoning: true,
935
+ attachment: true,
936
+ temperature: true,
937
+ knowledge: '2025-07-31',
938
+ releaseDate: '2025-09-29',
939
+ lastUpdated: '2025-09-29',
940
+ openWeights: false,
941
+ cost: {
942
+ input: 3,
943
+ output: 15,
944
+ cacheRead: 0.3,
945
+ },
946
+ limit: {
947
+ context: 200000,
948
+ output: 64000,
949
+ },
950
+ },
951
+ ],
952
+ },
953
+ google: {
954
+ models: [
955
+ {
956
+ id: 'gemini-1.5-flash',
957
+ label: 'Gemini 1.5 Flash',
958
+ modalities: {
959
+ input: ['text', 'image', 'audio', 'video'],
960
+ output: ['text'],
961
+ },
962
+ toolCall: true,
963
+ reasoning: false,
964
+ attachment: true,
965
+ temperature: true,
966
+ knowledge: '2024-04',
967
+ releaseDate: '2024-05-14',
968
+ lastUpdated: '2024-05-14',
969
+ openWeights: false,
970
+ cost: {
971
+ input: 0.075,
972
+ output: 0.3,
973
+ cacheRead: 0.01875,
974
+ },
975
+ limit: {
976
+ context: 1000000,
977
+ output: 8192,
978
+ },
979
+ },
980
+ {
981
+ id: 'gemini-1.5-flash-8b',
982
+ label: 'Gemini 1.5 Flash-8B',
983
+ modalities: {
984
+ input: ['text', 'image', 'audio', 'video'],
985
+ output: ['text'],
986
+ },
987
+ toolCall: true,
988
+ reasoning: false,
989
+ attachment: true,
990
+ temperature: true,
991
+ knowledge: '2024-04',
992
+ releaseDate: '2024-10-03',
993
+ lastUpdated: '2024-10-03',
994
+ openWeights: false,
995
+ cost: {
996
+ input: 0.0375,
997
+ output: 0.15,
998
+ cacheRead: 0.01,
999
+ },
1000
+ limit: {
1001
+ context: 1000000,
1002
+ output: 8192,
1003
+ },
1004
+ },
1005
+ {
1006
+ id: 'gemini-1.5-pro',
1007
+ label: 'Gemini 1.5 Pro',
1008
+ modalities: {
1009
+ input: ['text', 'image', 'audio', 'video'],
1010
+ output: ['text'],
1011
+ },
1012
+ toolCall: true,
1013
+ reasoning: false,
1014
+ attachment: true,
1015
+ temperature: true,
1016
+ knowledge: '2024-04',
1017
+ releaseDate: '2024-02-15',
1018
+ lastUpdated: '2024-02-15',
1019
+ openWeights: false,
1020
+ cost: {
1021
+ input: 1.25,
1022
+ output: 5,
1023
+ cacheRead: 0.3125,
1024
+ },
1025
+ limit: {
1026
+ context: 1000000,
1027
+ output: 8192,
1028
+ },
1029
+ },
1030
+ {
1031
+ id: 'gemini-2.0-flash',
1032
+ label: 'Gemini 2.0 Flash',
1033
+ modalities: {
1034
+ input: ['text', 'image', 'audio', 'video', 'pdf'],
1035
+ output: ['text'],
1036
+ },
1037
+ toolCall: true,
1038
+ reasoning: false,
1039
+ attachment: true,
1040
+ temperature: true,
1041
+ knowledge: '2024-06',
1042
+ releaseDate: '2024-12-11',
1043
+ lastUpdated: '2024-12-11',
1044
+ openWeights: false,
1045
+ cost: {
1046
+ input: 0.1,
1047
+ output: 0.4,
1048
+ cacheRead: 0.025,
1049
+ },
1050
+ limit: {
1051
+ context: 1048576,
1052
+ output: 8192,
1053
+ },
1054
+ },
1055
+ {
1056
+ id: 'gemini-2.0-flash-lite',
1057
+ label: 'Gemini 2.0 Flash Lite',
1058
+ modalities: {
1059
+ input: ['text', 'image', 'audio', 'video', 'pdf'],
1060
+ output: ['text'],
1061
+ },
1062
+ toolCall: true,
1063
+ reasoning: false,
1064
+ attachment: true,
1065
+ temperature: true,
1066
+ knowledge: '2024-06',
1067
+ releaseDate: '2024-12-11',
1068
+ lastUpdated: '2024-12-11',
1069
+ openWeights: false,
1070
+ cost: {
1071
+ input: 0.075,
1072
+ output: 0.3,
1073
+ },
1074
+ limit: {
1075
+ context: 1048576,
1076
+ output: 8192,
1077
+ },
1078
+ },
1079
+ {
1080
+ id: 'gemini-2.5-flash',
1081
+ label: 'Gemini 2.5 Flash',
1082
+ modalities: {
1083
+ input: ['text', 'image', 'audio', 'video', 'pdf'],
1084
+ output: ['text'],
1085
+ },
1086
+ toolCall: true,
1087
+ reasoning: true,
1088
+ attachment: true,
1089
+ temperature: true,
1090
+ knowledge: '2025-01',
1091
+ releaseDate: '2025-03-20',
1092
+ lastUpdated: '2025-06-05',
1093
+ openWeights: false,
1094
+ cost: {
1095
+ input: 0.3,
1096
+ output: 2.5,
1097
+ cacheRead: 0.075,
1098
+ },
1099
+ limit: {
1100
+ context: 1048576,
1101
+ output: 65536,
1102
+ },
1103
+ },
1104
+ {
1105
+ id: 'gemini-2.5-flash-lite',
1106
+ label: 'Gemini 2.5 Flash Lite',
1107
+ modalities: {
1108
+ input: ['text', 'image', 'audio', 'video', 'pdf'],
1109
+ output: ['text'],
1110
+ },
1111
+ toolCall: true,
1112
+ reasoning: true,
1113
+ attachment: true,
1114
+ temperature: true,
1115
+ knowledge: '2025-01',
1116
+ releaseDate: '2025-06-17',
1117
+ lastUpdated: '2025-06-17',
1118
+ openWeights: false,
1119
+ cost: {
1120
+ input: 0.1,
1121
+ output: 0.4,
1122
+ cacheRead: 0.025,
1123
+ },
1124
+ limit: {
1125
+ context: 1048576,
1126
+ output: 65536,
1127
+ },
1128
+ },
1129
+ {
1130
+ id: 'gemini-2.5-flash-lite-preview-06-17',
1131
+ label: 'Gemini 2.5 Flash Lite Preview 06-17',
1132
+ modalities: {
1133
+ input: ['text', 'image', 'audio', 'video', 'pdf'],
1134
+ output: ['text'],
1135
+ },
1136
+ toolCall: true,
1137
+ reasoning: true,
1138
+ attachment: true,
1139
+ temperature: true,
1140
+ knowledge: '2025-01',
1141
+ releaseDate: '2025-06-17',
1142
+ lastUpdated: '2025-06-17',
1143
+ openWeights: false,
1144
+ cost: {
1145
+ input: 0.1,
1146
+ output: 0.4,
1147
+ cacheRead: 0.025,
1148
+ },
1149
+ limit: {
1150
+ context: 1048576,
1151
+ output: 65536,
1152
+ },
1153
+ },
1154
+ {
1155
+ id: 'gemini-2.5-flash-lite-preview-09-2025',
1156
+ label: 'Gemini 2.5 Flash Lite Preview 09-25',
1157
+ modalities: {
1158
+ input: ['text', 'image', 'audio', 'video', 'pdf'],
1159
+ output: ['text'],
1160
+ },
1161
+ toolCall: true,
1162
+ reasoning: true,
1163
+ attachment: true,
1164
+ temperature: true,
1165
+ knowledge: '2025-01',
1166
+ releaseDate: '2025-09-25',
1167
+ lastUpdated: '2025-09-25',
1168
+ openWeights: false,
1169
+ cost: {
1170
+ input: 0.1,
1171
+ output: 0.4,
1172
+ cacheRead: 0.025,
1173
+ },
1174
+ limit: {
1175
+ context: 1048576,
1176
+ output: 65536,
1177
+ },
1178
+ },
1179
+ {
1180
+ id: 'gemini-2.5-flash-preview-04-17',
1181
+ label: 'Gemini 2.5 Flash Preview 04-17',
1182
+ modalities: {
1183
+ input: ['text', 'image', 'audio', 'video', 'pdf'],
1184
+ output: ['text'],
1185
+ },
1186
+ toolCall: true,
1187
+ reasoning: true,
1188
+ attachment: true,
1189
+ temperature: true,
1190
+ knowledge: '2025-01',
1191
+ releaseDate: '2025-04-17',
1192
+ lastUpdated: '2025-04-17',
1193
+ openWeights: false,
1194
+ cost: {
1195
+ input: 0.15,
1196
+ output: 0.6,
1197
+ cacheRead: 0.0375,
1198
+ },
1199
+ limit: {
1200
+ context: 1048576,
1201
+ output: 65536,
1202
+ },
1203
+ },
1204
+ {
1205
+ id: 'gemini-2.5-flash-preview-05-20',
1206
+ label: 'Gemini 2.5 Flash Preview 05-20',
1207
+ modalities: {
1208
+ input: ['text', 'image', 'audio', 'video', 'pdf'],
1209
+ output: ['text'],
1210
+ },
1211
+ toolCall: true,
1212
+ reasoning: true,
1213
+ attachment: true,
1214
+ temperature: true,
1215
+ knowledge: '2025-01',
1216
+ releaseDate: '2025-05-20',
1217
+ lastUpdated: '2025-05-20',
1218
+ openWeights: false,
1219
+ cost: {
1220
+ input: 0.15,
1221
+ output: 0.6,
1222
+ cacheRead: 0.0375,
1223
+ },
1224
+ limit: {
1225
+ context: 1048576,
1226
+ output: 65536,
1227
+ },
1228
+ },
1229
+ {
1230
+ id: 'gemini-2.5-flash-preview-09-2025',
1231
+ label: 'Gemini 2.5 Flash Preview 09-25',
1232
+ modalities: {
1233
+ input: ['text', 'image', 'audio', 'video', 'pdf'],
1234
+ output: ['text'],
1235
+ },
1236
+ toolCall: true,
1237
+ reasoning: true,
1238
+ attachment: true,
1239
+ temperature: true,
1240
+ knowledge: '2025-01',
1241
+ releaseDate: '2025-09-25',
1242
+ lastUpdated: '2025-09-25',
1243
+ openWeights: false,
1244
+ cost: {
1245
+ input: 0.15,
1246
+ output: 0.6,
1247
+ cacheRead: 0.0375,
1248
+ },
1249
+ limit: {
1250
+ context: 1048576,
1251
+ output: 65536,
1252
+ },
1253
+ },
1254
+ {
1255
+ id: 'gemini-2.5-pro',
1256
+ label: 'Gemini 2.5 Pro',
1257
+ modalities: {
1258
+ input: ['text', 'image', 'audio', 'video', 'pdf'],
1259
+ output: ['text'],
1260
+ },
1261
+ toolCall: true,
1262
+ reasoning: true,
1263
+ attachment: true,
1264
+ temperature: true,
1265
+ knowledge: '2025-01',
1266
+ releaseDate: '2025-03-20',
1267
+ lastUpdated: '2025-06-05',
1268
+ openWeights: false,
1269
+ cost: {
1270
+ input: 1.25,
1271
+ output: 10,
1272
+ cacheRead: 0.31,
1273
+ },
1274
+ limit: {
1275
+ context: 1048576,
1276
+ output: 65536,
1277
+ },
1278
+ },
1279
+ {
1280
+ id: 'gemini-2.5-pro-preview-05-06',
1281
+ label: 'Gemini 2.5 Pro Preview 05-06',
1282
+ modalities: {
1283
+ input: ['text', 'image', 'audio', 'video', 'pdf'],
1284
+ output: ['text'],
1285
+ },
1286
+ toolCall: true,
1287
+ reasoning: true,
1288
+ attachment: true,
1289
+ temperature: true,
1290
+ knowledge: '2025-01',
1291
+ releaseDate: '2025-05-06',
1292
+ lastUpdated: '2025-05-06',
1293
+ openWeights: false,
1294
+ cost: {
1295
+ input: 1.25,
1296
+ output: 10,
1297
+ cacheRead: 0.31,
1298
+ },
1299
+ limit: {
1300
+ context: 1048576,
1301
+ output: 65536,
1302
+ },
1303
+ },
1304
+ {
1305
+ id: 'gemini-2.5-pro-preview-06-05',
1306
+ label: 'Gemini 2.5 Pro Preview 06-05',
1307
+ modalities: {
1308
+ input: ['text', 'image', 'audio', 'video', 'pdf'],
1309
+ output: ['text'],
1310
+ },
1311
+ toolCall: true,
1312
+ reasoning: true,
1313
+ attachment: true,
1314
+ temperature: true,
1315
+ knowledge: '2025-01',
1316
+ releaseDate: '2025-06-05',
1317
+ lastUpdated: '2025-06-05',
1318
+ openWeights: false,
1319
+ cost: {
1320
+ input: 1.25,
1321
+ output: 10,
1322
+ cacheRead: 0.31,
1323
+ },
1324
+ limit: {
1325
+ context: 1048576,
1326
+ output: 65536,
1327
+ },
1328
+ },
1329
+ {
1330
+ id: 'gemini-flash-latest',
1331
+ label: 'Gemini Flash Latest',
1332
+ modalities: {
1333
+ input: ['text', 'image', 'audio', 'video', 'pdf'],
1334
+ output: ['text'],
1335
+ },
1336
+ toolCall: true,
1337
+ reasoning: true,
1338
+ attachment: true,
1339
+ temperature: true,
1340
+ knowledge: '2025-01',
1341
+ releaseDate: '2025-09-25',
1342
+ lastUpdated: '2025-09-25',
1343
+ openWeights: false,
1344
+ cost: {
1345
+ input: 0.15,
1346
+ output: 0.6,
1347
+ cacheRead: 0.0375,
1348
+ },
1349
+ limit: {
1350
+ context: 1048576,
1351
+ output: 65536,
1352
+ },
1353
+ },
1354
+ {
1355
+ id: 'gemini-flash-lite-latest',
1356
+ label: 'Gemini Flash-Lite Latest',
1357
+ modalities: {
1358
+ input: ['text', 'image', 'audio', 'video', 'pdf'],
1359
+ output: ['text'],
1360
+ },
1361
+ toolCall: true,
1362
+ reasoning: true,
1363
+ attachment: true,
1364
+ temperature: true,
1365
+ knowledge: '2025-01',
1366
+ releaseDate: '2025-09-25',
1367
+ lastUpdated: '2025-09-25',
1368
+ openWeights: false,
1369
+ cost: {
1370
+ input: 0.1,
1371
+ output: 0.4,
1372
+ cacheRead: 0.025,
1373
+ },
1374
+ limit: {
1375
+ context: 1048576,
1376
+ output: 65536,
1377
+ },
1378
+ },
1379
+ {
1380
+ id: 'gemini-live-2.5-flash-preview-native-audio',
1381
+ label: 'Gemini Live 2.5 Flash Preview Native Audio',
1382
+ modalities: {
1383
+ input: ['text', 'audio', 'video'],
1384
+ output: ['text', 'audio'],
1385
+ },
1386
+ toolCall: true,
1387
+ reasoning: true,
1388
+ attachment: false,
1389
+ temperature: false,
1390
+ knowledge: '2025-01',
1391
+ releaseDate: '2025-06-17',
1392
+ lastUpdated: '2025-09-18',
1393
+ openWeights: false,
1394
+ cost: {
1395
+ input: 0.5,
1396
+ output: 2,
1397
+ },
1398
+ limit: {
1399
+ context: 131072,
1400
+ output: 65536,
1401
+ },
1402
+ },
1403
+ ],
1404
+ },
1405
+ openrouter: {
1406
+ models: [
1407
+ {
1408
+ id: 'anthropic/claude-3.5-haiku',
1409
+ label: 'Claude Haiku 3.5',
1410
+ modalities: {
1411
+ input: ['text', 'image'],
1412
+ output: ['text'],
1413
+ },
1414
+ toolCall: true,
1415
+ reasoning: false,
1416
+ attachment: true,
1417
+ temperature: true,
1418
+ knowledge: '2024-07-31',
1419
+ releaseDate: '2024-10-22',
1420
+ lastUpdated: '2024-10-22',
1421
+ openWeights: false,
1422
+ cost: {
1423
+ input: 0.8,
1424
+ output: 4,
1425
+ cacheRead: 0.08,
1426
+ },
1427
+ limit: {
1428
+ context: 200000,
1429
+ output: 8192,
1430
+ },
1431
+ },
1432
+ {
1433
+ id: 'anthropic/claude-3.7-sonnet',
1434
+ label: 'Claude Sonnet 3.7',
1435
+ modalities: {
1436
+ input: ['text', 'image'],
1437
+ output: ['text'],
1438
+ },
1439
+ toolCall: true,
1440
+ reasoning: true,
1441
+ attachment: true,
1442
+ temperature: true,
1443
+ knowledge: '2024-01',
1444
+ releaseDate: '2025-02-19',
1445
+ lastUpdated: '2025-02-19',
1446
+ openWeights: false,
1447
+ cost: {
1448
+ input: 15,
1449
+ output: 75,
1450
+ cacheRead: 1.5,
1451
+ },
1452
+ limit: {
1453
+ context: 200000,
1454
+ output: 128000,
1455
+ },
1456
+ },
1457
+ {
1458
+ id: 'anthropic/claude-opus-4',
1459
+ label: 'Claude Opus 4',
1460
+ modalities: {
1461
+ input: ['text', 'image'],
1462
+ output: ['text'],
1463
+ },
1464
+ toolCall: true,
1465
+ reasoning: true,
1466
+ attachment: true,
1467
+ temperature: true,
1468
+ knowledge: '2025-03-31',
1469
+ releaseDate: '2025-05-22',
1470
+ lastUpdated: '2025-05-22',
1471
+ openWeights: false,
1472
+ cost: {
1473
+ input: 15,
1474
+ output: 75,
1475
+ cacheRead: 1.5,
1476
+ },
1477
+ limit: {
1478
+ context: 200000,
1479
+ output: 32000,
1480
+ },
1481
+ },
1482
+ {
1483
+ id: 'anthropic/claude-opus-4.1',
1484
+ label: 'Claude Opus 4.1',
1485
+ modalities: {
1486
+ input: ['text', 'image'],
1487
+ output: ['text'],
1488
+ },
1489
+ toolCall: true,
1490
+ reasoning: true,
1491
+ attachment: true,
1492
+ temperature: true,
1493
+ knowledge: '2025-03-31',
1494
+ releaseDate: '2025-08-05',
1495
+ lastUpdated: '2025-08-05',
1496
+ openWeights: false,
1497
+ cost: {
1498
+ input: 15,
1499
+ output: 75,
1500
+ cacheRead: 1.5,
1501
+ },
1502
+ limit: {
1503
+ context: 200000,
1504
+ output: 32000,
1505
+ },
1506
+ },
1507
+ {
1508
+ id: 'anthropic/claude-sonnet-4',
1509
+ label: 'Claude Sonnet 4',
1510
+ modalities: {
1511
+ input: ['text', 'image'],
1512
+ output: ['text'],
1513
+ },
1514
+ toolCall: true,
1515
+ reasoning: true,
1516
+ attachment: true,
1517
+ temperature: true,
1518
+ knowledge: '2025-03-31',
1519
+ releaseDate: '2025-05-22',
1520
+ lastUpdated: '2025-05-22',
1521
+ openWeights: false,
1522
+ cost: {
1523
+ input: 3,
1524
+ output: 15,
1525
+ cacheRead: 0.3,
1526
+ },
1527
+ limit: {
1528
+ context: 200000,
1529
+ output: 64000,
1530
+ },
1531
+ },
1532
+ {
1533
+ id: 'anthropic/claude-sonnet-4.5',
1534
+ label: 'Claude Sonnet 4.5',
1535
+ modalities: {
1536
+ input: ['text', 'image'],
1537
+ output: ['text'],
1538
+ },
1539
+ toolCall: true,
1540
+ reasoning: true,
1541
+ attachment: true,
1542
+ temperature: true,
1543
+ knowledge: '2025-07-31',
1544
+ releaseDate: '2025-09-29',
1545
+ lastUpdated: '2025-09-29',
1546
+ openWeights: false,
1547
+ cost: {
1548
+ input: 3,
1549
+ output: 15,
1550
+ cacheRead: 0.3,
1551
+ },
1552
+ limit: {
1553
+ context: 1000000,
1554
+ output: 64000,
1555
+ },
1556
+ },
1557
+ {
1558
+ id: 'cognitivecomputations/dolphin3.0-mistral-24b',
1559
+ label: 'Dolphin3.0 Mistral 24B',
1560
+ modalities: {
1561
+ input: ['text'],
1562
+ output: ['text'],
1563
+ },
1564
+ toolCall: true,
1565
+ reasoning: false,
1566
+ attachment: false,
1567
+ temperature: true,
1568
+ knowledge: '2024-10',
1569
+ releaseDate: '2025-02-13',
1570
+ lastUpdated: '2025-02-13',
1571
+ openWeights: true,
1572
+ cost: {
1573
+ input: 0,
1574
+ output: 0,
1575
+ },
1576
+ limit: {
1577
+ context: 32768,
1578
+ output: 8192,
1579
+ },
1580
+ },
1581
+ {
1582
+ id: 'cognitivecomputations/dolphin3.0-r1-mistral-24b',
1583
+ label: 'Dolphin3.0 R1 Mistral 24B',
1584
+ modalities: {
1585
+ input: ['text'],
1586
+ output: ['text'],
1587
+ },
1588
+ toolCall: true,
1589
+ reasoning: true,
1590
+ attachment: false,
1591
+ temperature: true,
1592
+ knowledge: '2024-10',
1593
+ releaseDate: '2025-02-13',
1594
+ lastUpdated: '2025-02-13',
1595
+ openWeights: true,
1596
+ cost: {
1597
+ input: 0,
1598
+ output: 0,
1599
+ },
1600
+ limit: {
1601
+ context: 32768,
1602
+ output: 8192,
1603
+ },
1604
+ },
1605
+ {
1606
+ id: 'deepseek/deepseek-chat-v3-0324',
1607
+ label: 'DeepSeek V3 0324',
1608
+ modalities: {
1609
+ input: ['text'],
1610
+ output: ['text'],
1611
+ },
1612
+ toolCall: false,
1613
+ reasoning: false,
1614
+ attachment: false,
1615
+ temperature: true,
1616
+ knowledge: '2024-10',
1617
+ releaseDate: '2025-03-24',
1618
+ lastUpdated: '2025-03-24',
1619
+ openWeights: true,
1620
+ cost: {
1621
+ input: 0,
1622
+ output: 0,
1623
+ },
1624
+ limit: {
1625
+ context: 16384,
1626
+ output: 8192,
1627
+ },
1628
+ },
1629
+ {
1630
+ id: 'deepseek/deepseek-chat-v3.1',
1631
+ label: 'DeepSeek-V3.1',
1632
+ modalities: {
1633
+ input: ['text'],
1634
+ output: ['text'],
1635
+ },
1636
+ toolCall: true,
1637
+ reasoning: true,
1638
+ attachment: false,
1639
+ temperature: true,
1640
+ knowledge: '2025-07',
1641
+ releaseDate: '2025-08-21',
1642
+ lastUpdated: '2025-08-21',
1643
+ openWeights: true,
1644
+ cost: {
1645
+ input: 0.2,
1646
+ output: 0.8,
1647
+ },
1648
+ limit: {
1649
+ context: 163840,
1650
+ output: 163840,
1651
+ },
1652
+ },
1653
+ {
1654
+ id: 'deepseek/deepseek-r1-0528-qwen3-8b:free',
1655
+ label: 'Deepseek R1 0528 Qwen3 8B (free)',
1656
+ modalities: {
1657
+ input: ['text'],
1658
+ output: ['text'],
1659
+ },
1660
+ toolCall: true,
1661
+ reasoning: true,
1662
+ attachment: false,
1663
+ temperature: true,
1664
+ knowledge: '2025-05',
1665
+ releaseDate: '2025-05-29',
1666
+ lastUpdated: '2025-05-29',
1667
+ openWeights: true,
1668
+ cost: {
1669
+ input: 0,
1670
+ output: 0,
1671
+ },
1672
+ limit: {
1673
+ context: 131072,
1674
+ output: 131072,
1675
+ },
1676
+ },
1677
+ {
1678
+ id: 'deepseek/deepseek-r1-0528:free',
1679
+ label: 'R1 0528 (free)',
1680
+ modalities: {
1681
+ input: ['text'],
1682
+ output: ['text'],
1683
+ },
1684
+ toolCall: true,
1685
+ reasoning: true,
1686
+ attachment: false,
1687
+ temperature: true,
1688
+ knowledge: '2025-05',
1689
+ releaseDate: '2025-05-28',
1690
+ lastUpdated: '2025-05-28',
1691
+ openWeights: true,
1692
+ cost: {
1693
+ input: 0,
1694
+ output: 0,
1695
+ },
1696
+ limit: {
1697
+ context: 163840,
1698
+ output: 163840,
1699
+ },
1700
+ },
1701
+ {
1702
+ id: 'deepseek/deepseek-r1-distill-llama-70b',
1703
+ label: 'DeepSeek R1 Distill Llama 70B',
1704
+ modalities: {
1705
+ input: ['text'],
1706
+ output: ['text'],
1707
+ },
1708
+ toolCall: false,
1709
+ reasoning: true,
1710
+ attachment: false,
1711
+ temperature: true,
1712
+ knowledge: '2024-10',
1713
+ releaseDate: '2025-01-23',
1714
+ lastUpdated: '2025-01-23',
1715
+ openWeights: true,
1716
+ cost: {
1717
+ input: 0,
1718
+ output: 0,
1719
+ },
1720
+ limit: {
1721
+ context: 8192,
1722
+ output: 8192,
1723
+ },
1724
+ },
1725
+ {
1726
+ id: 'deepseek/deepseek-r1-distill-qwen-14b',
1727
+ label: 'DeepSeek R1 Distill Qwen 14B',
1728
+ modalities: {
1729
+ input: ['text'],
1730
+ output: ['text'],
1731
+ },
1732
+ toolCall: false,
1733
+ reasoning: true,
1734
+ attachment: false,
1735
+ temperature: true,
1736
+ knowledge: '2024-10',
1737
+ releaseDate: '2025-01-29',
1738
+ lastUpdated: '2025-01-29',
1739
+ openWeights: true,
1740
+ cost: {
1741
+ input: 0,
1742
+ output: 0,
1743
+ },
1744
+ limit: {
1745
+ context: 64000,
1746
+ output: 8192,
1747
+ },
1748
+ },
1749
+ {
1750
+ id: 'deepseek/deepseek-r1:free',
1751
+ label: 'R1 (free)',
1752
+ modalities: {
1753
+ input: ['text'],
1754
+ output: ['text'],
1755
+ },
1756
+ toolCall: true,
1757
+ reasoning: true,
1758
+ attachment: false,
1759
+ temperature: true,
1760
+ knowledge: '2025-01',
1761
+ releaseDate: '2025-01-20',
1762
+ lastUpdated: '2025-01-20',
1763
+ openWeights: true,
1764
+ cost: {
1765
+ input: 0,
1766
+ output: 0,
1767
+ },
1768
+ limit: {
1769
+ context: 163840,
1770
+ output: 163840,
1771
+ },
1772
+ },
1773
+ {
1774
+ id: 'deepseek/deepseek-v3-base:free',
1775
+ label: 'DeepSeek V3 Base (free)',
1776
+ modalities: {
1777
+ input: ['text'],
1778
+ output: ['text'],
1779
+ },
1780
+ toolCall: false,
1781
+ reasoning: false,
1782
+ attachment: false,
1783
+ temperature: true,
1784
+ knowledge: '2025-03',
1785
+ releaseDate: '2025-03-29',
1786
+ lastUpdated: '2025-03-29',
1787
+ openWeights: true,
1788
+ cost: {
1789
+ input: 0,
1790
+ output: 0,
1791
+ },
1792
+ limit: {
1793
+ context: 163840,
1794
+ output: 163840,
1795
+ },
1796
+ },
1797
+ {
1798
+ id: 'deepseek/deepseek-v3.1-terminus',
1799
+ label: 'DeepSeek V3.1 Terminus',
1800
+ modalities: {
1801
+ input: ['text'],
1802
+ output: ['text'],
1803
+ },
1804
+ toolCall: true,
1805
+ reasoning: true,
1806
+ attachment: false,
1807
+ temperature: true,
1808
+ knowledge: '2025-07',
1809
+ releaseDate: '2025-09-22',
1810
+ lastUpdated: '2025-09-22',
1811
+ openWeights: true,
1812
+ cost: {
1813
+ input: 0.27,
1814
+ output: 1,
1815
+ },
1816
+ limit: {
1817
+ context: 131072,
1818
+ output: 65536,
1819
+ },
1820
+ },
1821
+ {
1822
+ id: 'featherless/qwerky-72b',
1823
+ label: 'Qwerky 72B',
1824
+ modalities: {
1825
+ input: ['text'],
1826
+ output: ['text'],
1827
+ },
1828
+ toolCall: false,
1829
+ reasoning: false,
1830
+ attachment: false,
1831
+ temperature: true,
1832
+ knowledge: '2024-10',
1833
+ releaseDate: '2025-03-20',
1834
+ lastUpdated: '2025-03-20',
1835
+ openWeights: true,
1836
+ cost: {
1837
+ input: 0,
1838
+ output: 0,
1839
+ },
1840
+ limit: {
1841
+ context: 32768,
1842
+ output: 8192,
1843
+ },
1844
+ },
1845
+ {
1846
+ id: 'google/gemini-2.0-flash-001',
1847
+ label: 'Gemini 2.0 Flash',
1848
+ modalities: {
1849
+ input: ['text', 'image', 'audio', 'video', 'pdf'],
1850
+ output: ['text'],
1851
+ },
1852
+ toolCall: true,
1853
+ reasoning: false,
1854
+ attachment: true,
1855
+ temperature: true,
1856
+ knowledge: '2024-06',
1857
+ releaseDate: '2024-12-11',
1858
+ lastUpdated: '2024-12-11',
1859
+ openWeights: false,
1860
+ cost: {
1861
+ input: 0.1,
1862
+ output: 0.4,
1863
+ cacheRead: 0.025,
1864
+ },
1865
+ limit: {
1866
+ context: 1048576,
1867
+ output: 8192,
1868
+ },
1869
+ },
1870
+ {
1871
+ id: 'google/gemini-2.0-flash-exp:free',
1872
+ label: 'Gemini 2.0 Flash Experimental (free)',
1873
+ modalities: {
1874
+ input: ['text', 'image'],
1875
+ output: ['text'],
1876
+ },
1877
+ toolCall: true,
1878
+ reasoning: false,
1879
+ attachment: true,
1880
+ temperature: true,
1881
+ knowledge: '2024-12',
1882
+ releaseDate: '2024-12-11',
1883
+ lastUpdated: '2024-12-11',
1884
+ openWeights: false,
1885
+ cost: {
1886
+ input: 0,
1887
+ output: 0,
1888
+ },
1889
+ limit: {
1890
+ context: 1048576,
1891
+ output: 1048576,
1892
+ },
1893
+ },
1894
+ {
1895
+ id: 'google/gemini-2.5-flash',
1896
+ label: 'Gemini 2.5 Flash',
1897
+ modalities: {
1898
+ input: ['text', 'image', 'audio', 'video', 'pdf'],
1899
+ output: ['text'],
1900
+ },
1901
+ toolCall: true,
1902
+ reasoning: true,
1903
+ attachment: true,
1904
+ temperature: true,
1905
+ knowledge: '2025-01',
1906
+ releaseDate: '2025-07-17',
1907
+ lastUpdated: '2025-07-17',
1908
+ openWeights: false,
1909
+ cost: {
1910
+ input: 0.3,
1911
+ output: 2.5,
1912
+ cacheRead: 0.0375,
1913
+ },
1914
+ limit: {
1915
+ context: 1048576,
1916
+ output: 65536,
1917
+ },
1918
+ },
1919
+ {
1920
+ id: 'google/gemini-2.5-pro',
1921
+ label: 'Gemini 2.5 Pro',
1922
+ modalities: {
1923
+ input: ['text', 'image', 'audio', 'video', 'pdf'],
1924
+ output: ['text'],
1925
+ },
1926
+ toolCall: true,
1927
+ reasoning: true,
1928
+ attachment: true,
1929
+ temperature: true,
1930
+ knowledge: '2025-01',
1931
+ releaseDate: '2025-03-20',
1932
+ lastUpdated: '2025-06-05',
1933
+ openWeights: false,
1934
+ cost: {
1935
+ input: 1.25,
1936
+ output: 10,
1937
+ cacheRead: 0.31,
1938
+ },
1939
+ limit: {
1940
+ context: 1048576,
1941
+ output: 65536,
1942
+ },
1943
+ },
1944
+ {
1945
+ id: 'google/gemini-2.5-pro-preview-05-06',
1946
+ label: 'Gemini 2.5 Pro Preview 05-06',
1947
+ modalities: {
1948
+ input: ['text', 'image', 'audio', 'video', 'pdf'],
1949
+ output: ['text'],
1950
+ },
1951
+ toolCall: true,
1952
+ reasoning: true,
1953
+ attachment: true,
1954
+ temperature: true,
1955
+ knowledge: '2025-01',
1956
+ releaseDate: '2025-05-06',
1957
+ lastUpdated: '2025-05-06',
1958
+ openWeights: false,
1959
+ cost: {
1960
+ input: 1.25,
1961
+ output: 10,
1962
+ cacheRead: 0.31,
1963
+ },
1964
+ limit: {
1965
+ context: 1048576,
1966
+ output: 65536,
1967
+ },
1968
+ },
1969
+ {
1970
+ id: 'google/gemini-2.5-pro-preview-06-05',
1971
+ label: 'Gemini 2.5 Pro Preview 06-05',
1972
+ modalities: {
1973
+ input: ['text', 'image', 'audio', 'video', 'pdf'],
1974
+ output: ['text'],
1975
+ },
1976
+ toolCall: true,
1977
+ reasoning: true,
1978
+ attachment: true,
1979
+ temperature: true,
1980
+ knowledge: '2025-01',
1981
+ releaseDate: '2025-06-05',
1982
+ lastUpdated: '2025-06-05',
1983
+ openWeights: false,
1984
+ cost: {
1985
+ input: 1.25,
1986
+ output: 10,
1987
+ cacheRead: 0.31,
1988
+ },
1989
+ limit: {
1990
+ context: 1048576,
1991
+ output: 65536,
1992
+ },
1993
+ },
1994
+ {
1995
+ id: 'google/gemma-2-9b-it:free',
1996
+ label: 'Gemma 2 9B (free)',
1997
+ modalities: {
1998
+ input: ['text'],
1999
+ output: ['text'],
2000
+ },
2001
+ toolCall: true,
2002
+ reasoning: false,
2003
+ attachment: false,
2004
+ temperature: true,
2005
+ knowledge: '2024-06',
2006
+ releaseDate: '2024-06-28',
2007
+ lastUpdated: '2024-06-28',
2008
+ openWeights: true,
2009
+ cost: {
2010
+ input: 0,
2011
+ output: 0,
2012
+ },
2013
+ limit: {
2014
+ context: 8192,
2015
+ output: 8192,
2016
+ },
2017
+ },
2018
+ {
2019
+ id: 'google/gemma-3-12b-it',
2020
+ label: 'Gemma 3 12B IT',
2021
+ modalities: {
2022
+ input: ['text', 'image'],
2023
+ output: ['text'],
2024
+ },
2025
+ toolCall: true,
2026
+ reasoning: false,
2027
+ attachment: true,
2028
+ temperature: true,
2029
+ knowledge: '2024-10',
2030
+ releaseDate: '2025-03-13',
2031
+ lastUpdated: '2025-03-13',
2032
+ openWeights: true,
2033
+ cost: {
2034
+ input: 0,
2035
+ output: 0,
2036
+ },
2037
+ limit: {
2038
+ context: 96000,
2039
+ output: 8192,
2040
+ },
2041
+ },
2042
+ {
2043
+ id: 'google/gemma-3-27b-it',
2044
+ label: 'Gemma 3 27B IT',
2045
+ modalities: {
2046
+ input: ['text', 'image'],
2047
+ output: ['text'],
2048
+ },
2049
+ toolCall: true,
2050
+ reasoning: false,
2051
+ attachment: true,
2052
+ temperature: true,
2053
+ knowledge: '2024-10',
2054
+ releaseDate: '2025-03-12',
2055
+ lastUpdated: '2025-03-12',
2056
+ openWeights: true,
2057
+ cost: {
2058
+ input: 0,
2059
+ output: 0,
2060
+ },
2061
+ limit: {
2062
+ context: 96000,
2063
+ output: 8192,
2064
+ },
2065
+ },
2066
+ {
2067
+ id: 'google/gemma-3n-e4b-it',
2068
+ label: 'Gemma 3n E4B IT',
2069
+ modalities: {
2070
+ input: ['text', 'image', 'audio'],
2071
+ output: ['text'],
2072
+ },
2073
+ toolCall: false,
2074
+ reasoning: false,
2075
+ attachment: true,
2076
+ temperature: true,
2077
+ knowledge: '2024-10',
2078
+ releaseDate: '2025-05-20',
2079
+ lastUpdated: '2025-05-20',
2080
+ openWeights: true,
2081
+ cost: {
2082
+ input: 0,
2083
+ output: 0,
2084
+ },
2085
+ limit: {
2086
+ context: 8192,
2087
+ output: 8192,
2088
+ },
2089
+ },
2090
+ {
2091
+ id: 'google/gemma-3n-e4b-it:free',
2092
+ label: 'Gemma 3n 4B (free)',
2093
+ modalities: {
2094
+ input: ['text', 'image', 'audio'],
2095
+ output: ['text'],
2096
+ },
2097
+ toolCall: true,
2098
+ reasoning: false,
2099
+ attachment: true,
2100
+ temperature: true,
2101
+ knowledge: '2025-05',
2102
+ releaseDate: '2025-05-20',
2103
+ lastUpdated: '2025-05-20',
2104
+ openWeights: true,
2105
+ cost: {
2106
+ input: 0,
2107
+ output: 0,
2108
+ },
2109
+ limit: {
2110
+ context: 8192,
2111
+ output: 8192,
2112
+ },
2113
+ },
2114
+ {
2115
+ id: 'meta-llama/llama-3.2-11b-vision-instruct',
2116
+ label: 'Llama 3.2 11B Vision Instruct',
2117
+ modalities: {
2118
+ input: ['text', 'image'],
2119
+ output: ['text'],
2120
+ },
2121
+ toolCall: false,
2122
+ reasoning: false,
2123
+ attachment: true,
2124
+ temperature: true,
2125
+ knowledge: '2023-12',
2126
+ releaseDate: '2024-09-25',
2127
+ lastUpdated: '2024-09-25',
2128
+ openWeights: true,
2129
+ cost: {
2130
+ input: 0,
2131
+ output: 0,
2132
+ },
2133
+ limit: {
2134
+ context: 131072,
2135
+ output: 8192,
2136
+ },
2137
+ },
2138
+ {
2139
+ id: 'meta-llama/llama-3.3-70b-instruct:free',
2140
+ label: 'Llama 3.3 70B Instruct (free)',
2141
+ modalities: {
2142
+ input: ['text'],
2143
+ output: ['text'],
2144
+ },
2145
+ toolCall: true,
2146
+ reasoning: false,
2147
+ attachment: false,
2148
+ temperature: true,
2149
+ knowledge: '2024-12',
2150
+ releaseDate: '2024-12-06',
2151
+ lastUpdated: '2024-12-06',
2152
+ openWeights: true,
2153
+ cost: {
2154
+ input: 0,
2155
+ output: 0,
2156
+ },
2157
+ limit: {
2158
+ context: 65536,
2159
+ output: 65536,
2160
+ },
2161
+ },
2162
+ {
2163
+ id: 'meta-llama/llama-4-scout:free',
2164
+ label: 'Llama 4 Scout (free)',
2165
+ modalities: {
2166
+ input: ['text', 'image'],
2167
+ output: ['text'],
2168
+ },
2169
+ toolCall: true,
2170
+ reasoning: false,
2171
+ attachment: true,
2172
+ temperature: true,
2173
+ knowledge: '2024-08',
2174
+ releaseDate: '2025-04-05',
2175
+ lastUpdated: '2025-04-05',
2176
+ openWeights: true,
2177
+ cost: {
2178
+ input: 0,
2179
+ output: 0,
2180
+ },
2181
+ limit: {
2182
+ context: 64000,
2183
+ output: 64000,
2184
+ },
2185
+ },
2186
+ {
2187
+ id: 'microsoft/mai-ds-r1:free',
2188
+ label: 'MAI DS R1 (free)',
2189
+ modalities: {
2190
+ input: ['text'],
2191
+ output: ['text'],
2192
+ },
2193
+ toolCall: true,
2194
+ reasoning: true,
2195
+ attachment: false,
2196
+ temperature: true,
2197
+ knowledge: '2025-04',
2198
+ releaseDate: '2025-04-21',
2199
+ lastUpdated: '2025-04-21',
2200
+ openWeights: true,
2201
+ cost: {
2202
+ input: 0,
2203
+ output: 0,
2204
+ },
2205
+ limit: {
2206
+ context: 163840,
2207
+ output: 163840,
2208
+ },
2209
+ },
2210
+ {
2211
+ id: 'mistralai/codestral-2508',
2212
+ label: 'Codestral 2508',
2213
+ modalities: {
2214
+ input: ['text'],
2215
+ output: ['text'],
2216
+ },
2217
+ toolCall: true,
2218
+ reasoning: false,
2219
+ attachment: false,
2220
+ temperature: true,
2221
+ knowledge: '2025-05',
2222
+ releaseDate: '2025-08-01',
2223
+ lastUpdated: '2025-08-01',
2224
+ openWeights: true,
2225
+ cost: {
2226
+ input: 0.3,
2227
+ output: 0.9,
2228
+ },
2229
+ limit: {
2230
+ context: 256000,
2231
+ output: 256000,
2232
+ },
2233
+ },
2234
+ {
2235
+ id: 'mistralai/devstral-medium-2507',
2236
+ label: 'Devstral Medium',
2237
+ modalities: {
2238
+ input: ['text'],
2239
+ output: ['text'],
2240
+ },
2241
+ toolCall: true,
2242
+ reasoning: false,
2243
+ attachment: false,
2244
+ temperature: true,
2245
+ knowledge: '2025-05',
2246
+ releaseDate: '2025-07-10',
2247
+ lastUpdated: '2025-07-10',
2248
+ openWeights: true,
2249
+ cost: {
2250
+ input: 0.4,
2251
+ output: 2,
2252
+ },
2253
+ limit: {
2254
+ context: 131072,
2255
+ output: 131072,
2256
+ },
2257
+ },
2258
+ {
2259
+ id: 'mistralai/devstral-small-2505',
2260
+ label: 'Devstral Small',
2261
+ modalities: {
2262
+ input: ['text'],
2263
+ output: ['text'],
2264
+ },
2265
+ toolCall: true,
2266
+ reasoning: false,
2267
+ attachment: false,
2268
+ temperature: true,
2269
+ knowledge: '2025-05',
2270
+ releaseDate: '2025-05-07',
2271
+ lastUpdated: '2025-05-07',
2272
+ openWeights: true,
2273
+ cost: {
2274
+ input: 0.06,
2275
+ output: 0.12,
2276
+ },
2277
+ limit: {
2278
+ context: 128000,
2279
+ output: 128000,
2280
+ },
2281
+ },
2282
+ {
2283
+ id: 'mistralai/devstral-small-2505:free',
2284
+ label: 'Devstral Small 2505 (free)',
2285
+ modalities: {
2286
+ input: ['text'],
2287
+ output: ['text'],
2288
+ },
2289
+ toolCall: true,
2290
+ reasoning: false,
2291
+ attachment: false,
2292
+ temperature: true,
2293
+ knowledge: '2025-05',
2294
+ releaseDate: '2025-05-21',
2295
+ lastUpdated: '2025-05-21',
2296
+ openWeights: true,
2297
+ cost: {
2298
+ input: 0,
2299
+ output: 0,
2300
+ },
2301
+ limit: {
2302
+ context: 32768,
2303
+ output: 32768,
2304
+ },
2305
+ },
2306
+ {
2307
+ id: 'mistralai/devstral-small-2507',
2308
+ label: 'Devstral Small 1.1',
2309
+ modalities: {
2310
+ input: ['text'],
2311
+ output: ['text'],
2312
+ },
2313
+ toolCall: true,
2314
+ reasoning: false,
2315
+ attachment: false,
2316
+ temperature: true,
2317
+ knowledge: '2025-05',
2318
+ releaseDate: '2025-07-10',
2319
+ lastUpdated: '2025-07-10',
2320
+ openWeights: true,
2321
+ cost: {
2322
+ input: 0.1,
2323
+ output: 0.3,
2324
+ },
2325
+ limit: {
2326
+ context: 131072,
2327
+ output: 131072,
2328
+ },
2329
+ },
2330
+ {
2331
+ id: 'mistralai/mistral-7b-instruct:free',
2332
+ label: 'Mistral 7B Instruct (free)',
2333
+ modalities: {
2334
+ input: ['text'],
2335
+ output: ['text'],
2336
+ },
2337
+ toolCall: true,
2338
+ reasoning: false,
2339
+ attachment: false,
2340
+ temperature: true,
2341
+ knowledge: '2024-05',
2342
+ releaseDate: '2024-05-27',
2343
+ lastUpdated: '2024-05-27',
2344
+ openWeights: true,
2345
+ cost: {
2346
+ input: 0,
2347
+ output: 0,
2348
+ },
2349
+ limit: {
2350
+ context: 32768,
2351
+ output: 32768,
2352
+ },
2353
+ },
2354
+ {
2355
+ id: 'mistralai/mistral-medium-3',
2356
+ label: 'Mistral Medium 3',
2357
+ modalities: {
2358
+ input: ['text', 'image'],
2359
+ output: ['text'],
2360
+ },
2361
+ toolCall: true,
2362
+ reasoning: false,
2363
+ attachment: true,
2364
+ temperature: true,
2365
+ knowledge: '2025-05',
2366
+ releaseDate: '2025-05-07',
2367
+ lastUpdated: '2025-05-07',
2368
+ openWeights: false,
2369
+ cost: {
2370
+ input: 0.4,
2371
+ output: 2,
2372
+ },
2373
+ limit: {
2374
+ context: 131072,
2375
+ output: 131072,
2376
+ },
2377
+ },
2378
+ {
2379
+ id: 'mistralai/mistral-medium-3.1',
2380
+ label: 'Mistral Medium 3.1',
2381
+ modalities: {
2382
+ input: ['text', 'image'],
2383
+ output: ['text'],
2384
+ },
2385
+ toolCall: true,
2386
+ reasoning: false,
2387
+ attachment: true,
2388
+ temperature: true,
2389
+ knowledge: '2025-05',
2390
+ releaseDate: '2025-08-12',
2391
+ lastUpdated: '2025-08-12',
2392
+ openWeights: false,
2393
+ cost: {
2394
+ input: 0.4,
2395
+ output: 2,
2396
+ },
2397
+ limit: {
2398
+ context: 262144,
2399
+ output: 262144,
2400
+ },
2401
+ },
2402
+ {
2403
+ id: 'mistralai/mistral-nemo:free',
2404
+ label: 'Mistral Nemo (free)',
2405
+ modalities: {
2406
+ input: ['text'],
2407
+ output: ['text'],
2408
+ },
2409
+ toolCall: true,
2410
+ reasoning: false,
2411
+ attachment: false,
2412
+ temperature: true,
2413
+ knowledge: '2024-07',
2414
+ releaseDate: '2024-07-19',
2415
+ lastUpdated: '2024-07-19',
2416
+ openWeights: true,
2417
+ cost: {
2418
+ input: 0,
2419
+ output: 0,
2420
+ },
2421
+ limit: {
2422
+ context: 131072,
2423
+ output: 131072,
2424
+ },
2425
+ },
2426
+ {
2427
+ id: 'mistralai/mistral-small-3.1-24b-instruct',
2428
+ label: 'Mistral Small 3.1 24B Instruct',
2429
+ modalities: {
2430
+ input: ['text', 'image'],
2431
+ output: ['text'],
2432
+ },
2433
+ toolCall: true,
2434
+ reasoning: false,
2435
+ attachment: true,
2436
+ temperature: true,
2437
+ knowledge: '2024-10',
2438
+ releaseDate: '2025-03-17',
2439
+ lastUpdated: '2025-03-17',
2440
+ openWeights: true,
2441
+ cost: {
2442
+ input: 0,
2443
+ output: 0,
2444
+ },
2445
+ limit: {
2446
+ context: 128000,
2447
+ output: 8192,
2448
+ },
2449
+ },
2450
+ {
2451
+ id: 'mistralai/mistral-small-3.2-24b-instruct',
2452
+ label: 'Mistral Small 3.2 24B Instruct',
2453
+ modalities: {
2454
+ input: ['text', 'image'],
2455
+ output: ['text'],
2456
+ },
2457
+ toolCall: true,
2458
+ reasoning: false,
2459
+ attachment: true,
2460
+ temperature: true,
2461
+ knowledge: '2024-10',
2462
+ releaseDate: '2025-06-20',
2463
+ lastUpdated: '2025-06-20',
2464
+ openWeights: true,
2465
+ cost: {
2466
+ input: 0,
2467
+ output: 0,
2468
+ },
2469
+ limit: {
2470
+ context: 96000,
2471
+ output: 8192,
2472
+ },
2473
+ },
2474
+ {
2475
+ id: 'mistralai/mistral-small-3.2-24b-instruct:free',
2476
+ label: 'Mistral Small 3.2 24B (free)',
2477
+ modalities: {
2478
+ input: ['text', 'image'],
2479
+ output: ['text'],
2480
+ },
2481
+ toolCall: true,
2482
+ reasoning: false,
2483
+ attachment: true,
2484
+ temperature: true,
2485
+ knowledge: '2025-06',
2486
+ releaseDate: '2025-06-20',
2487
+ lastUpdated: '2025-06-20',
2488
+ openWeights: true,
2489
+ cost: {
2490
+ input: 0,
2491
+ output: 0,
2492
+ },
2493
+ limit: {
2494
+ context: 96000,
2495
+ output: 96000,
2496
+ },
2497
+ },
2498
+ {
2499
+ id: 'moonshotai/kimi-dev-72b:free',
2500
+ label: 'Kimi Dev 72b (free)',
2501
+ modalities: {
2502
+ input: ['text'],
2503
+ output: ['text'],
2504
+ },
2505
+ toolCall: true,
2506
+ reasoning: false,
2507
+ attachment: false,
2508
+ temperature: true,
2509
+ knowledge: '2025-06',
2510
+ releaseDate: '2025-06-16',
2511
+ lastUpdated: '2025-06-16',
2512
+ openWeights: true,
2513
+ cost: {
2514
+ input: 0,
2515
+ output: 0,
2516
+ },
2517
+ limit: {
2518
+ context: 131072,
2519
+ output: 131072,
2520
+ },
2521
+ },
2522
+ {
2523
+ id: 'moonshotai/kimi-k2',
2524
+ label: 'Kimi K2',
2525
+ modalities: {
2526
+ input: ['text'],
2527
+ output: ['text'],
2528
+ },
2529
+ toolCall: true,
2530
+ reasoning: false,
2531
+ attachment: false,
2532
+ temperature: true,
2533
+ knowledge: '2024-10',
2534
+ releaseDate: '2025-07-11',
2535
+ lastUpdated: '2025-07-11',
2536
+ openWeights: true,
2537
+ cost: {
2538
+ input: 0.55,
2539
+ output: 2.2,
2540
+ },
2541
+ limit: {
2542
+ context: 131072,
2543
+ output: 32768,
2544
+ },
2545
+ },
2546
+ {
2547
+ id: 'moonshotai/kimi-k2-0905',
2548
+ label: 'Kimi K2 Instruct 0905',
2549
+ modalities: {
2550
+ input: ['text'],
2551
+ output: ['text'],
2552
+ },
2553
+ toolCall: true,
2554
+ reasoning: false,
2555
+ attachment: false,
2556
+ temperature: true,
2557
+ knowledge: '2024-10',
2558
+ releaseDate: '2025-09-05',
2559
+ lastUpdated: '2025-09-05',
2560
+ openWeights: true,
2561
+ cost: {
2562
+ input: 0.6,
2563
+ output: 2.5,
2564
+ },
2565
+ limit: {
2566
+ context: 262144,
2567
+ output: 16384,
2568
+ },
2569
+ },
2570
+ {
2571
+ id: 'moonshotai/kimi-k2:free',
2572
+ label: 'Kimi K2 (free)',
2573
+ modalities: {
2574
+ input: ['text'],
2575
+ output: ['text'],
2576
+ },
2577
+ toolCall: true,
2578
+ reasoning: false,
2579
+ attachment: false,
2580
+ temperature: true,
2581
+ knowledge: '2025-04',
2582
+ releaseDate: '2025-07-11',
2583
+ lastUpdated: '2025-07-11',
2584
+ openWeights: true,
2585
+ cost: {
2586
+ input: 0,
2587
+ output: 0,
2588
+ },
2589
+ limit: {
2590
+ context: 32800,
2591
+ output: 32800,
2592
+ },
2593
+ },
2594
+ {
2595
+ id: 'nousresearch/deephermes-3-llama-3-8b-preview',
2596
+ label: 'DeepHermes 3 Llama 3 8B Preview',
2597
+ modalities: {
2598
+ input: ['text'],
2599
+ output: ['text'],
2600
+ },
2601
+ toolCall: true,
2602
+ reasoning: true,
2603
+ attachment: false,
2604
+ temperature: true,
2605
+ knowledge: '2024-04',
2606
+ releaseDate: '2025-02-28',
2607
+ lastUpdated: '2025-02-28',
2608
+ openWeights: true,
2609
+ cost: {
2610
+ input: 0,
2611
+ output: 0,
2612
+ },
2613
+ limit: {
2614
+ context: 131072,
2615
+ output: 8192,
2616
+ },
2617
+ },
2618
+ {
2619
+ id: 'nousresearch/hermes-4-405b',
2620
+ label: 'Hermes 4 405B',
2621
+ modalities: {
2622
+ input: ['text'],
2623
+ output: ['text'],
2624
+ },
2625
+ toolCall: true,
2626
+ reasoning: true,
2627
+ attachment: false,
2628
+ temperature: true,
2629
+ knowledge: '2023-12',
2630
+ releaseDate: '2025-08-25',
2631
+ lastUpdated: '2025-08-25',
2632
+ openWeights: true,
2633
+ cost: {
2634
+ input: 1,
2635
+ output: 3,
2636
+ },
2637
+ limit: {
2638
+ context: 131072,
2639
+ output: 131072,
2640
+ },
2641
+ },
2642
+ {
2643
+ id: 'nousresearch/hermes-4-70b',
2644
+ label: 'Hermes 4 70B',
2645
+ modalities: {
2646
+ input: ['text'],
2647
+ output: ['text'],
2648
+ },
2649
+ toolCall: true,
2650
+ reasoning: true,
2651
+ attachment: false,
2652
+ temperature: true,
2653
+ knowledge: '2023-12',
2654
+ releaseDate: '2025-08-25',
2655
+ lastUpdated: '2025-08-25',
2656
+ openWeights: true,
2657
+ cost: {
2658
+ input: 0.13,
2659
+ output: 0.4,
2660
+ },
2661
+ limit: {
2662
+ context: 131072,
2663
+ output: 131072,
2664
+ },
2665
+ },
2666
+ {
2667
+ id: 'openai/gpt-4.1',
2668
+ label: 'GPT-4.1',
2669
+ modalities: {
2670
+ input: ['text', 'image'],
2671
+ output: ['text'],
2672
+ },
2673
+ toolCall: true,
2674
+ reasoning: false,
2675
+ attachment: true,
2676
+ temperature: true,
2677
+ knowledge: '2024-04',
2678
+ releaseDate: '2025-04-14',
2679
+ lastUpdated: '2025-04-14',
2680
+ openWeights: false,
2681
+ cost: {
2682
+ input: 2,
2683
+ output: 8,
2684
+ cacheRead: 0.5,
2685
+ },
2686
+ limit: {
2687
+ context: 1047576,
2688
+ output: 32768,
2689
+ },
2690
+ },
2691
+ {
2692
+ id: 'openai/gpt-4.1-mini',
2693
+ label: 'GPT-4.1 Mini',
2694
+ modalities: {
2695
+ input: ['text', 'image'],
2696
+ output: ['text'],
2697
+ },
2698
+ toolCall: true,
2699
+ reasoning: false,
2700
+ attachment: true,
2701
+ temperature: true,
2702
+ knowledge: '2024-04',
2703
+ releaseDate: '2025-04-14',
2704
+ lastUpdated: '2025-04-14',
2705
+ openWeights: false,
2706
+ cost: {
2707
+ input: 0.4,
2708
+ output: 1.6,
2709
+ cacheRead: 0.1,
2710
+ },
2711
+ limit: {
2712
+ context: 1047576,
2713
+ output: 32768,
2714
+ },
2715
+ },
2716
+ {
2717
+ id: 'openai/gpt-4o-mini',
2718
+ label: 'GPT-4o-mini',
2719
+ modalities: {
2720
+ input: ['text', 'image'],
2721
+ output: ['text'],
2722
+ },
2723
+ toolCall: true,
2724
+ reasoning: false,
2725
+ attachment: true,
2726
+ temperature: true,
2727
+ knowledge: '2024-10',
2728
+ releaseDate: '2024-07-18',
2729
+ lastUpdated: '2024-07-18',
2730
+ openWeights: false,
2731
+ cost: {
2732
+ input: 0.15,
2733
+ output: 0.6,
2734
+ cacheRead: 0.08,
2735
+ },
2736
+ limit: {
2737
+ context: 128000,
2738
+ output: 16384,
2739
+ },
2740
+ },
2741
+ {
2742
+ id: 'openai/gpt-5',
2743
+ label: 'GPT-5',
2744
+ modalities: {
2745
+ input: ['text', 'image'],
2746
+ output: ['text'],
2747
+ },
2748
+ toolCall: true,
2749
+ reasoning: true,
2750
+ attachment: true,
2751
+ temperature: true,
2752
+ knowledge: '2024-10-01',
2753
+ releaseDate: '2025-08-07',
2754
+ lastUpdated: '2025-08-07',
2755
+ openWeights: false,
2756
+ cost: {
2757
+ input: 1.25,
2758
+ output: 10,
2759
+ },
2760
+ limit: {
2761
+ context: 400000,
2762
+ output: 128000,
2763
+ },
2764
+ },
2765
+ {
2766
+ id: 'openai/gpt-5-chat',
2767
+ label: 'GPT-5 Chat (latest)',
2768
+ modalities: {
2769
+ input: ['text', 'image'],
2770
+ output: ['text'],
2771
+ },
2772
+ toolCall: false,
2773
+ reasoning: true,
2774
+ attachment: true,
2775
+ temperature: true,
2776
+ knowledge: '2024-09-30',
2777
+ releaseDate: '2025-08-07',
2778
+ lastUpdated: '2025-08-07',
2779
+ openWeights: false,
2780
+ cost: {
2781
+ input: 1.25,
2782
+ output: 10,
2783
+ },
2784
+ limit: {
2785
+ context: 400000,
2786
+ output: 128000,
2787
+ },
2788
+ },
2789
+ {
2790
+ id: 'openai/gpt-5-codex',
2791
+ label: 'GPT-5 Codex',
2792
+ modalities: {
2793
+ input: ['text', 'image'],
2794
+ output: ['text'],
2795
+ },
2796
+ toolCall: true,
2797
+ reasoning: true,
2798
+ attachment: true,
2799
+ temperature: true,
2800
+ knowledge: '2024-10-01',
2801
+ releaseDate: '2025-09-15',
2802
+ lastUpdated: '2025-09-15',
2803
+ openWeights: false,
2804
+ cost: {
2805
+ input: 1.25,
2806
+ output: 10,
2807
+ cacheRead: 0.125,
2808
+ },
2809
+ limit: {
2810
+ context: 400000,
2811
+ output: 128000,
2812
+ },
2813
+ },
2814
+ {
2815
+ id: 'openai/gpt-5-mini',
2816
+ label: 'GPT-5 Mini',
2817
+ modalities: {
2818
+ input: ['text', 'image'],
2819
+ output: ['text'],
2820
+ },
2821
+ toolCall: true,
2822
+ reasoning: true,
2823
+ attachment: true,
2824
+ temperature: true,
2825
+ knowledge: '2024-10-01',
2826
+ releaseDate: '2025-08-07',
2827
+ lastUpdated: '2025-08-07',
2828
+ openWeights: false,
2829
+ cost: {
2830
+ input: 0.25,
2831
+ output: 2,
2832
+ },
2833
+ limit: {
2834
+ context: 400000,
2835
+ output: 128000,
2836
+ },
2837
+ },
2838
+ {
2839
+ id: 'openai/gpt-5-nano',
2840
+ label: 'GPT-5 Nano',
2841
+ modalities: {
2842
+ input: ['text', 'image'],
2843
+ output: ['text'],
2844
+ },
2845
+ toolCall: true,
2846
+ reasoning: true,
2847
+ attachment: true,
2848
+ temperature: true,
2849
+ knowledge: '2024-10-01',
2850
+ releaseDate: '2025-08-07',
2851
+ lastUpdated: '2025-08-07',
2852
+ openWeights: false,
2853
+ cost: {
2854
+ input: 0.05,
2855
+ output: 0.4,
2856
+ },
2857
+ limit: {
2858
+ context: 400000,
2859
+ output: 128000,
2860
+ },
2861
+ },
2862
+ {
2863
+ id: 'openai/gpt-oss-120b',
2864
+ label: 'GPT OSS 120B',
2865
+ modalities: {
2866
+ input: ['text'],
2867
+ output: ['text'],
2868
+ },
2869
+ toolCall: true,
2870
+ reasoning: true,
2871
+ attachment: false,
2872
+ temperature: true,
2873
+ releaseDate: '2025-08-05',
2874
+ lastUpdated: '2025-08-05',
2875
+ openWeights: true,
2876
+ cost: {
2877
+ input: 0.072,
2878
+ output: 0.28,
2879
+ },
2880
+ limit: {
2881
+ context: 131072,
2882
+ output: 32768,
2883
+ },
2884
+ },
2885
+ {
2886
+ id: 'openai/gpt-oss-20b',
2887
+ label: 'GPT OSS 20B',
2888
+ modalities: {
2889
+ input: ['text'],
2890
+ output: ['text'],
2891
+ },
2892
+ toolCall: true,
2893
+ reasoning: true,
2894
+ attachment: false,
2895
+ temperature: true,
2896
+ releaseDate: '2025-08-05',
2897
+ lastUpdated: '2025-08-05',
2898
+ openWeights: true,
2899
+ cost: {
2900
+ input: 0.05,
2901
+ output: 0.2,
2902
+ },
2903
+ limit: {
2904
+ context: 131072,
2905
+ output: 32768,
2906
+ },
2907
+ },
2908
+ {
2909
+ id: 'openai/o4-mini',
2910
+ label: 'o4 Mini',
2911
+ modalities: {
2912
+ input: ['text', 'image'],
2913
+ output: ['text'],
2914
+ },
2915
+ toolCall: true,
2916
+ reasoning: true,
2917
+ attachment: true,
2918
+ temperature: true,
2919
+ knowledge: '2024-06',
2920
+ releaseDate: '2025-04-16',
2921
+ lastUpdated: '2025-04-16',
2922
+ openWeights: false,
2923
+ cost: {
2924
+ input: 1.1,
2925
+ output: 4.4,
2926
+ cacheRead: 0.28,
2927
+ },
2928
+ limit: {
2929
+ context: 200000,
2930
+ output: 100000,
2931
+ },
2932
+ },
2933
+ {
2934
+ id: 'openrouter/cypher-alpha:free',
2935
+ label: 'Cypher Alpha (free)',
2936
+ modalities: {
2937
+ input: ['text'],
2938
+ output: ['text'],
2939
+ },
2940
+ toolCall: true,
2941
+ reasoning: false,
2942
+ attachment: false,
2943
+ temperature: true,
2944
+ knowledge: '2025-07',
2945
+ releaseDate: '2025-07-01',
2946
+ lastUpdated: '2025-07-01',
2947
+ openWeights: false,
2948
+ cost: {
2949
+ input: 0,
2950
+ output: 0,
2951
+ },
2952
+ limit: {
2953
+ context: 1000000,
2954
+ output: 1000000,
2955
+ },
2956
+ },
2957
+ {
2958
+ id: 'openrouter/horizon-alpha',
2959
+ label: 'Horizon Alpha',
2960
+ modalities: {
2961
+ input: ['text', 'image'],
2962
+ output: ['text'],
2963
+ },
2964
+ toolCall: true,
2965
+ reasoning: false,
2966
+ attachment: true,
2967
+ temperature: false,
2968
+ knowledge: '2025-07',
2969
+ releaseDate: '2025-07-30',
2970
+ lastUpdated: '2025-07-30',
2971
+ openWeights: false,
2972
+ cost: {
2973
+ input: 0,
2974
+ output: 0,
2975
+ },
2976
+ limit: {
2977
+ context: 256000,
2978
+ output: 128000,
2979
+ },
2980
+ },
2981
+ {
2982
+ id: 'openrouter/horizon-beta',
2983
+ label: 'Horizon Beta',
2984
+ modalities: {
2985
+ input: ['text', 'image'],
2986
+ output: ['text'],
2987
+ },
2988
+ toolCall: true,
2989
+ reasoning: false,
2990
+ attachment: true,
2991
+ temperature: false,
2992
+ knowledge: '2025-07',
2993
+ releaseDate: '2025-08-01',
2994
+ lastUpdated: '2025-08-01',
2995
+ openWeights: false,
2996
+ cost: {
2997
+ input: 0,
2998
+ output: 0,
2999
+ },
3000
+ limit: {
3001
+ context: 256000,
3002
+ output: 128000,
3003
+ },
3004
+ },
3005
+ {
3006
+ id: 'openrouter/sonoma-dusk-alpha',
3007
+ label: 'Sonoma Dusk Alpha',
3008
+ modalities: {
3009
+ input: ['text', 'image'],
3010
+ output: ['text'],
3011
+ },
3012
+ toolCall: true,
3013
+ reasoning: false,
3014
+ attachment: true,
3015
+ temperature: false,
3016
+ releaseDate: '2024-09-05',
3017
+ lastUpdated: '2024-09-05',
3018
+ openWeights: false,
3019
+ cost: {
3020
+ input: 0,
3021
+ output: 0,
3022
+ },
3023
+ limit: {
3024
+ context: 2000000,
3025
+ output: 2000000,
3026
+ },
3027
+ },
3028
+ {
3029
+ id: 'openrouter/sonoma-sky-alpha',
3030
+ label: 'Sonoma Sky Alpha',
3031
+ modalities: {
3032
+ input: ['text', 'image'],
3033
+ output: ['text'],
3034
+ },
3035
+ toolCall: true,
3036
+ reasoning: false,
3037
+ attachment: true,
3038
+ temperature: false,
3039
+ releaseDate: '2024-09-05',
3040
+ lastUpdated: '2024-09-05',
3041
+ openWeights: false,
3042
+ cost: {
3043
+ input: 0,
3044
+ output: 0,
3045
+ },
3046
+ limit: {
3047
+ context: 2000000,
3048
+ output: 2000000,
3049
+ },
3050
+ },
3051
+ {
3052
+ id: 'qwen/qwen-2.5-coder-32b-instruct',
3053
+ label: 'Qwen2.5 Coder 32B Instruct',
3054
+ modalities: {
3055
+ input: ['text'],
3056
+ output: ['text'],
3057
+ },
3058
+ toolCall: false,
3059
+ reasoning: false,
3060
+ attachment: false,
3061
+ temperature: true,
3062
+ knowledge: '2024-10',
3063
+ releaseDate: '2024-11-11',
3064
+ lastUpdated: '2024-11-11',
3065
+ openWeights: true,
3066
+ cost: {
3067
+ input: 0,
3068
+ output: 0,
3069
+ },
3070
+ limit: {
3071
+ context: 32768,
3072
+ output: 8192,
3073
+ },
3074
+ },
3075
+ {
3076
+ id: 'qwen/qwen2.5-vl-32b-instruct:free',
3077
+ label: 'Qwen2.5 VL 32B Instruct (free)',
3078
+ modalities: {
3079
+ input: ['text', 'image', 'video'],
3080
+ output: ['text'],
3081
+ },
3082
+ toolCall: true,
3083
+ reasoning: false,
3084
+ attachment: true,
3085
+ temperature: true,
3086
+ knowledge: '2025-03',
3087
+ releaseDate: '2025-03-24',
3088
+ lastUpdated: '2025-03-24',
3089
+ openWeights: true,
3090
+ cost: {
3091
+ input: 0,
3092
+ output: 0,
3093
+ },
3094
+ limit: {
3095
+ context: 8192,
3096
+ output: 8192,
3097
+ },
3098
+ },
3099
+ {
3100
+ id: 'qwen/qwen2.5-vl-72b-instruct',
3101
+ label: 'Qwen2.5 VL 72B Instruct',
3102
+ modalities: {
3103
+ input: ['text', 'image'],
3104
+ output: ['text'],
3105
+ },
3106
+ toolCall: false,
3107
+ reasoning: false,
3108
+ attachment: true,
3109
+ temperature: true,
3110
+ knowledge: '2024-10',
3111
+ releaseDate: '2025-02-01',
3112
+ lastUpdated: '2025-02-01',
3113
+ openWeights: true,
3114
+ cost: {
3115
+ input: 0,
3116
+ output: 0,
3117
+ },
3118
+ limit: {
3119
+ context: 32768,
3120
+ output: 8192,
3121
+ },
3122
+ },
3123
+ {
3124
+ id: 'qwen/qwen2.5-vl-72b-instruct:free',
3125
+ label: 'Qwen2.5 VL 72B Instruct (free)',
3126
+ modalities: {
3127
+ input: ['text', 'image'],
3128
+ output: ['text'],
3129
+ },
3130
+ toolCall: true,
3131
+ reasoning: false,
3132
+ attachment: true,
3133
+ temperature: true,
3134
+ knowledge: '2025-02',
3135
+ releaseDate: '2025-02-01',
3136
+ lastUpdated: '2025-02-01',
3137
+ openWeights: true,
3138
+ cost: {
3139
+ input: 0,
3140
+ output: 0,
3141
+ },
3142
+ limit: {
3143
+ context: 32768,
3144
+ output: 32768,
3145
+ },
3146
+ },
3147
+ {
3148
+ id: 'qwen/qwen3-14b:free',
3149
+ label: 'Qwen3 14B (free)',
3150
+ modalities: {
3151
+ input: ['text'],
3152
+ output: ['text'],
3153
+ },
3154
+ toolCall: true,
3155
+ reasoning: true,
3156
+ attachment: false,
3157
+ temperature: true,
3158
+ knowledge: '2025-04',
3159
+ releaseDate: '2025-04-28',
3160
+ lastUpdated: '2025-04-28',
3161
+ openWeights: true,
3162
+ cost: {
3163
+ input: 0,
3164
+ output: 0,
3165
+ },
3166
+ limit: {
3167
+ context: 40960,
3168
+ output: 40960,
3169
+ },
3170
+ },
3171
+ {
3172
+ id: 'qwen/qwen3-235b-a22b-07-25',
3173
+ label: 'Qwen3 235B A22B Instruct 2507',
3174
+ modalities: {
3175
+ input: ['text'],
3176
+ output: ['text'],
3177
+ },
3178
+ toolCall: true,
3179
+ reasoning: false,
3180
+ attachment: false,
3181
+ temperature: true,
3182
+ knowledge: '2025-04',
3183
+ releaseDate: '2025-04-28',
3184
+ lastUpdated: '2025-07-21',
3185
+ openWeights: true,
3186
+ cost: {
3187
+ input: 0.15,
3188
+ output: 0.85,
3189
+ },
3190
+ limit: {
3191
+ context: 262144,
3192
+ output: 131072,
3193
+ },
3194
+ },
3195
+ {
3196
+ id: 'qwen/qwen3-235b-a22b-07-25:free',
3197
+ label: 'Qwen3 235B A22B Instruct 2507 (free)',
3198
+ modalities: {
3199
+ input: ['text'],
3200
+ output: ['text'],
3201
+ },
3202
+ toolCall: true,
3203
+ reasoning: false,
3204
+ attachment: false,
3205
+ temperature: true,
3206
+ knowledge: '2025-04',
3207
+ releaseDate: '2025-04-28',
3208
+ lastUpdated: '2025-07-21',
3209
+ openWeights: true,
3210
+ cost: {
3211
+ input: 0,
3212
+ output: 0,
3213
+ },
3214
+ limit: {
3215
+ context: 262144,
3216
+ output: 131072,
3217
+ },
3218
+ },
3219
+ {
3220
+ id: 'qwen/qwen3-235b-a22b-thinking-2507',
3221
+ label: 'Qwen3 235B A22B Thinking 2507',
3222
+ modalities: {
3223
+ input: ['text'],
3224
+ output: ['text'],
3225
+ },
3226
+ toolCall: true,
3227
+ reasoning: true,
3228
+ attachment: false,
3229
+ temperature: true,
3230
+ knowledge: '2025-04',
3231
+ releaseDate: '2025-07-25',
3232
+ lastUpdated: '2025-07-25',
3233
+ openWeights: true,
3234
+ cost: {
3235
+ input: 0.078,
3236
+ output: 0.312,
3237
+ },
3238
+ limit: {
3239
+ context: 262144,
3240
+ output: 81920,
3241
+ },
3242
+ },
3243
+ {
3244
+ id: 'qwen/qwen3-235b-a22b:free',
3245
+ label: 'Qwen3 235B A22B (free)',
3246
+ modalities: {
3247
+ input: ['text'],
3248
+ output: ['text'],
3249
+ },
3250
+ toolCall: true,
3251
+ reasoning: true,
3252
+ attachment: false,
3253
+ temperature: true,
3254
+ knowledge: '2025-04',
3255
+ releaseDate: '2025-04-28',
3256
+ lastUpdated: '2025-04-28',
3257
+ openWeights: true,
3258
+ cost: {
3259
+ input: 0,
3260
+ output: 0,
3261
+ },
3262
+ limit: {
3263
+ context: 131072,
3264
+ output: 131072,
3265
+ },
3266
+ },
3267
+ {
3268
+ id: 'qwen/qwen3-30b-a3b-instruct-2507',
3269
+ label: 'Qwen3 30B A3B Instruct 2507',
3270
+ modalities: {
3271
+ input: ['text'],
3272
+ output: ['text'],
3273
+ },
3274
+ toolCall: false,
3275
+ reasoning: false,
3276
+ attachment: false,
3277
+ temperature: true,
3278
+ knowledge: '2025-04',
3279
+ releaseDate: '2025-07-29',
3280
+ lastUpdated: '2025-07-29',
3281
+ openWeights: true,
3282
+ cost: {
3283
+ input: 0.2,
3284
+ output: 0.8,
3285
+ },
3286
+ limit: {
3287
+ context: 131072,
3288
+ output: 33000,
3289
+ },
3290
+ },
3291
+ {
3292
+ id: 'qwen/qwen3-30b-a3b:free',
3293
+ label: 'Qwen3 30B A3B (free)',
3294
+ modalities: {
3295
+ input: ['text'],
3296
+ output: ['text'],
3297
+ },
3298
+ toolCall: true,
3299
+ reasoning: true,
3300
+ attachment: false,
3301
+ temperature: true,
3302
+ knowledge: '2025-04',
3303
+ releaseDate: '2025-04-28',
3304
+ lastUpdated: '2025-04-28',
3305
+ openWeights: true,
3306
+ cost: {
3307
+ input: 0,
3308
+ output: 0,
3309
+ },
3310
+ limit: {
3311
+ context: 40960,
3312
+ output: 40960,
3313
+ },
3314
+ },
3315
+ {
3316
+ id: 'qwen/qwen3-32b:free',
3317
+ label: 'Qwen3 32B (free)',
3318
+ modalities: {
3319
+ input: ['text'],
3320
+ output: ['text'],
3321
+ },
3322
+ toolCall: true,
3323
+ reasoning: true,
3324
+ attachment: false,
3325
+ temperature: true,
3326
+ knowledge: '2025-04',
3327
+ releaseDate: '2025-04-28',
3328
+ lastUpdated: '2025-04-28',
3329
+ openWeights: true,
3330
+ cost: {
3331
+ input: 0,
3332
+ output: 0,
3333
+ },
3334
+ limit: {
3335
+ context: 40960,
3336
+ output: 40960,
3337
+ },
3338
+ },
3339
+ {
3340
+ id: 'qwen/qwen3-8b:free',
3341
+ label: 'Qwen3 8B (free)',
3342
+ modalities: {
3343
+ input: ['text'],
3344
+ output: ['text'],
3345
+ },
3346
+ toolCall: true,
3347
+ reasoning: true,
3348
+ attachment: false,
3349
+ temperature: true,
3350
+ knowledge: '2025-04',
3351
+ releaseDate: '2025-04-28',
3352
+ lastUpdated: '2025-04-28',
3353
+ openWeights: true,
3354
+ cost: {
3355
+ input: 0,
3356
+ output: 0,
3357
+ },
3358
+ limit: {
3359
+ context: 40960,
3360
+ output: 40960,
3361
+ },
3362
+ },
3363
+ {
3364
+ id: 'qwen/qwen3-coder',
3365
+ label: 'Qwen3 Coder',
3366
+ modalities: {
3367
+ input: ['text'],
3368
+ output: ['text'],
3369
+ },
3370
+ toolCall: true,
3371
+ reasoning: false,
3372
+ attachment: false,
3373
+ temperature: true,
3374
+ knowledge: '2025-04',
3375
+ releaseDate: '2025-07-23',
3376
+ lastUpdated: '2025-07-23',
3377
+ openWeights: true,
3378
+ cost: {
3379
+ input: 0.3,
3380
+ output: 1.2,
3381
+ },
3382
+ limit: {
3383
+ context: 262144,
3384
+ output: 66536,
3385
+ },
3386
+ },
3387
+ {
3388
+ id: 'qwen/qwen3-coder:free',
3389
+ label: 'Qwen3 Coder 480B A35B Instruct (free)',
3390
+ modalities: {
3391
+ input: ['text'],
3392
+ output: ['text'],
3393
+ },
3394
+ toolCall: true,
3395
+ reasoning: false,
3396
+ attachment: false,
3397
+ temperature: true,
3398
+ knowledge: '2025-04',
3399
+ releaseDate: '2025-07-23',
3400
+ lastUpdated: '2025-07-23',
3401
+ openWeights: true,
3402
+ cost: {
3403
+ input: 0,
3404
+ output: 0,
3405
+ },
3406
+ limit: {
3407
+ context: 262144,
3408
+ output: 66536,
3409
+ },
3410
+ },
3411
+ {
3412
+ id: 'qwen/qwen3-max',
3413
+ label: 'Qwen3 Max',
3414
+ modalities: {
3415
+ input: ['text'],
3416
+ output: ['text'],
3417
+ },
3418
+ toolCall: true,
3419
+ reasoning: true,
3420
+ attachment: false,
3421
+ temperature: true,
3422
+ releaseDate: '2025-09-05',
3423
+ lastUpdated: '2025-09-05',
3424
+ openWeights: false,
3425
+ cost: {
3426
+ input: 1.2,
3427
+ output: 6,
3428
+ },
3429
+ limit: {
3430
+ context: 262144,
3431
+ output: 32768,
3432
+ },
3433
+ },
3434
+ {
3435
+ id: 'qwen/qwen3-next-80b-a3b-instruct',
3436
+ label: 'Qwen3 Next 80B A3B Instruct',
3437
+ modalities: {
3438
+ input: ['text'],
3439
+ output: ['text'],
3440
+ },
3441
+ toolCall: true,
3442
+ reasoning: false,
3443
+ attachment: false,
3444
+ temperature: true,
3445
+ knowledge: '2025-04',
3446
+ releaseDate: '2025-09-11',
3447
+ lastUpdated: '2025-09-11',
3448
+ openWeights: true,
3449
+ cost: {
3450
+ input: 0.14,
3451
+ output: 1.4,
3452
+ },
3453
+ limit: {
3454
+ context: 262144,
3455
+ output: 262144,
3456
+ },
3457
+ },
3458
+ {
3459
+ id: 'qwen/qwq-32b:free',
3460
+ label: 'QwQ 32B (free)',
3461
+ modalities: {
3462
+ input: ['text'],
3463
+ output: ['text'],
3464
+ },
3465
+ toolCall: true,
3466
+ reasoning: true,
3467
+ attachment: false,
3468
+ temperature: true,
3469
+ knowledge: '2025-03',
3470
+ releaseDate: '2025-03-05',
3471
+ lastUpdated: '2025-03-05',
3472
+ openWeights: true,
3473
+ cost: {
3474
+ input: 0,
3475
+ output: 0,
3476
+ },
3477
+ limit: {
3478
+ context: 32768,
3479
+ output: 32768,
3480
+ },
3481
+ },
3482
+ {
3483
+ id: 'rekaai/reka-flash-3',
3484
+ label: 'Reka Flash 3',
3485
+ modalities: {
3486
+ input: ['text'],
3487
+ output: ['text'],
3488
+ },
3489
+ toolCall: true,
3490
+ reasoning: true,
3491
+ attachment: false,
3492
+ temperature: true,
3493
+ knowledge: '2024-10',
3494
+ releaseDate: '2025-03-12',
3495
+ lastUpdated: '2025-03-12',
3496
+ openWeights: true,
3497
+ cost: {
3498
+ input: 0,
3499
+ output: 0,
3500
+ },
3501
+ limit: {
3502
+ context: 32768,
3503
+ output: 8192,
3504
+ },
3505
+ },
3506
+ {
3507
+ id: 'sarvamai/sarvam-m:free',
3508
+ label: 'Sarvam-M (free)',
3509
+ modalities: {
3510
+ input: ['text'],
3511
+ output: ['text'],
3512
+ },
3513
+ toolCall: true,
3514
+ reasoning: true,
3515
+ attachment: false,
3516
+ temperature: true,
3517
+ knowledge: '2025-05',
3518
+ releaseDate: '2025-05-25',
3519
+ lastUpdated: '2025-05-25',
3520
+ openWeights: true,
3521
+ cost: {
3522
+ input: 0,
3523
+ output: 0,
3524
+ },
3525
+ limit: {
3526
+ context: 32768,
3527
+ output: 32768,
3528
+ },
3529
+ },
3530
+ {
3531
+ id: 'thudm/glm-z1-32b:free',
3532
+ label: 'GLM Z1 32B (free)',
3533
+ modalities: {
3534
+ input: ['text'],
3535
+ output: ['text'],
3536
+ },
3537
+ toolCall: true,
3538
+ reasoning: true,
3539
+ attachment: false,
3540
+ temperature: true,
3541
+ knowledge: '2025-04',
3542
+ releaseDate: '2025-04-17',
3543
+ lastUpdated: '2025-04-17',
3544
+ openWeights: true,
3545
+ cost: {
3546
+ input: 0,
3547
+ output: 0,
3548
+ },
3549
+ limit: {
3550
+ context: 32768,
3551
+ output: 32768,
3552
+ },
3553
+ },
3554
+ {
3555
+ id: 'tngtech/deepseek-r1t2-chimera:free',
3556
+ label: 'DeepSeek R1T2 Chimera (free)',
3557
+ modalities: {
3558
+ input: ['text'],
3559
+ output: ['text'],
3560
+ },
3561
+ toolCall: false,
3562
+ reasoning: true,
3563
+ attachment: false,
3564
+ temperature: true,
3565
+ knowledge: '2025-07',
3566
+ releaseDate: '2025-07-08',
3567
+ lastUpdated: '2025-07-08',
3568
+ openWeights: true,
3569
+ cost: {
3570
+ input: 0,
3571
+ output: 0,
3572
+ },
3573
+ limit: {
3574
+ context: 163840,
3575
+ output: 163840,
3576
+ },
3577
+ },
3578
+ {
3579
+ id: 'x-ai/grok-3',
3580
+ label: 'Grok 3',
3581
+ modalities: {
3582
+ input: ['text'],
3583
+ output: ['text'],
3584
+ },
3585
+ toolCall: true,
3586
+ reasoning: false,
3587
+ attachment: false,
3588
+ temperature: true,
3589
+ knowledge: '2024-11',
3590
+ releaseDate: '2025-02-17',
3591
+ lastUpdated: '2025-02-17',
3592
+ openWeights: false,
3593
+ cost: {
3594
+ input: 3,
3595
+ output: 15,
3596
+ cacheRead: 0.75,
3597
+ },
3598
+ limit: {
3599
+ context: 131072,
3600
+ output: 8192,
3601
+ },
3602
+ },
3603
+ {
3604
+ id: 'x-ai/grok-3-beta',
3605
+ label: 'Grok 3 Beta',
3606
+ modalities: {
3607
+ input: ['text'],
3608
+ output: ['text'],
3609
+ },
3610
+ toolCall: true,
3611
+ reasoning: false,
3612
+ attachment: false,
3613
+ temperature: true,
3614
+ knowledge: '2024-11',
3615
+ releaseDate: '2025-02-17',
3616
+ lastUpdated: '2025-02-17',
3617
+ openWeights: false,
3618
+ cost: {
3619
+ input: 3,
3620
+ output: 15,
3621
+ cacheRead: 0.75,
3622
+ },
3623
+ limit: {
3624
+ context: 131072,
3625
+ output: 8192,
3626
+ },
3627
+ },
3628
+ {
3629
+ id: 'x-ai/grok-3-mini',
3630
+ label: 'Grok 3 Mini',
3631
+ modalities: {
3632
+ input: ['text'],
3633
+ output: ['text'],
3634
+ },
3635
+ toolCall: true,
3636
+ reasoning: true,
3637
+ attachment: false,
3638
+ temperature: true,
3639
+ knowledge: '2024-11',
3640
+ releaseDate: '2025-02-17',
3641
+ lastUpdated: '2025-02-17',
3642
+ openWeights: false,
3643
+ cost: {
3644
+ input: 0.3,
3645
+ output: 0.5,
3646
+ cacheRead: 0.075,
3647
+ },
3648
+ limit: {
3649
+ context: 131072,
3650
+ output: 8192,
3651
+ },
3652
+ },
3653
+ {
3654
+ id: 'x-ai/grok-3-mini-beta',
3655
+ label: 'Grok 3 Mini Beta',
3656
+ modalities: {
3657
+ input: ['text'],
3658
+ output: ['text'],
3659
+ },
3660
+ toolCall: true,
3661
+ reasoning: true,
3662
+ attachment: false,
3663
+ temperature: true,
3664
+ knowledge: '2024-11',
3665
+ releaseDate: '2025-02-17',
3666
+ lastUpdated: '2025-02-17',
3667
+ openWeights: false,
3668
+ cost: {
3669
+ input: 0.3,
3670
+ output: 0.5,
3671
+ cacheRead: 0.075,
3672
+ },
3673
+ limit: {
3674
+ context: 131072,
3675
+ output: 8192,
3676
+ },
3677
+ },
3678
+ {
3679
+ id: 'x-ai/grok-4',
3680
+ label: 'Grok 4',
3681
+ modalities: {
3682
+ input: ['text'],
3683
+ output: ['text'],
3684
+ },
3685
+ toolCall: true,
3686
+ reasoning: true,
3687
+ attachment: false,
3688
+ temperature: true,
3689
+ knowledge: '2025-07',
3690
+ releaseDate: '2025-07-09',
3691
+ lastUpdated: '2025-07-09',
3692
+ openWeights: false,
3693
+ cost: {
3694
+ input: 3,
3695
+ output: 15,
3696
+ cacheRead: 0.75,
3697
+ },
3698
+ limit: {
3699
+ context: 256000,
3700
+ output: 64000,
3701
+ },
3702
+ },
3703
+ {
3704
+ id: 'x-ai/grok-4-fast',
3705
+ label: 'Grok 4 Fast',
3706
+ modalities: {
3707
+ input: ['text', 'image'],
3708
+ output: ['text'],
3709
+ },
3710
+ toolCall: true,
3711
+ reasoning: true,
3712
+ attachment: false,
3713
+ temperature: true,
3714
+ knowledge: '2024-11',
3715
+ releaseDate: '2025-08-19',
3716
+ lastUpdated: '2025-08-19',
3717
+ openWeights: false,
3718
+ cost: {
3719
+ input: 0.2,
3720
+ output: 0.5,
3721
+ cacheRead: 0.05,
3722
+ },
3723
+ limit: {
3724
+ context: 2000000,
3725
+ output: 30000,
3726
+ },
3727
+ },
3728
+ {
3729
+ id: 'x-ai/grok-4-fast:free',
3730
+ label: 'Grok 4 Fast (free)',
3731
+ modalities: {
3732
+ input: ['text', 'image'],
3733
+ output: ['text'],
3734
+ },
3735
+ toolCall: true,
3736
+ reasoning: true,
3737
+ attachment: false,
3738
+ temperature: true,
3739
+ knowledge: '2024-11',
3740
+ releaseDate: '2025-08-19',
3741
+ lastUpdated: '2025-08-19',
3742
+ openWeights: false,
3743
+ cost: {
3744
+ input: 0,
3745
+ output: 0,
3746
+ cacheRead: 0,
3747
+ },
3748
+ limit: {
3749
+ context: 2000000,
3750
+ output: 2000000,
3751
+ },
3752
+ },
3753
+ {
3754
+ id: 'x-ai/grok-code-fast-1',
3755
+ label: 'Grok Code Fast 1',
3756
+ modalities: {
3757
+ input: ['text'],
3758
+ output: ['text'],
3759
+ },
3760
+ toolCall: true,
3761
+ reasoning: true,
3762
+ attachment: false,
3763
+ temperature: true,
3764
+ knowledge: '2025-08',
3765
+ releaseDate: '2025-08-26',
3766
+ lastUpdated: '2025-08-26',
3767
+ openWeights: false,
3768
+ cost: {
3769
+ input: 0.2,
3770
+ output: 1.5,
3771
+ cacheRead: 0.02,
3772
+ },
3773
+ limit: {
3774
+ context: 256000,
3775
+ output: 10000,
3776
+ },
3777
+ },
3778
+ {
3779
+ id: 'z-ai/glm-4.5',
3780
+ label: 'GLM 4.5',
3781
+ modalities: {
3782
+ input: ['text'],
3783
+ output: ['text'],
3784
+ },
3785
+ toolCall: true,
3786
+ reasoning: true,
3787
+ attachment: false,
3788
+ temperature: true,
3789
+ knowledge: '2025-04',
3790
+ releaseDate: '2025-07-28',
3791
+ lastUpdated: '2025-07-28',
3792
+ openWeights: true,
3793
+ cost: {
3794
+ input: 0.6,
3795
+ output: 2.2,
3796
+ },
3797
+ limit: {
3798
+ context: 128000,
3799
+ output: 96000,
3800
+ },
3801
+ },
3802
+ {
3803
+ id: 'z-ai/glm-4.5-air',
3804
+ label: 'GLM 4.5 Air',
3805
+ modalities: {
3806
+ input: ['text'],
3807
+ output: ['text'],
3808
+ },
3809
+ toolCall: true,
3810
+ reasoning: true,
3811
+ attachment: false,
3812
+ temperature: true,
3813
+ knowledge: '2025-04',
3814
+ releaseDate: '2025-07-28',
3815
+ lastUpdated: '2025-07-28',
3816
+ openWeights: true,
3817
+ cost: {
3818
+ input: 0.2,
3819
+ output: 1.1,
3820
+ },
3821
+ limit: {
3822
+ context: 128000,
3823
+ output: 96000,
3824
+ },
3825
+ },
3826
+ {
3827
+ id: 'z-ai/glm-4.5-air:free',
3828
+ label: 'GLM 4.5 Air (free)',
3829
+ modalities: {
3830
+ input: ['text'],
3831
+ output: ['text'],
3832
+ },
3833
+ toolCall: false,
3834
+ reasoning: true,
3835
+ attachment: false,
3836
+ temperature: true,
3837
+ knowledge: '2025-04',
3838
+ releaseDate: '2025-07-28',
3839
+ lastUpdated: '2025-07-28',
3840
+ openWeights: true,
3841
+ cost: {
3842
+ input: 0,
3843
+ output: 0,
3844
+ },
3845
+ limit: {
3846
+ context: 128000,
3847
+ output: 96000,
3848
+ },
3849
+ },
3850
+ {
3851
+ id: 'z-ai/glm-4.5v',
3852
+ label: 'GLM 4.5V',
3853
+ modalities: {
3854
+ input: ['text', 'image', 'video'],
3855
+ output: ['text'],
3856
+ },
3857
+ toolCall: true,
3858
+ reasoning: true,
3859
+ attachment: true,
3860
+ temperature: true,
3861
+ knowledge: '2025-04',
3862
+ releaseDate: '2025-08-11',
3863
+ lastUpdated: '2025-08-11',
3864
+ openWeights: true,
3865
+ cost: {
3866
+ input: 0.6,
3867
+ output: 1.8,
3868
+ },
3869
+ limit: {
3870
+ context: 64000,
3871
+ output: 16384,
3872
+ },
3873
+ },
3874
+ {
3875
+ id: 'z-ai/glm-4.6',
3876
+ label: 'GLM 4.6',
3877
+ modalities: {
3878
+ input: ['text'],
3879
+ output: ['text'],
3880
+ },
3881
+ toolCall: true,
3882
+ reasoning: true,
3883
+ attachment: false,
3884
+ temperature: true,
3885
+ knowledge: '2025-09',
3886
+ releaseDate: '2025-09-30',
3887
+ lastUpdated: '2025-09-30',
3888
+ openWeights: true,
3889
+ cost: {
3890
+ input: 0.6,
3891
+ output: 2.2,
3892
+ cacheRead: 0.11,
3893
+ },
3894
+ limit: {
3895
+ context: 200000,
3896
+ output: 128000,
3897
+ },
3898
+ },
3899
+ ],
3900
+ },
3901
+ opencode: {
3902
+ models: [
3903
+ {
3904
+ id: 'claude-3-5-haiku',
3905
+ label: 'Claude Haiku 3.5',
3906
+ modalities: {
3907
+ input: ['text', 'image'],
3908
+ output: ['text'],
3909
+ },
3910
+ toolCall: true,
3911
+ reasoning: false,
3912
+ attachment: true,
3913
+ temperature: true,
3914
+ knowledge: '2024-07-31',
3915
+ releaseDate: '2024-10-22',
3916
+ lastUpdated: '2024-10-22',
3917
+ openWeights: false,
3918
+ cost: {
3919
+ input: 0.8,
3920
+ output: 4,
3921
+ cacheRead: 0.08,
3922
+ },
3923
+ limit: {
3924
+ context: 200000,
3925
+ output: 8192,
3926
+ },
3927
+ },
3928
+ {
3929
+ id: 'claude-opus-4-1',
3930
+ label: 'Claude Opus 4.1',
3931
+ modalities: {
3932
+ input: ['text', 'image'],
3933
+ output: ['text'],
3934
+ },
3935
+ toolCall: true,
3936
+ reasoning: true,
3937
+ attachment: true,
3938
+ temperature: true,
3939
+ knowledge: '2025-03-31',
3940
+ releaseDate: '2025-08-05',
3941
+ lastUpdated: '2025-08-05',
3942
+ openWeights: false,
3943
+ cost: {
3944
+ input: 15,
3945
+ output: 75,
3946
+ cacheRead: 1.5,
3947
+ },
3948
+ limit: {
3949
+ context: 200000,
3950
+ output: 32000,
3951
+ },
3952
+ },
3953
+ {
3954
+ id: 'claude-sonnet-4',
3955
+ label: 'Claude Sonnet 4',
3956
+ modalities: {
3957
+ input: ['text', 'image'],
3958
+ output: ['text'],
3959
+ },
3960
+ toolCall: true,
3961
+ reasoning: true,
3962
+ attachment: true,
3963
+ temperature: true,
3964
+ knowledge: '2025-03-31',
3965
+ releaseDate: '2025-05-22',
3966
+ lastUpdated: '2025-05-22',
3967
+ openWeights: false,
3968
+ cost: {
3969
+ input: 3,
3970
+ output: 15,
3971
+ cacheRead: 0.3,
3972
+ },
3973
+ limit: {
3974
+ context: 1000000,
3975
+ output: 64000,
3976
+ },
3977
+ },
3978
+ {
3979
+ id: 'claude-sonnet-4-5',
3980
+ label: 'Claude Sonnet 4.5',
3981
+ modalities: {
3982
+ input: ['text', 'image'],
3983
+ output: ['text'],
3984
+ },
3985
+ toolCall: true,
3986
+ reasoning: true,
3987
+ attachment: true,
3988
+ temperature: true,
3989
+ knowledge: '2025-07-31',
3990
+ releaseDate: '2025-09-29',
3991
+ lastUpdated: '2025-09-29',
3992
+ openWeights: false,
3993
+ cost: {
3994
+ input: 3,
3995
+ output: 15,
3996
+ cacheRead: 0.3,
3997
+ },
3998
+ limit: {
3999
+ context: 1000000,
4000
+ output: 64000,
4001
+ },
4002
+ },
4003
+ {
4004
+ id: 'code-supernova',
4005
+ label: 'Code Supernova 1M',
4006
+ modalities: {
4007
+ input: ['text', 'image'],
4008
+ output: ['text'],
4009
+ },
4010
+ toolCall: true,
4011
+ reasoning: true,
4012
+ attachment: true,
4013
+ temperature: true,
4014
+ releaseDate: '2025-09-19',
4015
+ lastUpdated: '2025-09-19',
4016
+ openWeights: false,
4017
+ cost: {
4018
+ input: 0,
4019
+ output: 0,
4020
+ cacheRead: 0,
4021
+ },
4022
+ limit: {
4023
+ context: 1000000,
4024
+ output: 1000000,
4025
+ },
4026
+ },
4027
+ {
4028
+ id: 'glm-4.6',
4029
+ label: 'GLM-4.6',
4030
+ modalities: {
4031
+ input: ['text'],
4032
+ output: ['text'],
4033
+ },
4034
+ toolCall: true,
4035
+ reasoning: true,
4036
+ attachment: false,
4037
+ temperature: true,
4038
+ knowledge: '2025-04',
4039
+ releaseDate: '2025-09-30',
4040
+ lastUpdated: '2025-09-30',
4041
+ openWeights: true,
4042
+ cost: {
4043
+ input: 0.6,
4044
+ output: 2.2,
4045
+ cacheRead: 0.11,
4046
+ },
4047
+ limit: {
4048
+ context: 204800,
4049
+ output: 131072,
4050
+ },
4051
+ },
4052
+ {
4053
+ id: 'gpt-5',
4054
+ label: 'GPT-5',
4055
+ modalities: {
4056
+ input: ['text', 'image'],
4057
+ output: ['text'],
4058
+ },
4059
+ toolCall: true,
4060
+ reasoning: true,
4061
+ attachment: true,
4062
+ temperature: false,
4063
+ knowledge: '2024-09-30',
4064
+ releaseDate: '2025-08-07',
4065
+ lastUpdated: '2025-08-07',
4066
+ openWeights: false,
4067
+ cost: {
4068
+ input: 1.25,
4069
+ output: 10,
4070
+ cacheRead: 0.125,
4071
+ },
4072
+ limit: {
4073
+ context: 400000,
4074
+ output: 128000,
4075
+ },
4076
+ },
4077
+ {
4078
+ id: 'gpt-5-codex',
4079
+ label: 'GPT-5-Codex',
4080
+ modalities: {
4081
+ input: ['text', 'image'],
4082
+ output: ['text'],
4083
+ },
4084
+ toolCall: true,
4085
+ reasoning: true,
4086
+ attachment: true,
4087
+ temperature: false,
4088
+ knowledge: '2024-09-30',
4089
+ releaseDate: '2025-08-07',
4090
+ lastUpdated: '2025-08-07',
4091
+ openWeights: false,
4092
+ cost: {
4093
+ input: 1.25,
4094
+ output: 10,
4095
+ cacheRead: 0.125,
4096
+ },
4097
+ limit: {
4098
+ context: 400000,
4099
+ output: 128000,
4100
+ },
4101
+ },
4102
+ {
4103
+ id: 'grok-code',
4104
+ label: 'Grok Code Fast 1',
4105
+ modalities: {
4106
+ input: ['text'],
4107
+ output: ['text'],
4108
+ },
4109
+ toolCall: true,
4110
+ reasoning: true,
4111
+ attachment: true,
4112
+ temperature: true,
4113
+ releaseDate: '2025-08-20',
4114
+ lastUpdated: '2025-08-20',
4115
+ openWeights: false,
4116
+ cost: {
4117
+ input: 0,
4118
+ output: 0,
4119
+ cacheRead: 0,
4120
+ },
4121
+ limit: {
4122
+ context: 256000,
4123
+ output: 256000,
4124
+ },
4125
+ },
4126
+ {
4127
+ id: 'kimi-k2',
4128
+ label: 'Kimi K2',
4129
+ modalities: {
4130
+ input: ['text'],
4131
+ output: ['text'],
4132
+ },
4133
+ toolCall: true,
4134
+ reasoning: false,
4135
+ attachment: false,
4136
+ temperature: true,
4137
+ knowledge: '2024-10',
4138
+ releaseDate: '2025-09-05',
4139
+ lastUpdated: '2025-09-05',
4140
+ openWeights: true,
4141
+ cost: {
4142
+ input: 0.6,
4143
+ output: 2.5,
4144
+ cacheRead: 0.36,
4145
+ },
4146
+ limit: {
4147
+ context: 262144,
4148
+ output: 262144,
4149
+ },
4150
+ },
4151
+ {
4152
+ id: 'qwen3-coder',
4153
+ label: 'Qwen3 Coder',
4154
+ modalities: {
4155
+ input: ['text'],
4156
+ output: ['text'],
4157
+ },
4158
+ toolCall: true,
4159
+ reasoning: false,
4160
+ attachment: false,
4161
+ temperature: true,
4162
+ knowledge: '2025-04',
4163
+ releaseDate: '2025-07-23',
4164
+ lastUpdated: '2025-07-23',
4165
+ openWeights: true,
4166
+ cost: {
4167
+ input: 0.45,
4168
+ output: 1.8,
4169
+ },
4170
+ limit: {
4171
+ context: 262144,
4172
+ output: 65536,
4173
+ },
4174
+ },
4175
+ {
4176
+ id: 'qwen3-max',
4177
+ label: 'Qwen3 Max',
4178
+ modalities: {
4179
+ input: ['text'],
4180
+ output: ['text'],
4181
+ },
4182
+ toolCall: true,
4183
+ reasoning: true,
4184
+ attachment: false,
4185
+ temperature: true,
4186
+ knowledge: '2025-04',
4187
+ releaseDate: '2025-09-05',
4188
+ lastUpdated: '2025-09-05',
4189
+ openWeights: true,
4190
+ cost: {
4191
+ input: 1.6,
4192
+ output: 6.4,
4193
+ },
4194
+ limit: {
4195
+ context: 262144,
4196
+ output: 65536,
4197
+ },
4198
+ },
4199
+ ],
4200
+ },
4201
+ } as const satisfies Record<ProviderId, { models: ModelInfo[] }>;