-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathmodels.yml
More file actions
1154 lines (1038 loc) · 41.2 KB
/
Copy pathmodels.yml
File metadata and controls
1154 lines (1038 loc) · 41.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
anthropic:
- name: Claude Fable 5
model: claude-fable-5
description: "Anthropic's most capable widely released Mythos-class model, built for the most demanding reasoning and long-horizon agentic work"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image, pdf]
output_types: [text]
release_date: 2026-06-09
cost: {input: 10, output: 50}
- name: Claude Sonnet 5
model: claude-sonnet-5
description: "Anthropic's most agentic Sonnet model yet, built for planning, tool use, and autonomous multi-step work at Sonnet pricing"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image, pdf]
output_types: [text]
release_date: 2026-06-30
cost: {input: 2, output: 10}
- name: Claude Opus 4.8
model: claude-opus-4-8
description: "Modest but tangible improvement over Claude Opus 4.7"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image, pdf]
output_types: [text]
release_date: 2026-05-28
cost: {input: 5, output: 25}
- name: Claude Opus 4.7
model: claude-opus-4-7
description: "Next generation of Anthropic's Opus family, built for long-running, asynchronous agents"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image, pdf]
output_types: [text]
release_date: 2026-04-16
cost: {input: 5, output: 25}
- name: Claude Sonnet 4.6
model: claude-sonnet-4-6
description: "Anthropic's most capable Sonnet-class model yet, with frontier performance across coding, agents, and professional work"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image, pdf]
output_types: [text]
release_date: 2026-02-17
cost: {input: 3, output: 15}
- name: Claude Opus 4.6
model: claude-opus-4-6
description: "Anthropic's strongest model for coding and long-running professional tasks"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image, pdf]
output_types: [text]
release_date: 2026-02-05
cost: {input: 5, output: 25}
- name: Claude Opus 4.5
model: claude-opus-4-5
description: "Anthropic's frontier reasoning model optimized for complex software engineering, agentic workflows, and long-horizon computer use"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image, pdf]
output_types: [text]
release_date: 2025-11-24
cost: {input: 5, output: 25}
- name: Claude Haiku 4.5
model: claude-haiku-4-5
description: "Anthropic's fastest and most efficient model, delivering near-frontier intelligence at a fraction of the cost and latency of larger Claude models"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image, pdf]
output_types: [text]
release_date: 2025-10-15
cost: {input: 1, output: 5}
- name: Claude Sonnet 4.5
model: claude-sonnet-4-5
description: "Anthropic's most advanced Sonnet model to date, optimized for real-world agents and coding workflows"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image, pdf]
output_types: [text]
release_date: 2025-09-29
cost: {input: 3, output: 15}
openai:
- name: GPT-Realtime-2.1
model: gpt-realtime-2.1
description: ""
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image]
output_types: [text]
release_date: 2026-07-06
cost: {input: 4, output: 24}
- name: GPT-5.6
model: gpt-5.6
description: "OpenAI's GPT-5.6 flagship tier for frontier reasoning, coding, and agentic workflows"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image, pdf]
output_types: [text]
release_date: 2026-07-09
cost: {input: 5, output: 30}
- name: GPT-5.6 Luna
model: gpt-5.6-luna
description: "Fast, cost-efficient model in OpenAI's GPT-5.6 series, suited for high-volume, latency-sensitive chat and lightweight agentic workflows"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image, pdf]
output_types: [text]
release_date: 2026-07-09
cost: {input: 1, output: 6}
- name: GPT-5.6 Sol
model: gpt-5.6-sol
description: "Flagship model in OpenAI's GPT-5.6 series, suited for complex reasoning, coding, and agentic workflows"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image, pdf]
output_types: [text]
release_date: 2026-07-09
cost: {input: 5, output: 30}
- name: GPT-5.6 Terra
model: gpt-5.6-terra
description: "Balanced model in OpenAI's GPT-5.6 series, suited for everyday coding, reasoning, and agentic workflows"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image, pdf]
output_types: [text]
release_date: 2026-07-09
cost: {input: 2.5, output: 15}
- name: GPT-5.5
model: gpt-5.5
description: "OpenAI's frontier model designed for complex professional workloads, building on GPT-5.4 with stronger reasoning, higher reliability, and improved token efficiency on hard tasks"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image, pdf]
output_types: [text]
release_date: 2026-04-23
cost: {input: 5, output: 30}
- name: GPT-5.4 mini
model: gpt-5.4-mini
description: "GPT-5.4 mini brings the core capabilities of GPT-5.4 to a faster, more efficient model optimized for high-throughput workloads"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image]
output_types: [text]
release_date: 2026-03-17
cost: {input: 0.75, output: 4.5}
- name: GPT-5.4 nano
model: gpt-5.4-nano
description: "Most lightweight and cost-efficient variant of the GPT-5.4 family, optimized for speed-critical and high-volume tasks"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image]
output_types: [text]
release_date: 2026-03-17
cost: {input: 0.2, output: 1.25}
- name: GPT-5.4
model: gpt-5.4
description: "OpenAI's latest frontier model, unifying the Codex and GPT lines into a single system"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image, pdf]
output_types: [text]
release_date: 2026-03-05
cost: {input: 2.5, output: 15}
- name: GPT-5.3 Chat
model: gpt-5.3-chat-latest
description: "Update to ChatGPT's most-used model that makes everyday conversations smoother, more useful, and more directly helpful"
roles: [chat, edit]
capabilities: [tool_calling]
input_types: [text, image]
output_types: [text]
release_date: 2026-03-03
cost: {input: 1.75, output: 14}
- name: GPT-5.3 Codex
model: gpt-5.3-codex
description: "OpenAI's most advanced agentic coding model, combining the frontier software engineering performance of GPT-5.2-Codex with the broader reasoning and professional knowledge capabilities of GPT-5.2"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image, pdf]
output_types: [text]
release_date: 2026-02-05
cost: {input: 1.75, output: 14}
- name: ChatGPT Image
model: chatgpt-image-latest
description: "Previous-generation image model used in ChatGPT for image generation and editing from text and image inputs"
roles: [chat, edit]
capabilities: []
input_types: [text, image]
output_types: [text, image]
release_date: 2025-12-16
google:
- name: Claude Sonnet 5
model: claude-sonnet-5@default
description: ""
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image, pdf]
output_types: [text]
release_date: 2026-06-30
cost: {input: 2, output: 10}
- name: Gemini Omni Flash Preview
model: gemini-omni-flash-preview
description: ""
roles: [chat, edit]
capabilities: [thinking]
input_types: [text, image]
output_types: []
release_date: 2026-06-30
cost: {input: 1.5, output: 17.5}
- name: Claude Opus 4.8
model: claude-opus-4-8@default
description: ""
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image, pdf]
output_types: [text]
release_date: 2026-05-28
cost: {input: 5, output: 25}
- name: Nano Banana 2
model: gemini-3.1-flash-image
description: ""
roles: [chat, edit]
capabilities: [thinking]
input_types: [text, image, pdf]
output_types: [text, image]
release_date: 2026-05-28
cost: {input: 0.5, output: 60}
- name: Gemini 3.5 Flash
model: gemini-3.5-flash
description: "Google's high-efficiency multimodal model, bringing near-Pro level coding and reasoning at Flash-tier cost and speed"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image, pdf]
output_types: [text]
release_date: 2026-05-19
cost: {input: 1.5, output: 9}
- name: Gemini 3.1 Flash Lite
model: gemini-3.1-flash-lite
description: "Google's GA high-efficiency multimodal model optimized for low-latency, high-volume workloads"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image, pdf]
output_types: [text]
release_date: 2026-05-07
cost: {input: 0.25, output: 1.5}
- name: Gemma 4 26B A4B IT
model: gemma-4-26b-a4b-it
description: "Instruction-tuned Mixture-of-Experts (MoE) model from Google DeepMind"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image]
output_types: [text]
release_date: 2026-04-02
- name: Gemma 4 31B IT
model: gemma-4-31b-it
description: "Google DeepMind's 30.7B dense multimodal model supporting text and image input with text output"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image]
output_types: [text]
release_date: 2026-04-02
- name: Nano Banana 2
model: gemini-3.1-flash-image-preview
description: "Google's image generation and editing model, delivering Pro-level visual quality at Flash speed"
roles: [chat, edit]
capabilities: [thinking]
input_types: [text, image, pdf]
output_types: [text, image]
release_date: 2026-02-26
cost: {input: 0.5, output: 60}
- name: Gemini 3.1 Pro Preview
model: gemini-3.1-pro-preview
description: "Google's frontier reasoning model, delivering enhanced software engineering performance, improved agentic reliability, and more efficient token usage across complex workflows"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image, pdf]
output_types: [text]
release_date: 2026-02-19
cost: {input: 2, output: 12}
- name: Gemini 3.1 Pro Preview Custom Tools
model: gemini-3.1-pro-preview-customtools
description: "Variant of Gemini 3.1 Pro with refined tool selection that avoids overusing a generic bash tool"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image, pdf]
output_types: [text]
release_date: 2026-02-19
cost: {input: 2, output: 12}
bedrock:
- name: GPT-5.6 Luna
model: openai.gpt-5.6-luna
description: ""
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image, pdf]
output_types: [text]
release_date: 2026-07-09
cost: {input: 1, output: 6}
- name: GPT-5.6 Sol
model: openai.gpt-5.6-sol
description: ""
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image, pdf]
output_types: [text]
release_date: 2026-07-09
cost: {input: 5, output: 30}
- name: GPT-5.6 Terra
model: openai.gpt-5.6-terra
description: ""
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image, pdf]
output_types: [text]
release_date: 2026-07-09
cost: {input: 2.5, output: 15}
- name: Claude Sonnet 5 (AU)
model: au.anthropic.claude-sonnet-5
description: ""
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image, pdf]
output_types: [text]
release_date: 2026-06-30
cost: {input: 2, output: 10}
- name: Claude Fable 5 (Global)
model: global.anthropic.claude-fable-5
description: "Anthropic's most capable widely released Mythos-class model, built for the most demanding reasoning and long-horizon agentic work"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image, pdf]
output_types: [text]
release_date: 2026-06-09
cost: {input: 10, output: 50}
- name: Claude Sonnet 5 (Global)
model: global.anthropic.claude-sonnet-5
description: "Anthropic's most agentic Sonnet model yet, built for planning, tool use, and autonomous multi-step work at Sonnet pricing"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image, pdf]
output_types: [text]
release_date: 2026-06-30
cost: {input: 2, output: 10}
- name: Claude Sonnet 5
model: anthropic.claude-sonnet-5
description: "Anthropic's most agentic Sonnet model yet, built for planning, tool use, and autonomous multi-step work at Sonnet pricing"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image, pdf]
output_types: [text]
release_date: 2026-06-30
cost: {input: 2, output: 10}
- name: Claude Opus 4.8 (Global)
model: global.anthropic.claude-opus-4-8
description: "Modest but tangible improvement over Claude Opus 4.7"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image, pdf]
output_types: [text]
release_date: 2026-05-28
cost: {input: 5, output: 25}
- name: Claude Opus 4.7
model: anthropic.claude-opus-4-7
description: "Next generation of Anthropic's Opus family, built for long-running, asynchronous agents"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image, pdf]
output_types: [text]
release_date: 2026-04-16
cost: {input: 5, output: 25}
- name: Claude Opus 4.7 (Global)
model: global.anthropic.claude-opus-4-7
description: "Next generation of Anthropic's Opus family, built for long-running, asynchronous agents"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image, pdf]
output_types: [text]
release_date: 2026-04-16
cost: {input: 5, output: 25}
- name: MiniMax M2.5
model: minimax.minimax-m2.5
description: "SOTA large language model designed for real-world productivity"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text]
output_types: [text]
release_date: 2026-03-18
cost: {input: 0.3, output: 1.2}
- name: GLM-5
model: zai.glm-5
description: "Z.ai's flagship open-source foundation model engineered for complex systems design and long-horizon agent workflows"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text]
output_types: [text]
release_date: 2026-03-18
cost: {input: 1, output: 3.2}
- name: NVIDIA Nemotron 3 Super 120B A12B
model: nvidia.nemotron-super-3-120b
description: "120B-parameter open hybrid MoE model, activating just 12B parameters for maximum compute efficiency and accuracy in complex multi-agent applications"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text]
output_types: [text]
release_date: 2026-03-11
cost: {input: 0.15, output: 0.65}
- name: Claude Sonnet 4.6
model: anthropic.claude-sonnet-4-6
description: "Anthropic's most capable Sonnet-class model yet, with frontier performance across coding, agents, and professional work"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image, pdf]
output_types: [text]
release_date: 2026-02-17
cost: {input: 3, output: 15}
azure:
- name: GPT-5.6 Luna
model: gpt-5.6-luna
description: ""
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image, pdf]
output_types: [text]
release_date: 2026-07-09
cost: {input: 1, output: 6}
- name: GPT-5.6 Sol
model: gpt-5.6-sol
description: ""
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image, pdf]
output_types: [text]
release_date: 2026-07-09
cost: {input: 5, output: 30}
- name: GPT-5.6 Terra
model: gpt-5.6-terra
description: ""
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image, pdf]
output_types: [text]
release_date: 2026-07-09
cost: {input: 2.5, output: 15}
- name: Claude Fable 5
model: claude-fable-5
description: "Anthropic's most capable widely released Mythos-class model, built for the most demanding reasoning and long-horizon agentic work"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image, pdf]
output_types: [text]
release_date: 2026-06-09
cost: {input: 10, output: 50}
- name: Claude Sonnet 5
model: claude-sonnet-5
description: "Anthropic's most agentic Sonnet model yet, built for planning, tool use, and autonomous multi-step work at Sonnet pricing"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image, pdf]
output_types: [text]
release_date: 2026-06-30
cost: {input: 2, output: 10}
- name: GPT-5.5
model: gpt-5.5
description: "OpenAI's frontier model designed for complex professional workloads, building on GPT-5.4 with stronger reasoning, higher reliability, and improved token efficiency on hard tasks"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image, pdf]
output_types: [text]
release_date: 2026-04-24
cost: {input: 5, output: 30}
- name: Kimi K2.6
model: kimi-k2.6
description: "Moonshot AI's next-generation multimodal model, designed for long-horizon coding, coding-driven UI/UX generation, and multi-agent orchestration"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image]
output_types: [text]
release_date: 2026-04-22
cost: {input: 0.95, output: 4}
- name: Grok 4.20 (Non-Reasoning)
model: grok-4-20-non-reasoning
description: "Reasoning model from xAI with industry-leading speed and agentic tool calling capabilities"
roles: [chat, edit]
capabilities: [tool_calling]
input_types: [text]
output_types: [text]
release_date: 2026-04-08
cost: {input: 2, output: 6}
- name: Grok 4.20 (Reasoning)
model: grok-4-20-reasoning
description: "Reasoning model from xAI with industry-leading speed and agentic tool calling capabilities"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text]
output_types: [text]
release_date: 2026-04-08
cost: {input: 2, output: 6}
- name: GPT-5.4 Mini
model: gpt-5.4-mini
description: "GPT-5.4 mini brings the core capabilities of GPT-5.4 to a faster, more efficient model optimized for high-throughput workloads"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image, pdf]
output_types: [text]
release_date: 2026-03-17
cost: {input: 0.75, output: 4.5}
- name: GPT-5.4 Nano
model: gpt-5.4-nano
description: "Most lightweight and cost-efficient variant of the GPT-5.4 family, optimized for speed-critical and high-volume tasks"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image, pdf]
output_types: [text]
release_date: 2026-03-17
cost: {input: 0.2, output: 1.25}
- name: GPT-5.4
model: gpt-5.4
description: "OpenAI's latest frontier model, unifying the Codex and GPT lines into a single system"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image, pdf]
output_types: [text]
release_date: 2026-03-05
cost: {input: 2.5, output: 15}
- name: GPT-5.3 Chat
model: gpt-5.3-chat
description: "Update to ChatGPT's most-used model that makes everyday conversations smoother, more useful, and more directly helpful"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image]
output_types: [text]
release_date: 2026-03-03
cost: {input: 1.75, output: 14}
- name: GPT-5.3 Codex
model: gpt-5.3-codex
description: "OpenAI's most advanced agentic coding model, combining the frontier software engineering performance of GPT-5.2-Codex with the broader reasoning and professional knowledge capabilities of GPT-5.2"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image]
output_types: [text]
release_date: 2026-02-24
cost: {input: 1.75, output: 14}
- name: Claude Opus 4.8
model: claude-opus-4-8
description: "Modest but tangible improvement over Claude Opus 4.7"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image, pdf]
output_types: [text]
release_date: 2026-05-28
cost: {input: 5, output: 25}
- name: Claude Sonnet 4.6
model: claude-sonnet-4-6
description: "Anthropic's most capable Sonnet-class model yet, with frontier performance across coding, agents, and professional work"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image, pdf]
output_types: [text]
release_date: 2026-02-17
cost: {input: 3, output: 15}
- name: DeepSeek-V4-Flash
model: deepseek-v4-flash
description: "Efficiency-optimized Mixture-of-Experts model from DeepSeek with 284B total parameters and 13B activated parameters, supporting a 1M-token context window"
roles: [chat, edit]
capabilities: [thinking]
input_types: [text]
output_types: [text]
release_date: 2026-04-24
cost: {input: 0.19, output: 0.51}
- name: DeepSeek-V4-Pro
model: deepseek-v4-pro
description: "Large-scale Mixture-of-Experts model from DeepSeek with 1.6T total parameters and 49B activated parameters, supporting a 1M-token context window"
roles: [chat, edit]
capabilities: [thinking]
input_types: [text]
output_types: [text]
release_date: 2026-04-24
cost: {input: 1.74, output: 3.48}
github:
- name: DeepSeek-R1-0528
model: deepseek/deepseek-r1-0528
description: "May 28th update to DeepSeek R1, with performance on par with OpenAI o1 but open-sourced and with fully open reasoning tokens"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text]
output_types: [text]
release_date: 2025-05-28
cost: {input: 0, output: 0}
- name: Mistral Medium 3 (25.05)
model: mistral-ai/mistral-medium-2505
description: "High-performance enterprise-grade language model designed to deliver frontier-level capabilities at significantly reduced operational cost"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image]
output_types: [text]
release_date: 2025-05-01
cost: {input: 0, output: 0}
- name: GPT-4.1
model: openai/gpt-4.1
description: "Flagship large language model optimized for advanced instruction following, real-world software engineering, and long-context reasoning"
roles: [chat, edit]
capabilities: [tool_calling]
input_types: [text, image]
output_types: [text]
release_date: 2025-04-14
cost: {input: 0, output: 0}
- name: GPT-4.1-mini
model: openai/gpt-4.1-mini
description: "Mid-sized model delivering performance competitive with GPT-4o at substantially lower latency and cost"
roles: [chat, edit]
capabilities: [tool_calling]
input_types: [text, image]
output_types: [text]
release_date: 2025-04-14
cost: {input: 0, output: 0}
- name: GPT-4.1-nano
model: openai/gpt-4.1-nano
description: "For tasks that demand low latency, GPT‑4.1 nano is the fastest and cheapest model in the GPT-4.1 series"
roles: [chat, edit]
capabilities: [tool_calling]
input_types: [text, image]
output_types: [text]
release_date: 2025-04-14
cost: {input: 0, output: 0}
- name: DeepSeek-V3-0324
model: deepseek/deepseek-v3-0324
description: "Latest model from the DeepSeek team, building upon the instruction following and coding abilities of the previous versions"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text]
output_types: [text]
release_date: 2025-03-24
cost: {input: 0, output: 0}
- name: Mistral Small 3.1
model: mistral-ai/mistral-small-2503
description: "Upgraded variant of Mistral Small 3 (2501), featuring 24 billion parameters with advanced multimodal capabilities"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image]
output_types: [text]
release_date: 2025-03-01
cost: {input: 0, output: 0}
- name: Llama 4 Maverick 17B 128E Instruct FP8
model: meta/llama-4-maverick-17b-128e-instruct-fp8
description: "High-capacity multimodal language model from Meta, built on a mixture-of-experts (MoE) architecture with 128 experts and 17 billion active parameters per forward"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image]
output_types: [text]
release_date: 2025-01-31
cost: {input: 0, output: 0}
- name: Llama 4 Scout 17B 16E Instruct
model: meta/llama-4-scout-17b-16e-instruct
description: "Mixture-of-experts (MoE) language model developed by Meta, activating 17 billion parameters out of a total of 109B"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image]
output_types: [text]
release_date: 2025-01-31
cost: {input: 0, output: 0}
- name: OpenAI o3
model: openai/o3
description: "Well-rounded reasoning model setting a new standard for math, science, coding, and visual reasoning tasks"
roles: [chat, edit]
capabilities: [thinking]
input_types: [text, image]
output_types: [text]
release_date: 2025-01-31
cost: {input: 0, output: 0}
ollama:
- name: DeepSeek V4 Flash
model: deepseek-v4-flash
description: "Efficiency-optimized Mixture-of-Experts model from DeepSeek with 284B total parameters and 13B activated parameters, supporting a 1M-token context window"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text]
output_types: [text]
release_date: 2026-04-24
- name: DeepSeek V4 Pro
model: deepseek-v4-pro
description: "Large-scale Mixture-of-Experts model from DeepSeek with 1.6T total parameters and 49B activated parameters, supporting a 1M-token context window"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text]
output_types: [text]
release_date: 2026-04-24
- name: Kimi K2.7 Code
model: kimi-k2.7-code
description: "Coding-focused model in Moonshot AI's Kimi K2 family, built to complete end-to-end programming tasks reliably over long contexts"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image]
output_types: [text]
release_date: 2026-06-12
- name: Kimi K2.6
model: kimi-k2.6
description: "Moonshot AI's next-generation multimodal model, designed for long-horizon coding, coding-driven UI/UX generation, and multi-agent orchestration"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image]
output_types: [text]
release_date: 2026-04-20
- name: Gemma 4 31B
model: gemma4:31b
description: "Google DeepMind's 30.7B dense multimodal model supporting text and image input with text output"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image]
output_types: [text]
release_date: 2026-04-02
- name: GLM 5.2
model: glm-5.2
description: "Large-scale reasoning model from Z.ai with a 1M-token context window, suited for long-horizon agent workflows and project-level software engineering"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text]
output_types: [text]
release_date: 2026-06-13
- name: GLM 5.1
model: glm-5.1
description: "GLM-5.1 delivers a major leap in coding capability, with particularly significant gains in handling long-horizon tasks"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text]
output_types: [text]
release_date: 2026-03-27
- name: MiniMax M3
model: minimax-m3
description: "Multimodal foundation model from MiniMax with a 1M-token context window, suited for long-horizon agentic work and coding"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image]
output_types: [text]
release_date: 2026-05-31
- name: MiniMax M2.7
model: minimax-m2.7
description: "Next-generation large language model designed for autonomous, real-world productivity and continuous improvement"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text]
output_types: [text]
release_date: 2026-03-18
- name: NVIDIA Nemotron 3 Ultra
model: nemotron-3-ultra
description: "Open frontier-reasoning and orchestration model from NVIDIA with 55B active parameters out of 550B total (MoE)"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text]
output_types: [text]
release_date: 2026-06-04
- name: NVIDIA Nemotron 3 Super 120B
model: nemotron-3-super
description: "120B-parameter open hybrid MoE model, activating just 12B parameters for maximum compute efficiency and accuracy in complex multi-agent applications"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text]
output_types: [text]
release_date: 2026-03-11
- name: Qwen 3.5 397B
model: qwen3.5:397b
description: "Built on a hybrid architecture that integrates a linear attention mechanism with a sparse mixture-of-experts model, achieving higher inference efficiency"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image]
output_types: [text]
release_date: 2026-02-15
wandb:
- name: Granite 4.1 8B
model: ibm-granite/granite-4.1-8b
description: "Dense 8B decoder-only model from IBM's Granite 4.1 family with a 131K-token context window, designed for enterprise tasks"
roles: [chat, edit]
capabilities: [tool_calling]
input_types: [text]
output_types: [text]
release_date: 2026-04-29
cost: {input: 0.05, output: 0.1}
- name: DeepSeek V4-Flash
model: deepseek-ai/DeepSeek-V4-Flash
description: "DeepSeek V4-Flash is an MoE model with 1M context length great for coding, reasoning, and agentic workloads"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text]
output_types: [text]
release_date: 2026-04-24
cost: {input: 0.14, output: 0.28}
- name: DeepSeek V4-Pro
model: deepseek-ai/DeepSeek-V4-Pro
description: "DeepSeek V4-Pro is a 1.6T-parameter MoE model with 49B active parameters excelling at advanced reasoning, coding, and complex agentic workloads"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text]
output_types: [text]
release_date: 2026-04-24
cost: {input: 1.74, output: 3.46}
- name: Z.AI GLM 5.2
model: zai-org/GLM-5.2
description: "GLM-5.2 is a Mixture-of-Experts language model featuring 40 billion activated parameters and a total of 744 billion parameters"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text]
output_types: [text]
release_date: 2026-06-13
cost: {input: 1.39, output: 4.4}
- name: Z.AI GLM-5.1
model: zai-org/GLM-5.1
description: "GLM-5.1 delivers a major leap in coding capability, with particularly significant gains in handling long-horizon tasks"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text]
output_types: [text]
release_date: 2026-04-07
cost: {input: 1.4, output: 4.4}
- name: Nemotron 3 Ultra
model: nvidia/NVIDIA-Nemotron-3-Ultra-550B-A55B
description: "Open frontier-reasoning and orchestration model from NVIDIA with 55B active parameters out of 550B total (MoE)"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text]
output_types: [text]
release_date: 2026-06-04
cost: {input: 0.75, output: 2.75}
- name: NVIDIA Nemotron 3 Super 120B
model: nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-FP8
description: "120B-parameter open hybrid MoE model, activating just 12B parameters for maximum compute efficiency and accuracy in complex multi-agent applications"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text]
output_types: [text]
release_date: 2026-03-11
cost: {input: 0.2, output: 0.8}
- name: MiniMax M2.5
model: MiniMaxAI/MiniMax-M2.5
description: "SOTA large language model designed for real-world productivity"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text]
output_types: [text]
release_date: 2026-02-12
cost: {input: 0.3, output: 1.2}
- name: Moonshot AI Kimi K2.7 Code
model: moonshotai/Kimi-K2.7-Code
description: "Kimi K2.7 Code is a 1T-parameter MoE model with 32B active parameters purpose-built for long-horizon agentic coding and software engineering"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text]
output_types: [text]
release_date: 2026-06-12
cost: {input: 0.94, output: 4}
- name: Moonshot AI Kimi K2.6
model: moonshotai/Kimi-K2.6
description: "Kimi K2.6 is a multimodal Mixture-of-Experts language model featuring 32 billion activated parameters and a total of 1 trillion parameters"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image]
output_types: [text]
release_date: 2026-04-20
cost: {input: 0.95, output: 4}
- name: gpt-oss-120b
model: openai/gpt-oss-120b
description: "Open-weight, 117B-parameter Mixture-of-Experts (MoE) language model from OpenAI designed for high-reasoning, agentic, and general-purpose production use cases"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text]
output_types: [text]
release_date: 2025-08-05
cost: {input: 0.04, output: 0.14}
- name: gpt-oss-20b
model: openai/gpt-oss-20b
description: "Open-weight 21B parameter model released by OpenAI under the Apache 2.0 license"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text]
output_types: [text]
release_date: 2025-08-05
cost: {input: 0.03, output: 0.13}
- name: Qwen3.6 35B A3B
model: Qwen/Qwen3.6-35B-A3B
description: "Qwen3.6-35B-A3B is an MoE multimodal model with 262K context optimized for agentic coding workflows"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image]
output_types: [text]
release_date: 2026-04-16
cost: {input: 0.25, output: 1.25}
- name: Qwen3.6 27B
model: Qwen/Qwen3.6-27B
description: "Qwen3.6-27B is a 27B dense multimodal model with 262K context built for flagship-level agentic coding"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text, image]
output_types: [text]
release_date: 2026-04-22
cost: {input: 0.6, output: 3.6}
- name: JetBrains Mellum2 12B A2.5B
model: JetBrains/Mellum2-12B-A2.5B-Instruct
description: "Mellum2-12B-A2.5B-Instruct is a fast MoE model with 131K context built for coding, tool use, and low-latency AI workflows"
roles: [chat, edit]
capabilities: [thinking, tool_calling]
input_types: [text]