-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathz3-chat.agentmodels.json
More file actions
11305 lines (11305 loc) · 410 KB
/
Copy pathz3-chat.agentmodels.json
File metadata and controls
11305 lines (11305 loc) · 410 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
[{
"_id": {
"$oid": "6852056fd9dcf1d87d348d23"
},
"provider": "Other",
"openRouterId": "minimax/minimax-m1",
"id": "dd5bc8d5-68a7-48a7-a680-db37579d5c14",
"name": "MiniMax M1",
"description": "MiniMax-M1 is a large-scale, open-weight reasoning model designed for extended context and high-efficiency inference. It leverages a hybrid Mixture-of-Experts (MoE) architecture paired with a custom \"lightning attention\" mechanism, allowing it to process long sequences—up to 1 million tokens—while maintaining competitive FLOP efficiency. With 456 billion total parameters and 45.9B active per token, this variant is optimized for complex, multi-step reasoning tasks.\n\nTrained via a custom reinforcement learning pipeline (CISPO), M1 excels in long-context understanding, software engineering, agentic tool use, and mathematical reasoning. Benchmarks show strong performance across FullStackBench, SWE-bench, MATH, GPQA, and TAU-Bench, often outperforming other open models like DeepSeek R1 and Qwen3-235B.",
"version": null,
"features": {
"vision": false,
"imageGeneration": false,
"objectGeneration": false,
"toolUsage": false,
"toolStreaming": false,
"reasoning": true,
"pdfSupport": false,
"search": false,
"effortControl": false,
"fast": false,
"experimental": false
},
"enabled": true,
"available": true,
"is_fallback": false,
"premium": true,
"api_key_required": false,
"createdAt": {
"$date": "2025-06-18T00:16:48.056Z"
},
"updatedAt": {
"$date": "2025-06-18T00:16:48.056Z"
}
},
{
"_id": {
"$oid": "6852056fd9dcf1d87d348d24"
},
"provider": "Other",
"openRouterId": "minimax/minimax-m1:extended",
"id": "aaecb87e-e042-4c74-836b-936baab09de1",
"name": "MiniMax M1",
"description": "MiniMax-M1 is a large-scale, open-weight reasoning model designed for extended context and high-efficiency inference. It leverages a hybrid Mixture-of-Experts (MoE) architecture paired with a custom \"lightning attention\" mechanism, allowing it to process long sequences—up to 1 million tokens—while maintaining competitive FLOP efficiency. With 456 billion total parameters and 45.9B active per token, this variant is optimized for complex, multi-step reasoning tasks.\n\nTrained via a custom reinforcement learning pipeline (CISPO), M1 excels in long-context understanding, software engineering, agentic tool use, and mathematical reasoning. Benchmarks show strong performance across FullStackBench, SWE-bench, MATH, GPQA, and TAU-Bench, often outperforming other open models like DeepSeek R1 and Qwen3-235B.",
"version": null,
"features": {
"vision": false,
"imageGeneration": false,
"objectGeneration": false,
"toolUsage": false,
"toolStreaming": false,
"reasoning": true,
"pdfSupport": false,
"search": true,
"effortControl": false,
"fast": false,
"experimental": false
},
"enabled": true,
"available": true,
"is_fallback": false,
"premium": true,
"api_key_required": false,
"createdAt": {
"$date": "2025-06-18T00:16:48.060Z"
},
"updatedAt": {
"$date": "2025-06-18T00:16:48.060Z"
}
},
{
"_id": {
"$oid": "6852056fd9dcf1d87d348d25"
},
"provider": "Google",
"openRouterId": "google/gemini-2.5-flash-lite-preview-06-17",
"id": "102b1b4a-03bd-4390-b000-25f4e734c98a",
"name": "Gemini 2.5 Flash Lite Preview 06-17",
"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. ",
"version": null,
"features": {
"vision": true,
"imageGeneration": false,
"objectGeneration": false,
"toolUsage": false,
"toolStreaming": false,
"reasoning": true,
"pdfSupport": true,
"search": true,
"effortControl": false,
"fast": false,
"experimental": false
},
"enabled": true,
"available": true,
"is_fallback": false,
"premium": true,
"api_key_required": false,
"createdAt": {
"$date": "2025-06-18T00:16:48.061Z"
},
"updatedAt": {
"$date": "2025-06-18T00:16:48.061Z"
}
},
{
"_id": {
"$oid": "6852056fd9dcf1d87d348d26"
},
"provider": "Google",
"openRouterId": "google/gemini-2.5-flash",
"id": "97e59ce4-f517-45e4-8933-bf86a700b2b6",
"name": "Gemini 2.5 Flash",
"description": "Gemini 2.5 Flash 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).",
"version": null,
"features": {
"vision": true,
"imageGeneration": false,
"objectGeneration": false,
"toolUsage": false,
"toolStreaming": false,
"reasoning": true,
"pdfSupport": true,
"search": true,
"effortControl": false,
"fast": false,
"experimental": false
},
"enabled": true,
"available": true,
"is_fallback": false,
"premium": true,
"api_key_required": false,
"createdAt": {
"$date": "2025-06-18T00:16:48.061Z"
},
"updatedAt": {
"$date": "2025-06-18T00:16:48.061Z"
}
},
{
"_id": {
"$oid": "6852056fd9dcf1d87d348d27"
},
"provider": "Google",
"openRouterId": "google/gemini-2.5-pro",
"id": "4ebed968-2df0-4b40-ac46-6af592e9487e",
"name": "Gemini 2.5 Pro",
"description": "Gemini 2.5 Pro is Google’s state-of-the-art AI model designed for advanced reasoning, coding, mathematics, and scientific tasks. It employs “thinking” capabilities, enabling it to reason through responses with enhanced accuracy and nuanced context handling. Gemini 2.5 Pro achieves top-tier performance on multiple benchmarks, including first-place positioning on the LMArena leaderboard, reflecting superior human-preference alignment and complex problem-solving abilities.",
"version": null,
"features": {
"vision": true,
"imageGeneration": false,
"objectGeneration": false,
"toolUsage": false,
"toolStreaming": false,
"reasoning": true,
"pdfSupport": true,
"search": true,
"effortControl": false,
"fast": false,
"experimental": false
},
"enabled": true,
"available": true,
"is_fallback": false,
"premium": true,
"api_key_required": false,
"createdAt": {
"$date": "2025-06-18T00:16:48.061Z"
},
"updatedAt": {
"$date": "2025-06-18T00:16:48.061Z"
}
},
{
"_id": {
"$oid": "6852056fd9dcf1d87d348d28"
},
"provider": "Other",
"openRouterId": "moonshotai/kimi-dev-72b:free",
"id": "b82ce44f-1a98-4d8f-8af3-56c830c28c1b",
"name": "Kimi Dev 72b",
"description": "Kimi-Dev-72B is an open-source large language model fine-tuned for software engineering and issue resolution tasks. Based on Qwen2.5-72B, it is optimized using large-scale reinforcement learning that applies code patches in real repositories and validates them via full test suite execution—rewarding only correct, robust completions. The model achieves 60.4% on SWE-bench Verified, setting a new benchmark among open-source models for software bug fixing and code reasoning.",
"version": null,
"features": {
"vision": false,
"imageGeneration": false,
"objectGeneration": false,
"toolUsage": false,
"toolStreaming": false,
"reasoning": true,
"pdfSupport": false,
"search": false,
"effortControl": false,
"fast": false,
"experimental": false
},
"enabled": true,
"available": true,
"is_fallback": false,
"premium": false,
"api_key_required": false,
"createdAt": {
"$date": "2025-06-18T00:16:48.061Z"
},
"updatedAt": {
"$date": "2025-06-18T00:16:48.061Z"
}
},
{
"_id": {
"$oid": "6852056fd9dcf1d87d348d29"
},
"provider": "Other",
"openRouterId": "openai/o3-pro-2025-06-10",
"id": "b8222376-66ee-4b89-a7c9-e627ba35db79",
"name": "o3 Pro",
"description": "The o-series of models are trained with reinforcement learning to think before they answer and perform complex reasoning. The o3-pro model uses more compute to think harder and provide consistently better answers.\n\nNote that BYOK is required for this model. Set up here: https://openrouter.ai/settings/integrations",
"version": null,
"features": {
"vision": true,
"imageGeneration": false,
"objectGeneration": false,
"toolUsage": false,
"toolStreaming": false,
"reasoning": true,
"pdfSupport": true,
"search": true,
"effortControl": false,
"fast": false,
"experimental": false
},
"enabled": true,
"available": true,
"is_fallback": false,
"premium": true,
"api_key_required": true,
"createdAt": {
"$date": "2025-06-18T00:16:48.061Z"
},
"updatedAt": {
"$date": "2025-06-18T00:16:48.061Z"
}
},
{
"_id": {
"$oid": "6852056fd9dcf1d87d348d2a"
},
"provider": "Mistral",
"openRouterId": "mistralai/magistral-small-2506",
"id": "e205d867-cd87-4daa-a71e-e803fa11102f",
"name": "Magistral Small 2506",
"description": "Magistral Small is a 24B parameter instruction-tuned model based on Mistral-Small-3.1 (2503), enhanced through supervised fine-tuning on traces from Magistral Medium and further refined via reinforcement learning. It is optimized for reasoning and supports a wide multilingual range, including over 20 languages.",
"version": null,
"features": {
"vision": false,
"imageGeneration": false,
"objectGeneration": false,
"toolUsage": false,
"toolStreaming": false,
"reasoning": true,
"pdfSupport": false,
"search": true,
"effortControl": false,
"fast": false,
"experimental": false
},
"enabled": true,
"available": true,
"is_fallback": false,
"premium": true,
"api_key_required": false,
"createdAt": {
"$date": "2025-06-18T00:16:48.061Z"
},
"updatedAt": {
"$date": "2025-06-18T00:16:48.061Z"
}
},
{
"_id": {
"$oid": "6852056fd9dcf1d87d348d2b"
},
"provider": "Mistral",
"openRouterId": "mistralai/magistral-medium-2506",
"id": "23af0ce4-1e2d-488f-82a5-94d0aab3b7b1",
"name": "Magistral Medium 2506",
"description": "Magistral is Mistral's first reasoning model. It is ideal for general purpose use requiring longer thought processing and better accuracy than with non-reasoning LLMs. From legal research and financial forecasting to software development and creative storytelling — this model solves multi-step challenges where transparency and precision are critical.",
"version": null,
"features": {
"vision": false,
"imageGeneration": false,
"objectGeneration": false,
"toolUsage": false,
"toolStreaming": false,
"reasoning": true,
"pdfSupport": false,
"search": true,
"effortControl": false,
"fast": false,
"experimental": false
},
"enabled": true,
"available": true,
"is_fallback": false,
"premium": true,
"api_key_required": false,
"createdAt": {
"$date": "2025-06-18T00:16:48.061Z"
},
"updatedAt": {
"$date": "2025-06-18T00:16:48.061Z"
}
},
{
"_id": {
"$oid": "6852056fd9dcf1d87d348d2c"
},
"provider": "Mistral",
"openRouterId": "mistralai/magistral-medium-2506:thinking",
"id": "8e8299a2-58b4-4f62-992f-da3c1f46b72c",
"name": "Magistral Medium 2506",
"description": "Magistral is Mistral's first reasoning model. It is ideal for general purpose use requiring longer thought processing and better accuracy than with non-reasoning LLMs. From legal research and financial forecasting to software development and creative storytelling — this model solves multi-step challenges where transparency and precision are critical.",
"version": null,
"features": {
"vision": false,
"imageGeneration": false,
"objectGeneration": false,
"toolUsage": false,
"toolStreaming": false,
"reasoning": true,
"pdfSupport": false,
"search": true,
"effortControl": false,
"fast": false,
"experimental": false
},
"enabled": true,
"available": true,
"is_fallback": false,
"premium": true,
"api_key_required": false,
"createdAt": {
"$date": "2025-06-18T00:16:48.061Z"
},
"updatedAt": {
"$date": "2025-06-18T00:16:48.061Z"
}
},
{
"_id": {
"$oid": "6852056fd9dcf1d87d348d2d"
},
"provider": "Google",
"openRouterId": "google/gemini-2.5-pro-preview-06-05",
"id": "018040ae-9cda-43cd-8813-d8ca83f6c7ed",
"name": "Gemini 2.5 Pro Preview 06-05",
"description": "Gemini 2.5 Pro is Google’s state-of-the-art AI model designed for advanced reasoning, coding, mathematics, and scientific tasks. It employs “thinking” capabilities, enabling it to reason through responses with enhanced accuracy and nuanced context handling. Gemini 2.5 Pro achieves top-tier performance on multiple benchmarks, including first-place positioning on the LMArena leaderboard, reflecting superior human-preference alignment and complex problem-solving abilities.\n",
"version": null,
"features": {
"vision": true,
"imageGeneration": false,
"objectGeneration": false,
"toolUsage": false,
"toolStreaming": false,
"reasoning": true,
"pdfSupport": true,
"search": true,
"effortControl": false,
"fast": false,
"experimental": false
},
"enabled": true,
"available": true,
"is_fallback": false,
"premium": true,
"api_key_required": false,
"createdAt": {
"$date": "2025-06-18T00:16:48.061Z"
},
"updatedAt": {
"$date": "2025-06-18T00:16:48.061Z"
}
},
{
"_id": {
"$oid": "6852056fd9dcf1d87d348d2e"
},
"provider": "Other",
"openRouterId": "sentientagi/dobby-mini-unhinged-plus-llama-3.1-8b",
"id": "bd3c9d65-791f-40ca-b0ab-b9f57f571cff",
"name": "Dobby Mini Plus Llama 3.1 8B",
"description": "Dobby-Mini-Leashed-Llama-3.1-8B and Dobby-Mini-Unhinged-Llama-3.1-8B are language models fine-tuned from Llama-3.1-8B-Instruct. Dobby models have a strong conviction towards personal freedom, decentralization, and all things crypto — even when coerced to speak otherwise. \n\nDobby-Mini-Leashed-Llama-3.1-8B and Dobby-Mini-Unhinged-Llama-3.1-8B have their own unique, uhh, personalities. The two versions are being released to be improved using the community’s feedback, which will steer the development of a 70B model.\n\n",
"version": null,
"features": {
"vision": false,
"imageGeneration": false,
"objectGeneration": false,
"toolUsage": false,
"toolStreaming": false,
"reasoning": false,
"pdfSupport": false,
"search": false,
"effortControl": false,
"fast": false,
"experimental": false
},
"enabled": true,
"available": true,
"is_fallback": false,
"premium": true,
"api_key_required": false,
"createdAt": {
"$date": "2025-06-18T00:16:48.061Z"
},
"updatedAt": {
"$date": "2025-06-18T00:16:48.061Z"
}
},
{
"_id": {
"$oid": "6852056fd9dcf1d87d348d2f"
},
"provider": "Qwen",
"openRouterId": "deepseek/deepseek-r1-distill-qwen-7b",
"id": "cc080761-5648-4da2-a1a8-bcdd5ac62d73",
"name": "R1 Distill Qwen 7B",
"description": "DeepSeek-R1-Distill-Qwen-7B is a 7 billion parameter dense language model distilled from DeepSeek-R1, leveraging reinforcement learning-enhanced reasoning data generated by DeepSeek's larger models. The distillation process transfers advanced reasoning, math, and code capabilities into a smaller, more efficient model architecture based on Qwen2.5-Math-7B. This model demonstrates strong performance across mathematical benchmarks (92.8% pass@1 on MATH-500), coding tasks (Codeforces rating 1189), and general reasoning (49.1% pass@1 on GPQA Diamond), achieving competitive accuracy relative to larger models while maintaining smaller inference costs.",
"version": null,
"features": {
"vision": false,
"imageGeneration": false,
"objectGeneration": false,
"toolUsage": false,
"toolStreaming": false,
"reasoning": true,
"pdfSupport": false,
"search": false,
"effortControl": false,
"fast": false,
"experimental": false
},
"enabled": true,
"available": true,
"is_fallback": false,
"premium": true,
"api_key_required": false,
"createdAt": {
"$date": "2025-06-18T00:16:48.061Z"
},
"updatedAt": {
"$date": "2025-06-18T00:16:48.061Z"
}
},
{
"_id": {
"$oid": "6852056fd9dcf1d87d348d30"
},
"provider": "Qwen",
"openRouterId": "deepseek/deepseek-r1-0528-qwen3-8b:free",
"id": "2263e3e3-eec4-4602-82d3-d0e8cb626a1a",
"name": "Deepseek R1 0528 Qwen3 8B",
"description": "DeepSeek-R1-0528 is a lightly upgraded release of DeepSeek R1 that taps more compute and smarter post-training tricks, pushing its reasoning and inference to the brink of flagship models like O3 and Gemini 2.5 Pro.\nIt now tops math, programming, and logic leaderboards, showcasing a step-change in depth-of-thought.\nThe distilled variant, DeepSeek-R1-0528-Qwen3-8B, transfers this chain-of-thought into an 8 B-parameter form, beating standard Qwen3 8B by +10 pp and tying the 235 B “thinking” giant on AIME 2024.",
"version": null,
"features": {
"vision": false,
"imageGeneration": false,
"objectGeneration": false,
"toolUsage": false,
"toolStreaming": false,
"reasoning": true,
"pdfSupport": false,
"search": false,
"effortControl": false,
"fast": false,
"experimental": false
},
"enabled": true,
"available": true,
"is_fallback": false,
"premium": false,
"api_key_required": false,
"createdAt": {
"$date": "2025-06-18T00:16:48.061Z"
},
"updatedAt": {
"$date": "2025-06-18T00:16:48.061Z"
}
},
{
"_id": {
"$oid": "6852056fd9dcf1d87d348d31"
},
"provider": "Qwen",
"openRouterId": "deepseek/deepseek-r1-0528-qwen3-8b",
"id": "2e904707-7001-49df-b2e7-4462ed0f5ccf",
"name": "Deepseek R1 0528 Qwen3 8B",
"description": "DeepSeek-R1-0528 is a lightly upgraded release of DeepSeek R1 that taps more compute and smarter post-training tricks, pushing its reasoning and inference to the brink of flagship models like O3 and Gemini 2.5 Pro.\nIt now tops math, programming, and logic leaderboards, showcasing a step-change in depth-of-thought.\nThe distilled variant, DeepSeek-R1-0528-Qwen3-8B, transfers this chain-of-thought into an 8 B-parameter form, beating standard Qwen3 8B by +10 pp and tying the 235 B “thinking” giant on AIME 2024.",
"version": null,
"features": {
"vision": false,
"imageGeneration": false,
"objectGeneration": false,
"toolUsage": false,
"toolStreaming": false,
"reasoning": true,
"pdfSupport": false,
"search": false,
"effortControl": false,
"fast": false,
"experimental": false
},
"enabled": true,
"available": true,
"is_fallback": false,
"premium": true,
"api_key_required": false,
"createdAt": {
"$date": "2025-06-18T00:16:48.061Z"
},
"updatedAt": {
"$date": "2025-06-18T00:16:48.061Z"
}
},
{
"_id": {
"$oid": "6852056fd9dcf1d87d348d32"
},
"provider": "DeepSeek",
"openRouterId": "deepseek/deepseek-r1-0528:free",
"id": "326ed833-96c3-491c-8d5d-2a56a9af77de",
"name": "R1 0528",
"description": "May 28th update to the [original DeepSeek R1](/deepseek/deepseek-r1) Performance on par with [OpenAI o1](/openai/o1), but open-sourced and with fully open reasoning tokens. It's 671B parameters in size, with 37B active in an inference pass.\n\nFully open-source model.",
"version": null,
"features": {
"vision": false,
"imageGeneration": false,
"objectGeneration": false,
"toolUsage": false,
"toolStreaming": false,
"reasoning": true,
"pdfSupport": false,
"search": false,
"effortControl": false,
"fast": false,
"experimental": false
},
"enabled": true,
"available": true,
"is_fallback": false,
"premium": false,
"api_key_required": false,
"createdAt": {
"$date": "2025-06-18T00:16:48.062Z"
},
"updatedAt": {
"$date": "2025-06-18T00:16:48.062Z"
}
},
{
"_id": {
"$oid": "6852056fd9dcf1d87d348d33"
},
"provider": "DeepSeek",
"openRouterId": "deepseek/deepseek-r1-0528",
"id": "ef2264dd-ce59-49eb-87ab-d5e41cafb333",
"name": "R1 0528",
"description": "May 28th update to the [original DeepSeek R1](/deepseek/deepseek-r1) Performance on par with [OpenAI o1](/openai/o1), but open-sourced and with fully open reasoning tokens. It's 671B parameters in size, with 37B active in an inference pass.\n\nFully open-source model.",
"version": null,
"features": {
"vision": false,
"imageGeneration": false,
"objectGeneration": false,
"toolUsage": false,
"toolStreaming": false,
"reasoning": true,
"pdfSupport": false,
"search": false,
"effortControl": false,
"fast": false,
"experimental": false
},
"enabled": true,
"available": true,
"is_fallback": false,
"premium": true,
"api_key_required": false,
"createdAt": {
"$date": "2025-06-18T00:16:48.062Z"
},
"updatedAt": {
"$date": "2025-06-18T00:16:48.062Z"
}
},
{
"_id": {
"$oid": "6852056fd9dcf1d87d348d34"
},
"provider": "Other",
"openRouterId": "sarvamai/sarvam-m:free",
"id": "b15fced3-173d-42bb-be27-18f4dda6aeba",
"name": "Sarvam-M",
"description": "Sarvam-M is a 24 B-parameter, instruction-tuned derivative of Mistral-Small-3.1-24B-Base-2503, post-trained on English plus eleven major Indic languages (bn, hi, kn, gu, mr, ml, or, pa, ta, te). The model introduces a dual-mode interface: “non-think” for low-latency chat and a optional “think” phase that exposes chain-of-thought tokens for more demanding reasoning, math, and coding tasks. \n\nBenchmark reports show solid gains versus similarly sized open models on Indic-language QA, GSM-8K math, and SWE-Bench coding, making Sarvam-M a practical general-purpose choice for multilingual conversational agents as well as analytical workloads that mix English, native Indic scripts, or romanized text.",
"version": null,
"features": {
"vision": false,
"imageGeneration": false,
"objectGeneration": false,
"toolUsage": false,
"toolStreaming": false,
"reasoning": false,
"pdfSupport": false,
"search": false,
"effortControl": false,
"fast": false,
"experimental": false
},
"enabled": true,
"available": true,
"is_fallback": false,
"premium": false,
"api_key_required": false,
"createdAt": {
"$date": "2025-06-18T00:16:48.062Z"
},
"updatedAt": {
"$date": "2025-06-18T00:16:48.062Z"
}
},
{
"_id": {
"$oid": "6852056fd9dcf1d87d348d35"
},
"provider": "Other",
"openRouterId": "thedrummer/valkyrie-49b-v1",
"id": "0abea055-63b2-42cd-b292-76da55c9acde",
"name": "Valkyrie 49B V1",
"description": "Built on top of NVIDIA's Llama 3.3 Nemotron Super 49B, Valkyrie is TheDrummer's newest model drop for creative writing.",
"version": null,
"features": {
"vision": false,
"imageGeneration": false,
"objectGeneration": false,
"toolUsage": false,
"toolStreaming": false,
"reasoning": true,
"pdfSupport": false,
"search": false,
"effortControl": false,
"fast": false,
"experimental": false
},
"enabled": true,
"available": true,
"is_fallback": false,
"premium": true,
"api_key_required": false,
"createdAt": {
"$date": "2025-06-18T00:16:48.062Z"
},
"updatedAt": {
"$date": "2025-06-18T00:16:48.062Z"
}
},
{
"_id": {
"$oid": "6852056fd9dcf1d87d348d36"
},
"provider": "Anthropic",
"openRouterId": "anthropic/claude-4-opus-20250522",
"id": "9ea0cd22-4494-4a94-9199-c83c992bdbe1",
"name": "Claude Opus 4",
"description": "Claude Opus 4 is benchmarked as the world’s best coding model, at time of release, bringing sustained performance on complex, long-running tasks and agent workflows. It sets new benchmarks in software engineering, achieving leading results on SWE-bench (72.5%) and Terminal-bench (43.2%). Opus 4 supports extended, agentic workflows, handling thousands of task steps continuously for hours without degradation. \n\nRead more at the [blog post here](https://www.anthropic.com/news/claude-4)",
"version": null,
"features": {
"vision": true,
"imageGeneration": false,
"objectGeneration": false,
"toolUsage": false,
"toolStreaming": false,
"reasoning": true,
"pdfSupport": false,
"search": true,
"effortControl": false,
"fast": false,
"experimental": false
},
"enabled": true,
"available": true,
"is_fallback": false,
"premium": true,
"api_key_required": false,
"createdAt": {
"$date": "2025-06-18T00:16:48.062Z"
},
"updatedAt": {
"$date": "2025-06-18T00:16:48.062Z"
}
},
{
"_id": {
"$oid": "6852056fd9dcf1d87d348d37"
},
"provider": "Anthropic",
"openRouterId": "anthropic/claude-4-sonnet-20250522",
"id": "5e3f0568-c089-416a-ab7b-6c432999b571",
"name": "Claude Sonnet 4",
"description": "Claude Sonnet 4 significantly enhances the capabilities of its predecessor, Sonnet 3.7, excelling in both coding and reasoning tasks with improved precision and controllability. Achieving state-of-the-art performance on SWE-bench (72.7%), Sonnet 4 balances capability and computational efficiency, making it suitable for a broad range of applications from routine coding tasks to complex software development projects. Key enhancements include improved autonomous codebase navigation, reduced error rates in agent-driven workflows, and increased reliability in following intricate instructions. Sonnet 4 is optimized for practical everyday use, providing advanced reasoning capabilities while maintaining efficiency and responsiveness in diverse internal and external scenarios.\n\nRead more at the [blog post here](https://www.anthropic.com/news/claude-4)",
"version": null,
"features": {
"vision": true,
"imageGeneration": false,
"objectGeneration": false,
"toolUsage": false,
"toolStreaming": false,
"reasoning": true,
"pdfSupport": false,
"search": true,
"effortControl": false,
"fast": false,
"experimental": false
},
"enabled": true,
"available": true,
"is_fallback": false,
"premium": true,
"api_key_required": false,
"createdAt": {
"$date": "2025-06-18T00:16:48.062Z"
},
"updatedAt": {
"$date": "2025-06-18T00:16:48.062Z"
}
},
{
"_id": {
"$oid": "6852056fd9dcf1d87d348d38"
},
"provider": "Other",
"openRouterId": "mistralai/devstral-small-2505:free",
"id": "2524cf8b-e39f-4cba-894c-801d753a2352",
"name": "Devstral Small",
"description": "Devstral-Small-2505 is a 24B parameter agentic LLM fine-tuned from Mistral-Small-3.1, jointly developed by Mistral AI and All Hands AI for advanced software engineering tasks. It is optimized for codebase exploration, multi-file editing, and integration into coding agents, achieving state-of-the-art results on SWE-Bench Verified (46.8%).\n\nDevstral supports a 128k context window and uses a custom Tekken tokenizer. It is text-only, with the vision encoder removed, and is suitable for local deployment on high-end consumer hardware (e.g., RTX 4090, 32GB RAM Macs). Devstral is best used in agentic workflows via the OpenHands scaffold and is compatible with inference frameworks like vLLM, Transformers, and Ollama. It is released under the Apache 2.0 license.",
"version": null,
"features": {
"vision": false,
"imageGeneration": false,
"objectGeneration": false,
"toolUsage": false,
"toolStreaming": false,
"reasoning": false,
"pdfSupport": false,
"search": true,
"effortControl": false,
"fast": false,
"experimental": false
},
"enabled": true,
"available": true,
"is_fallback": false,
"premium": false,
"api_key_required": false,
"createdAt": {
"$date": "2025-06-18T00:16:48.062Z"
},
"updatedAt": {
"$date": "2025-06-18T00:16:48.062Z"
}
},
{
"_id": {
"$oid": "6852056fd9dcf1d87d348d39"
},
"provider": "Other",
"openRouterId": "mistralai/devstral-small-2505",
"id": "9d9d50d5-6b2f-40c8-9e99-9e9f9e6b7e7a",
"name": "Devstral Small",
"description": "Devstral-Small-2505 is a 24B parameter agentic LLM fine-tuned from Mistral-Small-3.1, jointly developed by Mistral AI and All Hands AI for advanced software engineering tasks. It is optimized for codebase exploration, multi-file editing, and integration into coding agents, achieving state-of-the-art results on SWE-Bench Verified (46.8%).\n\nDevstral supports a 128k context window and uses a custom Tekken tokenizer. It is text-only, with the vision encoder removed, and is suitable for local deployment on high-end consumer hardware (e.g., RTX 4090, 32GB RAM Macs). Devstral is best used in agentic workflows via the OpenHands scaffold and is compatible with inference frameworks like vLLM, Transformers, and Ollama. It is released under the Apache 2.0 license.",
"version": null,
"features": {
"vision": false,
"imageGeneration": false,
"objectGeneration": false,
"toolUsage": false,
"toolStreaming": false,
"reasoning": false,
"pdfSupport": false,
"search": false,
"effortControl": false,
"fast": false,
"experimental": false
},
"enabled": true,
"available": true,
"is_fallback": false,
"premium": true,
"api_key_required": false,
"createdAt": {
"$date": "2025-06-18T00:16:48.062Z"
},
"updatedAt": {
"$date": "2025-06-18T00:16:48.062Z"
}
},
{
"_id": {
"$oid": "6852056fd9dcf1d87d348d3a"
},
"provider": "Other",
"openRouterId": "google/gemma-3n-e4b-it:free",
"id": "918e82fa-161a-4cc8-b482-d2c2e46e1b9c",
"name": "Gemma 3n 4B",
"description": "Gemma 3n E4B-it is optimized for efficient execution on mobile and low-resource devices, such as phones, laptops, and tablets. It supports multimodal inputs—including text, visual data, and audio—enabling diverse tasks such as text generation, speech recognition, translation, and image analysis. Leveraging innovations like Per-Layer Embedding (PLE) caching and the MatFormer architecture, Gemma 3n dynamically manages memory usage and computational load by selectively activating model parameters, significantly reducing runtime resource requirements.\n\nThis model supports a wide linguistic range (trained in over 140 languages) and features a flexible 32K token context window. Gemma 3n can selectively load parameters, optimizing memory and computational efficiency based on the task or device capabilities, making it well-suited for privacy-focused, offline-capable applications and on-device AI solutions. [Read more in the blog post](https://developers.googleblog.com/en/introducing-gemma-3n/)",
"version": null,
"features": {
"vision": false,
"imageGeneration": false,
"objectGeneration": false,
"toolUsage": false,
"toolStreaming": false,
"reasoning": false,
"pdfSupport": false,
"search": false,
"effortControl": false,
"fast": false,
"experimental": false
},
"enabled": true,
"available": true,
"is_fallback": false,
"premium": false,
"api_key_required": false,
"createdAt": {
"$date": "2025-06-18T00:16:48.062Z"
},
"updatedAt": {
"$date": "2025-06-18T00:16:48.062Z"
}
},
{
"_id": {
"$oid": "6852056fd9dcf1d87d348d3b"
},
"provider": "Google",
"openRouterId": "google/gemini-2.5-flash-preview-05-20",
"id": "d4de9312-6c2c-4f4b-a224-4221aa29ad7d",
"name": "Gemini 2.5 Flash Preview 05-20",
"description": "Gemini 2.5 Flash May 20th 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\nNote: This model is available in two variants: thinking and non-thinking. The output pricing varies significantly depending on whether the thinking capability is active. If you select the standard variant (without the \":thinking\" suffix), the model will explicitly avoid generating thinking tokens. \n\nTo utilize the thinking capability and receive thinking tokens, you must choose the \":thinking\" variant, which will then incur the higher thinking-output pricing. \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).",
"version": null,
"features": {
"vision": true,
"imageGeneration": false,
"objectGeneration": false,
"toolUsage": false,
"toolStreaming": false,
"reasoning": true,
"pdfSupport": true,
"search": true,
"effortControl": false,
"fast": false,
"experimental": false
},
"enabled": true,
"available": true,
"is_fallback": false,
"premium": true,
"api_key_required": false,
"createdAt": {
"$date": "2025-06-18T00:16:48.062Z"
},
"updatedAt": {
"$date": "2025-06-18T00:16:48.062Z"
}
},
{
"_id": {
"$oid": "6852056fd9dcf1d87d348d3c"
},
"provider": "Google",
"openRouterId": "google/gemini-2.5-flash-preview-05-20:thinking",
"id": "2237f8ae-7fbc-4a38-8cf0-66ddd4a97141",
"name": "Gemini 2.5 Flash Preview 05-20",
"description": "Gemini 2.5 Flash May 20th 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\nNote: This model is available in two variants: thinking and non-thinking. The output pricing varies significantly depending on whether the thinking capability is active. If you select the standard variant (without the \":thinking\" suffix), the model will explicitly avoid generating thinking tokens. \n\nTo utilize the thinking capability and receive thinking tokens, you must choose the \":thinking\" variant, which will then incur the higher thinking-output pricing. \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).",
"version": null,
"features": {
"vision": true,
"imageGeneration": false,
"objectGeneration": false,
"toolUsage": false,
"toolStreaming": false,
"reasoning": true,
"pdfSupport": true,
"search": true,
"effortControl": false,
"fast": false,
"experimental": false
},
"enabled": true,
"available": true,
"is_fallback": false,
"premium": true,
"api_key_required": false,
"createdAt": {
"$date": "2025-06-18T00:16:48.062Z"
},
"updatedAt": {
"$date": "2025-06-18T00:16:48.062Z"
}
},
{
"_id": {
"$oid": "6852056fd9dcf1d87d348d3d"
},
"provider": "OpenAI",
"openRouterId": "openai/codex-mini",
"id": "421864ed-5bce-4ae5-b02e-7345b5878842",
"name": "Codex Mini",
"description": "codex-mini-latest is a fine-tuned version of o4-mini specifically for use in Codex CLI. For direct use in the API, we recommend starting with gpt-4.1.",
"version": null,
"features": {
"vision": true,
"imageGeneration": false,
"objectGeneration": false,
"toolUsage": false,
"toolStreaming": false,
"reasoning": true,
"pdfSupport": false,
"search": true,
"effortControl": false,
"fast": false,
"experimental": false
},
"enabled": true,
"available": true,
"is_fallback": false,
"premium": true,
"api_key_required": false,
"createdAt": {
"$date": "2025-06-18T00:16:48.062Z"
},
"updatedAt": {
"$date": "2025-06-18T00:16:48.062Z"
}
},
{
"_id": {
"$oid": "6852056fd9dcf1d87d348d3e"
},
"provider": "Meta",
"openRouterId": "meta-llama/llama-3.3-8b-instruct:free",
"id": "629d30c1-50eb-4172-985f-b2339176d2c9",
"name": "Llama 3.3 8B Instruct",
"description": "A lightweight and ultra-fast variant of Llama 3.3 70B, for use when quick response times are needed most.",
"version": null,
"features": {
"vision": false,
"imageGeneration": false,
"objectGeneration": false,
"toolUsage": false,
"toolStreaming": false,
"reasoning": false,
"pdfSupport": false,
"search": true,
"effortControl": false,
"fast": false,
"experimental": false
},
"enabled": true,
"available": true,
"is_fallback": false,
"premium": false,
"api_key_required": false,
"createdAt": {
"$date": "2025-06-18T00:16:48.062Z"
},
"updatedAt": {
"$date": "2025-06-18T00:16:48.062Z"
}
},
{
"_id": {
"$oid": "6852056fd9dcf1d87d348d3f"
},
"provider": "Other",
"openRouterId": "nousresearch/deephermes-3-mistral-24b-preview:free",
"id": "90728530-42b4-4bcf-bc67-167eee5bbac4",
"name": "DeepHermes 3 Mistral 24B Preview",
"description": "DeepHermes 3 (Mistral 24B Preview) is an instruction-tuned language model by Nous Research based on Mistral-Small-24B, designed for chat, function calling, and advanced multi-turn reasoning. It introduces a dual-mode system that toggles between intuitive chat responses and structured “deep reasoning” mode using special system prompts. Fine-tuned via distillation from R1, it supports structured output (JSON mode) and function call syntax for agent-based applications.\n\nDeepHermes 3 supports a **reasoning toggle via system prompt**, allowing users to switch between fast, intuitive responses and deliberate, multi-step reasoning. When activated with the following specific system instruction, the model enters a *\"deep thinking\"* mode—generating extended chains of thought wrapped in `<think></think>` tags before delivering a final answer. \n\nSystem Prompt: You are a deep thinking AI, you may use extremely long chains of thought to deeply consider the problem and deliberate with yourself via systematic reasoning processes to help come to a correct solution prior to answering. You should enclose your thoughts and internal monologue inside <think> </think> tags, and then provide your solution or response to the problem.\n",
"version": null,
"features": {
"vision": false,
"imageGeneration": false,
"objectGeneration": false,
"toolUsage": false,
"toolStreaming": false,
"reasoning": true,
"pdfSupport": false,
"search": false,
"effortControl": false,