forked from Gerome-Elassaad/CodingIT
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathmodels.json
More file actions
3720 lines (3720 loc) · 192 KB
/
models.json
File metadata and controls
3720 lines (3720 loc) · 192 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
{
"models": [
{
"id": "gpt-5",
"provider": "OpenAI",
"providerId": "openai",
"name": "GPT-5",
"multiModal": true
},
{
"id": "gpt-5-mini",
"provider": "OpenAI",
"providerId": "openai",
"name": "GPT-5 Mini",
"multiModal": true
},
{
"id": "gpt-5-nano",
"provider": "OpenAI",
"providerId": "openai",
"name": "GPT-5 Nano",
"multiModal": true
},
{
"id": "o3",
"provider": "OpenAI",
"providerId": "openai",
"name": "o3",
"multiModal": true
},
{
"id": "o3-mini",
"provider": "OpenAI",
"providerId": "openai",
"name": "o3-mini",
"multiModal": false
},
{
"id": "o4-mini",
"provider": "OpenAI",
"providerId": "openai",
"name": "o4-mini",
"multiModal": true
},
{
"id": "gpt-4.1",
"provider": "OpenAI",
"providerId": "openai",
"name": "GPT-4.1",
"multiModal": true
},
{
"id": "gpt-4.1-mini",
"provider": "OpenAI",
"providerId": "openai",
"name": "GPT-4.1 mini",
"multiModal": true
},
{
"id": "gpt-4.1-nano",
"provider": "OpenAI",
"providerId": "openai",
"name": "GPT-4.1 nano",
"multiModal": true
},
{
"id": "gpt-4.5-preview",
"provider": "OpenAI",
"providerId": "openai",
"name": "GPT-4.5 (preview)",
"multiModal": true
},
{
"id": "gpt-4o",
"provider": "OpenAI",
"providerId": "openai",
"name": "GPT-4o",
"multiModal": true
},
{
"id": "gpt-4o-mini",
"provider": "OpenAI",
"providerId": "openai",
"name": "GPT-4o mini",
"multiModal": true
},
{
"id": "o1",
"provider": "OpenAI",
"providerId": "openai",
"name": "o1",
"multiModal": true
},
{
"id": "o1-mini",
"provider": "OpenAI",
"providerId": "openai",
"name": "o1-mini",
"multiModal": false
},
{
"id": "gpt-4-turbo",
"provider": "OpenAI",
"providerId": "openai",
"name": "GPT-4 Turbo",
"multiModal": true
},
{
"id": "claude-sonnet-4-5-20250929",
"provider": "Anthropic",
"providerId": "anthropic",
"name": "Claude Sonnet 4.5",
"multiModal": true
},
{
"id": "claude-opus-4-1-20250805",
"provider": "Anthropic",
"providerId": "anthropic",
"name": "Claude Opus 4.1",
"multiModal": true
},
{
"id": "claude-opus-4-20250514",
"provider": "Anthropic",
"providerId": "anthropic",
"name": "Claude Opus 4",
"multiModal": true
},
{
"id": "claude-sonnet-4-20250514",
"provider": "Anthropic",
"providerId": "anthropic",
"name": "Claude Sonnet 4",
"multiModal": true
},
{
"id": "claude-3-7-sonnet-latest",
"provider": "Anthropic",
"providerId": "anthropic",
"name": "Claude Sonnet 3.7",
"multiModal": true
},
{
"id": "claude-3-5-sonnet-latest",
"provider": "Anthropic",
"providerId": "anthropic",
"name": "Claude Sonnet 3.5",
"multiModal": true
},
{
"id": "claude-3-5-haiku-latest",
"provider": "Anthropic",
"providerId": "anthropic",
"name": "Claude Haiku 3.5",
"multiModal": true
},
{
"id": "gemini-2.5-flash-preview-05-20",
"provider": "Google Vertex AI",
"providerId": "vertex",
"name": "Gemini 2.5 Flash Preview 05-20",
"multiModal": true
},
{
"id": "gemini-2.5-pro-preview-05-06",
"provider": "Google Vertex AI",
"providerId": "vertex",
"name": "Gemini 2.5 Pro Preview 05-06",
"multiModal": true
},
{
"id": "gemini-2.0-flash-001",
"provider": "Google Vertex AI",
"providerId": "vertex",
"name": "Gemini 2.0 Flash",
"multiModal": true
},
{
"id": "gemini-2.0-flash-lite-001",
"provider": "Google Vertex AI",
"providerId": "vertex",
"name": "Gemini 2.0 Flash Lite",
"multiModal": true
},
{
"id": "gemini-1.5-pro-002",
"provider": "Google Vertex AI",
"providerId": "vertex",
"name": "Gemini 1.5 Pro",
"multiModal": true
},
{
"id": "gemini-1.5-flash-002",
"provider": "Google Vertex AI",
"providerId": "vertex",
"name": "Gemini 1.5 Flash",
"multiModal": true
},
{
"id": "models/gemini-2.5-flash-preview-05-20",
"provider": "Google Generative AI",
"providerId": "google",
"name": "Gemini 2.5 Flash Preview 05-20",
"multiModal": true
},
{
"id": "models/gemini-2.5-pro-preview-05-06",
"provider": "Google Generative AI",
"providerId": "google",
"name": "Gemini 2.5 Pro Preview 05-06",
"multiModal": true
},
{
"id": "models/gemini-2.0-flash",
"provider": "Google Generative AI",
"providerId": "google",
"name": "Gemini 2.0 Flash",
"multiModal": true
},
{
"id": "models/gemini-2.0-flash-lite",
"provider": "Google Generative AI",
"providerId": "google",
"name": "Gemini 2.0 Flash Lite",
"multiModal": true
},
{
"id": "models/gemini-1.5-pro",
"provider": "Google Generative AI",
"providerId": "google",
"name": "Gemini 1.5 Pro",
"multiModal": true
},
{
"id": "models/gemini-1.5-flash",
"provider": "Google Generative AI",
"providerId": "google",
"name": "Gemini 1.5 Flash",
"multiModal": true
},
{
"id": "magistral-medium-latest",
"provider": "Mistral",
"providerId": "mistral",
"name": "Magistral Medium",
"multiModal": true
},
{
"id": "magistral-small-latest",
"provider": "Mistral",
"providerId": "mistral",
"name": "Magistral Small",
"multiModal": true
},
{
"id": "mistral-medium-latest",
"provider": "Mistral",
"providerId": "mistral",
"name": "Mistral Medium",
"multiModal": true
},
{
"id": "mistral-large-latest",
"provider": "Mistral",
"providerId": "mistral",
"name": "Mistral Large",
"multiModal": false
},
{
"id": "pixtral-large-latest",
"provider": "Mistral",
"providerId": "mistral",
"name": "Pixtral Large",
"multiModal": true
},
{
"id": "mistral-small-latest",
"provider": "Mistral",
"providerId": "mistral",
"name": "Mistral Small",
"multiModal": false
},
{
"id": "open-mistral-nemo",
"provider": "Mistral",
"providerId": "mistral",
"name": "Mistral Nemo",
"multiModal": false
},
{
"id": "devstral-small-latest",
"provider": "Mistral",
"providerId": "mistral",
"name": "Devstral Small",
"multiModal": false
},
{
"id": "codestral-latest",
"provider": "Mistral",
"providerId": "mistral",
"name": "Codestral 25.01",
"multiModal": false
},
{
"id": "openai/gpt-oss-120b",
"provider": "Groq",
"providerId": "groq",
"name": "GPT OSS 120B",
"multiModal": false
},
{
"id": "moonshotai/kimi-k2-instruct",
"provider": "Groq",
"providerId": "groq",
"name": "Kimi K2 Instruct",
"multiModal": false
},
{
"id": "qwen/qwen3-32b",
"provider": "Groq",
"providerId": "groq",
"name": "Qwen3 32B",
"multiModal": false
},
{
"id": "llama-3.3-70b-versatile",
"provider": "Groq",
"providerId": "groq",
"name": "Llama 3.3 70B",
"multiModal": false
},
{
"id": "accounts/fireworks/models/qwen3-coder-480b-a35b-instruct",
"provider": "Fireworks",
"providerId": "fireworks",
"name": "Qwen3 Coder 480B A35B Instruct",
"multiModal": false
},
{
"id": "accounts/fireworks/models/qwen3-235b-a22b-thinking-2507",
"provider": "Fireworks",
"providerId": "fireworks",
"name": "Qwen3 235B-A22B-Thinking-2507",
"multiModal": false
},
{
"id": "accounts/fireworks/models/qwen3-235b-a22b-instruct-2507",
"provider": "Fireworks",
"providerId": "fireworks",
"name": "Qwen3 235B-A22B-Instruct-2507",
"multiModal": false
},
{
"id": "accounts/fireworks/models/zai-org/glm-4p5",
"provider": "Fireworks",
"providerId": "fireworks",
"name": "Z.ai GLM 4.5",
"multiModal": false
},
{
"id": "accounts/fireworks/models/kimi-k2-instruct",
"provider": "Fireworks",
"providerId": "fireworks",
"name": "Kimi K2 Instruct",
"multiModal": false
},
{
"id": "accounts/fireworks/models/deepseek-r1",
"provider": "Fireworks",
"providerId": "fireworks",
"name": "DeepSeek R1",
"multiModal": false
},
{
"id": "accounts/fireworks/models/llama4-maverick-instruct-basic",
"provider": "Fireworks",
"providerId": "fireworks",
"name": "Llama 4 Maverick Instruct",
"multiModal": false
},
{
"id": "accounts/fireworks/models/llama4-scout-instruct-basic",
"provider": "Fireworks",
"providerId": "fireworks",
"name": "Llama 4 Scout Instruct",
"multiModal": false
},
{
"id": "accounts/fireworks/models/llama-v3p1-405b-instruct",
"provider": "Fireworks",
"providerId": "fireworks",
"name": "Llama 3.1 405B",
"multiModal": false
},
{
"id": "accounts/fireworks/models/llama-v3p1-70b-instruct",
"provider": "Fireworks",
"providerId": "fireworks",
"name": "Llama 3.1 70B",
"multiModal": false
},
{
"id": "meta-llama/Meta-Llama-3.1-70B-Instruct-Turbo",
"provider": "Together AI",
"providerId": "togetherai",
"name": "Llama 3.1 70B",
"multiModal": false
},
{
"id": "grok-4",
"provider": "xAI",
"providerId": "xai",
"name": "Grok 4",
"multiModal": true
},
{
"id": "grok-3",
"provider": "xAI",
"providerId": "xai",
"name": "Grok 3",
"multiModal": false
},
{
"id": "grok-3-mini",
"provider": "xAI",
"providerId": "xai",
"name": "Grok 3 Mini",
"multiModal": false
},
{
"id": "grok-3-fast",
"provider": "xAI",
"providerId": "xai",
"name": "Grok 3 Fast",
"multiModal": false
},
{
"id": "grok-3-mini-fast",
"provider": "xAI",
"providerId": "xai",
"name": "Grok 3 Mini Fast",
"multiModal": false
},
{
"id": "grok-code-fast-1",
"provider": "xAI",
"providerId": "xai",
"name": "Grok Code Fast 1",
"multiModal": false
},
{
"id": "deepseek-chat",
"provider": "DeepSeek",
"providerId": "deepseek",
"name": "DeepSeek V3",
"multiModal": false
},
{
"id": "llama3.1",
"provider": "Ollama",
"providerId": "ollama",
"name": "Llama 3.1",
"multiModal": false
},
{
"id": "mistral-nemo",
"provider": "Ollama",
"providerId": "ollama",
"name": "Mistral Nemo",
"multiModal": false
},
{
"id": "mistral-large",
"provider": "Ollama",
"providerId": "ollama",
"name": "Mistral Large",
"multiModal": false
},
{
"id": "mistralai/voxtral-small-24b-2507",
"provider": "Mistral: Voxtral Small 24B 2507",
"providerId": "openrouter",
"name": "Mistral: Voxtral Small 24B 2507",
"multiModal": false,
"pricing": {
"prompt": "0.0000001",
"completion": "0.0000003",
"request": "0",
"image": "0",
"audio": "0.0001",
"web_search": "0",
"internal_reasoning": "0"
},
"contextLength": 32000,
"description": "Voxtral Small is an enhancement of Mistral Small 3, incorporating state-of-the-art audio input capabilities while retaining best-in-class text performance. It excels at speech transcription, translation and audio understanding. Input audio is priced at $100 per million seconds."
},
{
"id": "openai/gpt-oss-safeguard-20b",
"provider": "OpenAI: gpt-oss-safeguard-20b",
"providerId": "openrouter",
"name": "OpenAI: gpt-oss-safeguard-20b",
"multiModal": false,
"pricing": {
"prompt": "0.000000075",
"completion": "0.0000003",
"request": "0",
"image": "0",
"web_search": "0",
"internal_reasoning": "0",
"input_cache_read": "0.000000037"
},
"contextLength": 131072,
"description": "gpt-oss-safeguard-20b is a safety reasoning model from OpenAI built upon gpt-oss-20b. This open-weight, 21B-parameter Mixture-of-Experts (MoE) model offers lower latency for safety tasks like content classification, LLM filtering, and trust & safety labeling.\n\nLearn more about this model in OpenAI's gpt-oss-safeguard [user guide](https://cookbook.openai.com/articles/gpt-oss-safeguard-guide)."
},
{
"id": "qwen/qwen3-vl-32b-instruct",
"provider": "Qwen: Qwen3 VL 32B Instruct",
"providerId": "openrouter",
"name": "Qwen: Qwen3 VL 32B Instruct",
"multiModal": true,
"pricing": {
"prompt": "0.00000035",
"completion": "0.0000011",
"request": "0",
"image": "0",
"web_search": "0",
"internal_reasoning": "0"
},
"contextLength": 262144,
"description": "Qwen3-VL-32B-Instruct is a large-scale multimodal vision-language model designed for high-precision understanding and reasoning across text, images, and video. With 32 billion parameters, it combines deep visual perception with advanced text comprehension, enabling fine-grained spatial reasoning, document and scene analysis, and long-horizon video understanding.Robust OCR in 32 languages, and enhanced multimodal fusion through Interleaved-MRoPE and DeepStack architectures. Optimized for agentic interaction and visual tool use, Qwen3-VL-32B delivers state-of-the-art performance for complex real-world multimodal tasks."
},
{
"id": "openai/gpt-5-image-mini",
"provider": "OpenAI: GPT-5 Image Mini",
"providerId": "openrouter",
"name": "OpenAI: GPT-5 Image Mini",
"multiModal": true,
"pricing": {
"prompt": "0.0000025",
"completion": "0.000002",
"request": "0",
"image": "0.0000025",
"web_search": "0.01",
"internal_reasoning": "0",
"input_cache_read": "0.00000025"
},
"contextLength": 400000,
"description": "GPT-5 Image Mini combines OpenAI's advanced language capabilities, powered by [GPT-5 Mini](https://openrouter.ai/openai/gpt-5-mini), with GPT Image 1 Mini for efficient image generation. This natively multimodal model features superior instruction following, text rendering, and detailed image editing with reduced latency and cost. It excels at high-quality visual creation while maintaining strong text understanding, making it ideal for applications that require both efficient image generation and text processing at scale."
},
{
"id": "anthropic/claude-haiku-4.5",
"provider": "Anthropic: Claude Haiku 4.5",
"providerId": "openrouter",
"name": "Anthropic: Claude Haiku 4.5",
"multiModal": true,
"pricing": {
"prompt": "0.000001",
"completion": "0.000005",
"request": "0",
"image": "0",
"web_search": "0",
"internal_reasoning": "0",
"input_cache_read": "0.0000001",
"input_cache_write": "0.00000125"
},
"contextLength": 200000,
"description": "Claude Haiku 4.5 is Anthropic’s fastest and most efficient model, delivering near-frontier intelligence at a fraction of the cost and latency of larger Claude models. Matching Claude Sonnet 4’s performance across reasoning, coding, and computer-use tasks, Haiku 4.5 brings frontier-level capability to real-time and high-volume applications.\n\nIt introduces extended thinking to the Haiku line; enabling controllable reasoning depth, summarized or interleaved thought output, and tool-assisted workflows with full support for coding, bash, web search, and computer-use tools. Scoring >73% on SWE-bench Verified, Haiku 4.5 ranks among the world’s best coding models while maintaining exceptional responsiveness for sub-agents, parallelized execution, and scaled deployment."
},
{
"id": "qwen/qwen3-vl-8b-thinking",
"provider": "Qwen: Qwen3 VL 8B Thinking",
"providerId": "openrouter",
"name": "Qwen: Qwen3 VL 8B Thinking",
"multiModal": true,
"pricing": {
"prompt": "0.00000018",
"completion": "0.0000021",
"request": "0",
"image": "0",
"web_search": "0",
"internal_reasoning": "0"
},
"contextLength": 256000,
"description": "Qwen3-VL-8B-Thinking is the reasoning-optimized variant of the Qwen3-VL-8B multimodal model, designed for advanced visual and textual reasoning across complex scenes, documents, and temporal sequences. It integrates enhanced multimodal alignment and long-context processing (native 256K, expandable to 1M tokens) for tasks such as scientific visual analysis, causal inference, and mathematical reasoning over image or video inputs.\n\nCompared to the Instruct edition, the Thinking version introduces deeper visual-language fusion and deliberate reasoning pathways that improve performance on long-chain logic tasks, STEM problem-solving, and multi-step video understanding. It achieves stronger temporal grounding via Interleaved-MRoPE and timestamp-aware embeddings, while maintaining robust OCR, multilingual comprehension, and text generation on par with large text-only LLMs."
},
{
"id": "qwen/qwen3-vl-8b-instruct",
"provider": "Qwen: Qwen3 VL 8B Instruct",
"providerId": "openrouter",
"name": "Qwen: Qwen3 VL 8B Instruct",
"multiModal": true,
"pricing": {
"prompt": "0.00000008",
"completion": "0.0000005",
"request": "0",
"image": "0",
"web_search": "0",
"internal_reasoning": "0",
"input_cache_read": "0"
},
"contextLength": 131072,
"description": "Qwen3-VL-8B-Instruct is a multimodal vision-language model from the Qwen3-VL series, built for high-fidelity understanding and reasoning across text, images, and video. It features improved multimodal fusion with Interleaved-MRoPE for long-horizon temporal reasoning, DeepStack for fine-grained visual-text alignment, and text-timestamp alignment for precise event localization.\n\nThe model supports a native 256K-token context window, extensible to 1M tokens, and handles both static and dynamic media inputs for tasks like document parsing, visual question answering, spatial reasoning, and GUI control. It achieves text understanding comparable to leading LLMs while expanding OCR coverage to 32 languages and enhancing robustness under varied visual conditions."
},
{
"id": "openai/gpt-5-image",
"provider": "OpenAI: GPT-5 Image",
"providerId": "openrouter",
"name": "OpenAI: GPT-5 Image",
"multiModal": true,
"pricing": {
"prompt": "0.00001",
"completion": "0.00001",
"request": "0",
"image": "0.00001",
"web_search": "0.01",
"internal_reasoning": "0",
"input_cache_read": "0.00000125"
},
"contextLength": 400000,
"description": "[GPT-5](https://openrouter.ai/openai/gpt-5) Image combines OpenAI's most advanced language model with state-of-the-art image generation capabilities. It offers major improvements in reasoning, code quality, and user experience while incorporating GPT Image 1's superior instruction following, text rendering, and detailed image editing."
},
{
"id": "openai/o3-deep-research",
"provider": "OpenAI: o3 Deep Research",
"providerId": "openrouter",
"name": "OpenAI: o3 Deep Research",
"multiModal": true,
"pricing": {
"prompt": "0.00001",
"completion": "0.00004",
"request": "0",
"image": "0.00765",
"web_search": "0.01",
"internal_reasoning": "0",
"input_cache_read": "0.0000025"
},
"contextLength": 200000,
"description": "o3-deep-research is OpenAI's advanced model for deep research, designed to tackle complex, multi-step research tasks.\n\nNote: This model always uses the 'web_search' tool which adds additional cost."
},
{
"id": "openai/o4-mini-deep-research",
"provider": "OpenAI: o4 Mini Deep Research",
"providerId": "openrouter",
"name": "OpenAI: o4 Mini Deep Research",
"multiModal": true,
"pricing": {
"prompt": "0.000002",
"completion": "0.000008",
"request": "0",
"image": "0.00153",
"web_search": "0.01",
"internal_reasoning": "0",
"input_cache_read": "0.0000005"
},
"contextLength": 200000,
"description": "o4-mini-deep-research is OpenAI's faster, more affordable deep research model—ideal for tackling complex, multi-step research tasks.\n\nNote: This model always uses the 'web_search' tool which adds additional cost."
},
{
"id": "google/gemini-2.5-flash-image",
"provider": "Google: Gemini 2.5 Flash Image (Nano Banana)",
"providerId": "openrouter",
"name": "Google: Gemini 2.5 Flash Image (Nano Banana)",
"multiModal": true,
"pricing": {
"prompt": "0.0000003",
"completion": "0.0000025",
"request": "0",
"image": "0.001238",
"web_search": "0",
"internal_reasoning": "0"
},
"contextLength": 32768,
"description": "Gemini 2.5 Flash Image, a.k.a. \"Nano Banana,\" is now generally available. It is a state of the art image generation model with contextual understanding. It is capable of image generation, edits, and multi-turn conversations. Aspect ratios can be controlled with the [image_config API Parameter](https://openrouter.ai/docs/features/multimodal/image-generation#image-aspect-ratio-configuration)"
},
{
"id": "qwen/qwen3-vl-30b-a3b-thinking",
"provider": "Qwen: Qwen3 VL 30B A3B Thinking",
"providerId": "openrouter",
"name": "Qwen: Qwen3 VL 30B A3B Thinking",
"multiModal": true,
"pricing": {
"prompt": "0.0000002",
"completion": "0.000001",
"request": "0",
"image": "0",
"web_search": "0",
"internal_reasoning": "0",
"input_cache_read": "0"
},
"contextLength": 131072,
"description": "Qwen3-VL-30B-A3B-Thinking is a multimodal model that unifies strong text generation with visual understanding for images and videos. Its Thinking variant enhances reasoning in STEM, math, and complex tasks. It excels in perception of real-world/synthetic categories, 2D/3D spatial grounding, and long-form visual comprehension, achieving competitive multimodal benchmark results. For agentic use, it handles multi-image multi-turn instructions, video timeline alignments, GUI automation, and visual coding from sketches to debugged UI. Text performance matches flagship Qwen3 models, suiting document AI, OCR, UI assistance, spatial tasks, and agent research."
},
{
"id": "qwen/qwen3-vl-30b-a3b-instruct",
"provider": "Qwen: Qwen3 VL 30B A3B Instruct",
"providerId": "openrouter",
"name": "Qwen: Qwen3 VL 30B A3B Instruct",
"multiModal": true,
"pricing": {
"prompt": "0.00000015",
"completion": "0.0000006",
"request": "0",
"image": "0",
"web_search": "0",
"internal_reasoning": "0"
},
"contextLength": 262144,
"description": "Qwen3-VL-30B-A3B-Instruct is a multimodal model that unifies strong text generation with visual understanding for images and videos. Its Instruct variant optimizes instruction-following for general multimodal tasks. It excels in perception of real-world/synthetic categories, 2D/3D spatial grounding, and long-form visual comprehension, achieving competitive multimodal benchmark results. For agentic use, it handles multi-image multi-turn instructions, video timeline alignments, GUI automation, and visual coding from sketches to debugged UI. Text performance matches flagship Qwen3 models, suiting document AI, OCR, UI assistance, spatial tasks, and agent research."
},
{
"id": "openai/gpt-5-pro",
"provider": "OpenAI: GPT-5 Pro",
"providerId": "openrouter",
"name": "OpenAI: GPT-5 Pro",
"multiModal": true,
"pricing": {
"prompt": "0.000015",
"completion": "0.00012",
"request": "0",
"image": "0",
"web_search": "0.01",
"internal_reasoning": "0"
},
"contextLength": 400000,
"description": "GPT-5 Pro is OpenAI’s most advanced model, offering major improvements in reasoning, code quality, and user experience. It is optimized for complex tasks that require step-by-step reasoning, instruction following, and accuracy in high-stakes use cases. It supports test-time routing features and advanced prompt understanding, including user-specified intent like \"think hard about this.\" Improvements include reductions in hallucination, sycophancy, and better performance in coding, writing, and health-related tasks."
},
{
"id": "anthropic/claude-sonnet-4.5",
"provider": "Anthropic: Claude Sonnet 4.5",
"providerId": "openrouter",
"name": "Anthropic: Claude Sonnet 4.5",
"multiModal": true,
"pricing": {
"prompt": "0.000003",
"completion": "0.000015",
"request": "0",
"image": "0",
"web_search": "0",
"internal_reasoning": "0"
},
"contextLength": 1000000,
"description": "Claude Sonnet 4.5 is Anthropic’s most advanced Sonnet model to date, optimized for real-world agents and coding workflows. It delivers state-of-the-art performance on coding benchmarks such as SWE-bench Verified, with improvements across system design, code security, and specification adherence. The model is designed for extended autonomous operation, maintaining task continuity across sessions and providing fact-based progress tracking.\n\nSonnet 4.5 also introduces stronger agentic capabilities, including improved tool orchestration, speculative parallel execution, and more efficient context and memory management. With enhanced context tracking and awareness of token usage across tool calls, it is particularly well-suited for multi-context and long-running workflows. Use cases span software engineering, cybersecurity, financial analysis, research agents, and other domains requiring sustained reasoning and tool use."
},
{
"id": "google/gemini-2.5-flash-preview-09-2025",
"provider": "Google: Gemini 2.5 Flash Preview 09-2025",
"providerId": "openrouter",
"name": "Google: Gemini 2.5 Flash Preview 09-2025",
"multiModal": true,
"pricing": {
"prompt": "0.0000003",
"completion": "0.0000025",
"request": "0",
"image": "0.001238",
"audio": "0.000001",
"web_search": "0",
"internal_reasoning": "0",
"input_cache_read": "0.000000075",
"input_cache_write": "0.0000003833"
},
"contextLength": 1048576,
"description": "Gemini 2.5 Flash Preview September 2025 Checkpoint is Google's state-of-the-art workhorse model, specifically designed for advanced reasoning, coding, mathematics, and scientific tasks. It includes built-in \"thinking\" capabilities, enabling it to provide responses with greater accuracy and nuanced context handling. \n\nAdditionally, Gemini 2.5 Flash is configurable through the \"max tokens for reasoning\" parameter, as described in the documentation (https://openrouter.ai/docs/use-cases/reasoning-tokens#max-tokens-for-reasoning)."
},
{
"id": "google/gemini-2.5-flash-lite-preview-09-2025",
"provider": "Google: Gemini 2.5 Flash Lite Preview 09-2025",
"providerId": "openrouter",
"name": "Google: Gemini 2.5 Flash Lite Preview 09-2025",
"multiModal": true,
"pricing": {
"prompt": "0.0000001",
"completion": "0.0000004",
"request": "0",
"image": "0",
"web_search": "0",
"internal_reasoning": "0"
},
"contextLength": 1048576,
"description": "Gemini 2.5 Flash-Lite is a lightweight reasoning model in the Gemini 2.5 family, optimized for ultra-low latency and cost efficiency. It offers improved throughput, faster token generation, and better performance across common benchmarks compared to earlier Flash models. By default, \"thinking\" (i.e. multi-pass reasoning) is disabled to prioritize speed, but developers can enable it via the [Reasoning API parameter](https://openrouter.ai/docs/use-cases/reasoning-tokens) to selectively trade off cost for intelligence. "
},
{
"id": "qwen/qwen3-vl-235b-a22b-thinking",
"provider": "qwen",
"providerId": "openrouter",
"name": "Qwen: Qwen3 VL 235B A22B Thinking",
"multiModal": true,
"pricing": {
"prompt": "0.0000003",
"completion": "0.0000012",
"request": "0",
"image": "0",
"web_search": "0",
"internal_reasoning": "0"
},
"contextLength": 262144,
"description": "Qwen3-VL-235B-A22B Thinking is a multimodal model that unifies strong text generation with visual understanding across images and video. The Thinking model is optimized for multimodal reasoning in STEM and math. The series emphasizes robust perception (recognition of diverse real-world and synthetic categories), spatial understanding (2D/3D grounding), and long-form visual comprehension, with competitive results on public multimodal benchmarks for both perception and reasoning.\n\nBeyond analysis, Qwen3-VL supports agentic interaction and tool use: it can follow complex instructions over multi-image, multi-turn dialogues; align text to video timelines for precise temporal queries; and operate GUI elements for automation tasks. The models also enable visual coding workflows, turning sketches or mockups into code and assisting with UI debugging, while maintaining strong text-only performance comparable to the flagship Qwen3 language models. This makes Qwen3-VL suitable for production scenarios spanning document AI, multilingual OCR, software/UI assistance, spatial/embodied tasks, and research on vision-language agents."
},
{
"id": "qwen/qwen3-vl-235b-a22b-instruct",
"provider": "qwen",
"providerId": "openrouter",
"name": "Qwen: Qwen3 VL 235B A22B Instruct",
"multiModal": true,
"pricing": {
"prompt": "0.00000022",
"completion": "0.00000088",
"request": "0",
"image": "0",
"web_search": "0",
"internal_reasoning": "0"
},
"contextLength": 262144,
"description": "Qwen3-VL-235B-A22B Instruct is an open-weight multimodal model that unifies strong text generation with visual understanding across images and video. The Instruct model targets general vision-language use (VQA, document parsing, chart/table extraction, multilingual OCR). The series emphasizes robust perception (recognition of diverse real-world and synthetic categories), spatial understanding (2D/3D grounding), and long-form visual comprehension, with competitive results on public multimodal benchmarks for both perception and reasoning.\n\nBeyond analysis, Qwen3-VL supports agentic interaction and tool use: it can follow complex instructions over multi-image, multi-turn dialogues; align text to video timelines for precise temporal queries; and operate GUI elements for automation tasks. The models also enable visual coding workflows—turning sketches or mockups into code and assisting with UI debugging—while maintaining strong text-only performance comparable to the flagship Qwen3 language models. This makes Qwen3-VL suitable for production scenarios spanning document AI, multilingual OCR, software/UI assistance, spatial/embodied tasks, and research on vision-language agents."
},
{
"id": "qwen/qwen3-max",
"provider": "qwen",
"providerId": "openrouter",
"name": "Qwen: Qwen3 Max",
"multiModal": false,
"pricing": {
"prompt": "0.0000012",
"completion": "0.000006",
"request": "0",
"image": "0",
"web_search": "0",
"internal_reasoning": "0",
"input_cache_read": "0.00000024"
},
"contextLength": 256000,
"description": "Qwen3-Max is an updated release built on the Qwen3 series, offering major improvements in reasoning, instruction following, multilingual support, and long-tail knowledge coverage compared to the January 2025 version. It delivers higher accuracy in math, coding, logic, and science tasks, follows complex instructions in Chinese and English more reliably, reduces hallucinations, and produces higher-quality responses for open-ended Q&A, writing, and conversation. The model supports over 100 languages with stronger translation and commonsense reasoning, and is optimized for retrieval-augmented generation (RAG) and tool calling, though it does not include a dedicated “thinking” mode."
},
{
"id": "qwen/qwen3-coder-plus",
"provider": "qwen",
"providerId": "openrouter",
"name": "Qwen: Qwen3 Coder Plus",
"multiModal": false,
"pricing": {
"prompt": "0.000001",
"completion": "0.000005",
"request": "0",
"image": "0",
"web_search": "0",
"internal_reasoning": "0",
"input_cache_read": "0.0000001"
},
"contextLength": 128000,
"description": "Qwen3 Coder Plus is Alibaba's proprietary version of the Open Source Qwen3 Coder 480B A35B. It is a powerful coding agent model specializing in autonomous programming via tool calling and environment interaction, combining coding proficiency with versatile general-purpose abilities."
},
{
"id": "openai/gpt-5-codex",
"provider": "openai",
"providerId": "openrouter",
"name": "OpenAI: GPT-5 Codex",
"multiModal": true,
"pricing": {
"prompt": "0.00000125",
"completion": "0.00001",
"request": "0",
"image": "0",
"web_search": "0",
"internal_reasoning": "0",
"input_cache_read": "0.000000125"
},
"contextLength": 400000,
"description": "GPT-5-Codex is a specialized version of GPT-5 optimized for software engineering and coding workflows. It is designed for both interactive development sessions and long, independent execution of complex engineering tasks. The model supports building projects from scratch, feature development, debugging, large-scale refactoring, and code review. Compared to GPT-5, Codex is more steerable, adheres closely to developer instructions, and produces cleaner, higher-quality code outputs. Reasoning effort can be adjusted with the `reasoning.effort` parameter. Read the [docs here](https://openrouter.ai/docs/use-cases/reasoning-tokens#reasoning-effort-level)\n\nCodex integrates into developer environments including the CLI, IDE extensions, GitHub, and cloud tasks. It adapts reasoning effort dynamically—providing fast responses for small tasks while sustaining extended multi-hour runs for large projects. The model is trained to perform structured code reviews, catching critical flaws by reasoning over dependencies and validating behavior against tests. It also supports multimodal inputs such as images or screenshots for UI development and integrates tool use for search, dependency installation, and environment setup. Codex is intended specifically for agentic coding applications."
},
{
"id": "qwen/qwen3-coder-flash",
"provider": "qwen",
"providerId": "openrouter",
"name": "Qwen: Qwen3 Coder Flash",
"multiModal": false,
"pricing": {
"prompt": "0.0000003",
"completion": "0.0000015",
"request": "0",
"image": "0",
"web_search": "0",
"internal_reasoning": "0",
"input_cache_read": "0.00000008"
},
"contextLength": 128000,
"description": "Qwen3 Coder Flash is Alibaba's fast and cost efficient version of their proprietary Qwen3 Coder Plus. It is a powerful coding agent model specializing in autonomous programming via tool calling and environment interaction, combining coding proficiency with versatile general-purpose abilities."
},
{
"id": "qwen/qwen3-next-80b-a3b-thinking",
"provider": "qwen",
"providerId": "openrouter",
"name": "Qwen: Qwen3 Next 80B A3B Thinking",
"multiModal": false,
"pricing": {
"prompt": "0.00000015",
"completion": "0.0000012",
"request": "0",
"image": "0",
"web_search": "0",
"internal_reasoning": "0"
},
"contextLength": 262144,
"description": "Qwen3-Next-80B-A3B-Thinking is a reasoning-first chat model in the Qwen3-Next line that outputs structured “thinking” traces by default. It’s designed for hard multi-step problems; math proofs, code synthesis/debugging, logic, and agentic planning, and reports strong results across knowledge, reasoning, coding, alignment, and multilingual evaluations. Compared with prior Qwen3 variants, it emphasizes stability under long chains of thought and efficient scaling during inference, and it is tuned to follow complex instructions while reducing repetitive or off-task behavior.\n\nThe model is suitable for agent frameworks and tool use (function calling), retrieval-heavy workflows, and standardized benchmarking where step-by-step solutions are required. It supports long, detailed completions and leverages throughput-oriented techniques (e.g., multi-token prediction) for faster generation. Note that it operates in thinking-only mode."
},
{
"id": "qwen/qwen3-next-80b-a3b-instruct",
"provider": "qwen",
"providerId": "openrouter",
"name": "Qwen: Qwen3 Next 80B A3B Instruct",
"multiModal": false,
"pricing": {
"prompt": "0.0000001",
"completion": "0.0000008",
"request": "0",
"image": "0",
"web_search": "0",
"internal_reasoning": "0"
},
"contextLength": 262144,
"description": "Qwen3-Next-80B-A3B-Instruct is an instruction-tuned chat model in the Qwen3-Next series optimized for fast, stable responses without “thinking” traces. It targets complex tasks across reasoning, code generation, knowledge QA, and multilingual use, while remaining robust on alignment and formatting. Compared with prior Qwen3 instruct variants, it focuses on higher throughput and stability on ultra-long inputs and multi-turn dialogues, making it well-suited for RAG, tool use, and agentic workflows that require consistent final answers rather than visible chain-of-thought.\n\nThe model employs scaling-efficient training and decoding to improve parameter efficiency and inference speed, and has been validated on a broad set of public benchmarks where it reaches or approaches larger Qwen3 systems in several categories while outperforming earlier mid-sized baselines. It is best used as a general assistant, code helper, and long-context task solver in production settings where deterministic, instruction-following outputs are preferred."
},
{
"id": "qwen/qwen-plus-2025-07-28",
"provider": "qwen",
"providerId": "openrouter",
"name": "Qwen: Qwen Plus 0728",
"multiModal": false,
"pricing": {
"prompt": "0.0000004",
"completion": "0.0000012",
"request": "0",
"image": "0",
"web_search": "0",
"internal_reasoning": "0"
},
"contextLength": 1000000,
"description": "Qwen Plus 0728, based on the Qwen3 foundation model, is a 1 million context hybrid reasoning model with a balanced performance, speed, and cost combination."
},
{
"id": "qwen/qwen-plus-2025-07-28:thinking",
"provider": "qwen",
"providerId": "openrouter",
"name": "Qwen: Qwen Plus 0728 (thinking)",
"multiModal": false,
"pricing": {
"prompt": "0.0000004",
"completion": "0.000004",
"request": "0",
"image": "0",
"web_search": "0",
"internal_reasoning": "0"
},
"contextLength": 1000000,
"description": "Qwen Plus 0728, based on the Qwen3 foundation model, is a 1 million context hybrid reasoning model with a balanced performance, speed, and cost combination."
},
{
"id": "qwen/qwen3-30b-a3b-thinking-2507",
"provider": "qwen",
"providerId": "openrouter",
"name": "Qwen: Qwen3 30B A3B Thinking 2507",
"multiModal": false,
"pricing": {
"prompt": "0.00000009",
"completion": "0.0000003",
"request": "0",
"image": "0",
"web_search": "0",
"internal_reasoning": "0"
},
"contextLength": 262144,
"description": "Qwen3-30B-A3B-Thinking-2507 is a 30B parameter Mixture-of-Experts reasoning model optimized for complex tasks requiring extended multi-step thinking. The model is designed specifically for “thinking mode,” where internal reasoning traces are separated from final answers.\n\nCompared to earlier Qwen3-30B releases, this version improves performance across logical reasoning, mathematics, science, coding, and multilingual benchmarks. It also demonstrates stronger instruction following, tool use, and alignment with human preferences. With higher reasoning efficiency and extended output budgets, it is best suited for advanced research, competitive problem solving, and agentic applications requiring structured long-context reasoning."
},
{
"id": "google/gemini-2.5-flash-image-preview",
"provider": "google",
"providerId": "openrouter",
"name": "Google: Gemini 2.5 Flash Image Preview (Nano Banana)",
"multiModal": true,
"pricing": {
"prompt": "0.0000003",
"completion": "0.0000025",
"request": "0",
"image": "0.001238",
"web_search": "0",
"internal_reasoning": "0"
},
"contextLength": 32768,
"description": "Gemini 2.5 Flash Image Preview, a.k.a. \"Nano Banana,\" is a state of the art image generation model with contextual understanding. It is capable of image generation, edits, and multi-turn conversations."
},
{
"id": "openai/gpt-4o-audio-preview",
"provider": "openai",
"providerId": "openrouter",
"name": "OpenAI: GPT-4o Audio",
"multiModal": false,
"pricing": {
"prompt": "0.0000025",
"completion": "0.00001",
"request": "0",
"image": "0",
"audio": "0.00004",