-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodels.json
More file actions
17264 lines (17264 loc) · 577 KB
/
models.json
File metadata and controls
17264 lines (17264 loc) · 577 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": "ai21/jamba-large-1.7",
"canonical_slug": "ai21/jamba-large-1.7",
"hugging_face_id": "ai21labs/AI21-Jamba-Large-1.7",
"name": "AI21: Jamba Large 1.7",
"created": 1754669020,
"description": "Jamba Large 1.7 is the latest model in the Jamba open family, offering improvements in grounding, instruction-following, and overall efficiency. Built on a hybrid SSM-Transformer architecture with a 256K context window, it delivers more accurate, contextually grounded responses and better steerability than previous versions.",
"context_length": 256000,
"architecture": {
"modality": "text->text",
"input_modalities": [
"text"
],
"output_modalities": [
"text"
],
"tokenizer": "Other",
"instruct_type": null
},
"pricing": {
"prompt": "0.000002",
"completion": "0.000008"
},
"top_provider": {
"context_length": 256000,
"max_completion_tokens": 4096,
"is_moderated": false
},
"per_request_limits": null,
"supported_parameters": [
"max_tokens",
"response_format",
"stop",
"temperature",
"tool_choice",
"tools",
"top_p"
],
"default_parameters": {},
"expiration_date": null
},
{
"id": "aion-labs/aion-1.0",
"canonical_slug": "aion-labs/aion-1.0",
"hugging_face_id": "",
"name": "AionLabs: Aion-1.0",
"created": 1738697557,
"description": "Aion-1.0 is a multi-model system designed for high performance across various tasks, including reasoning and coding. It is built on DeepSeek-R1, augmented with additional models and techniques such as Tree of Thoughts (ToT) and Mixture of Experts (MoE). It is Aion Lab's most powerful reasoning model.",
"context_length": 131072,
"architecture": {
"modality": "text->text",
"input_modalities": [
"text"
],
"output_modalities": [
"text"
],
"tokenizer": "Other",
"instruct_type": null
},
"pricing": {
"prompt": "0.000004",
"completion": "0.000008"
},
"top_provider": {
"context_length": 131072,
"max_completion_tokens": 32768,
"is_moderated": false
},
"per_request_limits": null,
"supported_parameters": [
"include_reasoning",
"max_tokens",
"reasoning",
"temperature",
"top_p"
],
"default_parameters": {},
"expiration_date": null
},
{
"id": "aion-labs/aion-1.0-mini",
"canonical_slug": "aion-labs/aion-1.0-mini",
"hugging_face_id": "FuseAI/FuseO1-DeepSeekR1-QwQ-SkyT1-32B-Preview",
"name": "AionLabs: Aion-1.0-Mini",
"created": 1738697107,
"description": "Aion-1.0-Mini 32B parameter model is a distilled version of the DeepSeek-R1 model, designed for strong performance in reasoning domains such as mathematics, coding, and logic. It is a modified variant of a FuseAI model that outperforms R1-Distill-Qwen-32B and R1-Distill-Llama-70B, with benchmark results available on its [Hugging Face page](https://huggingface.co/FuseAI/FuseO1-DeepSeekR1-QwQ-SkyT1-32B-Preview), independently replicated for verification.",
"context_length": 131072,
"architecture": {
"modality": "text->text",
"input_modalities": [
"text"
],
"output_modalities": [
"text"
],
"tokenizer": "Other",
"instruct_type": null
},
"pricing": {
"prompt": "0.0000007",
"completion": "0.0000014"
},
"top_provider": {
"context_length": 131072,
"max_completion_tokens": 32768,
"is_moderated": false
},
"per_request_limits": null,
"supported_parameters": [
"include_reasoning",
"max_tokens",
"reasoning",
"temperature",
"top_p"
],
"default_parameters": {},
"expiration_date": null
},
{
"id": "aion-labs/aion-2.0",
"canonical_slug": "aion-labs/aion-2.0-20260223",
"hugging_face_id": null,
"name": "AionLabs: Aion-2.0",
"created": 1771881306,
"description": "Aion-2.0 is a variant of DeepSeek V3.2 optimized for immersive roleplaying and storytelling. It is particularly strong at introducing tension, crises, and conflict into stories, making narratives feel more engaging. It also handles mature and darker themes with more nuance and depth.",
"context_length": 131072,
"architecture": {
"modality": "text->text",
"input_modalities": [
"text"
],
"output_modalities": [
"text"
],
"tokenizer": "Other",
"instruct_type": null
},
"pricing": {
"prompt": "0.0000008",
"completion": "0.0000016",
"input_cache_read": "0.0000002"
},
"top_provider": {
"context_length": 131072,
"max_completion_tokens": 32768,
"is_moderated": false
},
"per_request_limits": null,
"supported_parameters": [
"include_reasoning",
"max_tokens",
"reasoning",
"temperature",
"top_p"
],
"default_parameters": {
"temperature": null,
"top_p": null,
"frequency_penalty": null
},
"expiration_date": null
},
{
"id": "aion-labs/aion-rp-llama-3.1-8b",
"canonical_slug": "aion-labs/aion-rp-llama-3.1-8b",
"hugging_face_id": "",
"name": "AionLabs: Aion-RP 1.0 (8B)",
"created": 1738696718,
"description": "Aion-RP-Llama-3.1-8B ranks the highest in the character evaluation portion of the RPBench-Auto benchmark, a roleplaying-specific variant of Arena-Hard-Auto, where LLMs evaluate each other’s responses. It is a fine-tuned base model rather than an instruct model, designed to produce more natural and varied writing.",
"context_length": 32768,
"architecture": {
"modality": "text->text",
"input_modalities": [
"text"
],
"output_modalities": [
"text"
],
"tokenizer": "Other",
"instruct_type": null
},
"pricing": {
"prompt": "0.0000008",
"completion": "0.0000016"
},
"top_provider": {
"context_length": 32768,
"max_completion_tokens": 32768,
"is_moderated": false
},
"per_request_limits": null,
"supported_parameters": [
"max_tokens",
"temperature",
"top_p"
],
"default_parameters": {},
"expiration_date": null
},
{
"id": "alfredpros/codellama-7b-instruct-solidity",
"canonical_slug": "alfredpros/codellama-7b-instruct-solidity",
"hugging_face_id": "AlfredPros/CodeLlama-7b-Instruct-Solidity",
"name": "AlfredPros: CodeLLaMa 7B Instruct Solidity",
"created": 1744641874,
"description": "A finetuned 7 billion parameters Code LLaMA - Instruct model to generate Solidity smart contract using 4-bit QLoRA finetuning provided by PEFT library.",
"context_length": 4096,
"architecture": {
"modality": "text->text",
"input_modalities": [
"text"
],
"output_modalities": [
"text"
],
"tokenizer": "Other",
"instruct_type": "alpaca"
},
"pricing": {
"prompt": "0.0000008",
"completion": "0.0000012"
},
"top_provider": {
"context_length": 4096,
"max_completion_tokens": 4096,
"is_moderated": false
},
"per_request_limits": null,
"supported_parameters": [
"frequency_penalty",
"max_tokens",
"min_p",
"presence_penalty",
"repetition_penalty",
"seed",
"stop",
"temperature",
"top_k",
"top_p"
],
"default_parameters": {},
"expiration_date": null
},
{
"id": "alibaba/tongyi-deepresearch-30b-a3b",
"canonical_slug": "alibaba/tongyi-deepresearch-30b-a3b",
"hugging_face_id": "Alibaba-NLP/Tongyi-DeepResearch-30B-A3B",
"name": "Tongyi DeepResearch 30B A3B",
"created": 1758210804,
"description": "Tongyi DeepResearch is an agentic large language model developed by Tongyi Lab, with 30 billion total parameters activating only 3 billion per token. It's optimized for long-horizon, deep information-seeking tasks and delivers state-of-the-art performance on benchmarks like Humanity's Last Exam, BrowserComp, BrowserComp-ZH, WebWalkerQA, GAIA, xbench-DeepSearch, and FRAMES. This makes it superior for complex agentic search, reasoning, and multi-step problem-solving compared to prior models.\n\nThe model includes a fully automated synthetic data pipeline for scalable pre-training, fine-tuning, and reinforcement learning. It uses large-scale continual pre-training on diverse agentic data to boost reasoning and stay fresh. It also features end-to-end on-policy RL with a customized Group Relative Policy Optimization, including token-level gradients and negative sample filtering for stable training. The model supports ReAct for core ability checks and an IterResearch-based 'Heavy' mode for max performance through test-time scaling. It's ideal for advanced research agents, tool use, and heavy inference workflows.",
"context_length": 131072,
"architecture": {
"modality": "text->text",
"input_modalities": [
"text"
],
"output_modalities": [
"text"
],
"tokenizer": "Other",
"instruct_type": null
},
"pricing": {
"prompt": "0.00000009",
"completion": "0.00000045",
"input_cache_read": "0.00000009"
},
"top_provider": {
"context_length": 131072,
"max_completion_tokens": 131072,
"is_moderated": false
},
"per_request_limits": null,
"supported_parameters": [
"frequency_penalty",
"include_reasoning",
"logit_bias",
"max_tokens",
"min_p",
"presence_penalty",
"reasoning",
"repetition_penalty",
"response_format",
"seed",
"stop",
"structured_outputs",
"temperature",
"tool_choice",
"tools",
"top_k",
"top_p"
],
"default_parameters": {
"temperature": null,
"top_p": null,
"frequency_penalty": null
},
"expiration_date": null
},
{
"id": "allenai/olmo-2-0325-32b-instruct",
"canonical_slug": "allenai/olmo-2-0325-32b-instruct",
"hugging_face_id": "allenai/OLMo-2-0325-32B-Instruct",
"name": "AllenAI: Olmo 2 32B Instruct",
"created": 1741988556,
"description": "OLMo-2 32B Instruct is a supervised instruction-finetuned variant of the OLMo-2 32B March 2025 base model. It excels in complex reasoning and instruction-following tasks across diverse benchmarks such as GSM8K, MATH, IFEval, and general NLP evaluation. Developed by AI2, OLMo-2 32B is part of an open, research-oriented initiative, trained primarily on English-language datasets to advance the understanding and development of open-source language models.",
"context_length": 128000,
"architecture": {
"modality": "text->text",
"input_modalities": [
"text"
],
"output_modalities": [
"text"
],
"tokenizer": "Other",
"instruct_type": null
},
"pricing": {
"prompt": "0.00000005",
"completion": "0.0000002"
},
"top_provider": {
"context_length": 128000,
"max_completion_tokens": null,
"is_moderated": false
},
"per_request_limits": null,
"supported_parameters": [],
"default_parameters": {},
"expiration_date": null
},
{
"id": "allenai/olmo-3-32b-think",
"canonical_slug": "allenai/olmo-3-32b-think-20251121",
"hugging_face_id": "allenai/Olmo-3-32B-Think",
"name": "AllenAI: Olmo 3 32B Think",
"created": 1763758276,
"description": "Olmo 3 32B Think is a large-scale, 32-billion-parameter model purpose-built for deep reasoning, complex logic chains and advanced instruction-following scenarios. Its capacity enables strong performance on demanding evaluation tasks and highly nuanced conversational reasoning. Developed by Ai2 under the Apache 2.0 license, Olmo 3 32B Think embodies the Olmo initiative’s commitment to openness, offering full transparency across weights, code and training methodology.",
"context_length": 65536,
"architecture": {
"modality": "text->text",
"input_modalities": [
"text"
],
"output_modalities": [
"text"
],
"tokenizer": "Other",
"instruct_type": null
},
"pricing": {
"prompt": "0.00000015",
"completion": "0.0000005"
},
"top_provider": {
"context_length": 65536,
"max_completion_tokens": 65536,
"is_moderated": false
},
"per_request_limits": null,
"supported_parameters": [
"frequency_penalty",
"include_reasoning",
"logit_bias",
"max_tokens",
"presence_penalty",
"reasoning",
"repetition_penalty",
"response_format",
"seed",
"stop",
"structured_outputs",
"temperature",
"top_k",
"top_p"
],
"default_parameters": {
"temperature": 0.6,
"top_p": 0.95,
"frequency_penalty": null
},
"expiration_date": null
},
{
"id": "allenai/olmo-3.1-32b-instruct",
"canonical_slug": "allenai/olmo-3.1-32b-instruct-20251215",
"hugging_face_id": "allenai/Olmo-3.1-32B-Instruct",
"name": "AllenAI: Olmo 3.1 32B Instruct",
"created": 1767728554,
"description": "Olmo 3.1 32B Instruct is a large-scale, 32-billion-parameter instruction-tuned language model engineered for high-performance conversational AI, multi-turn dialogue, and practical instruction following. As part of the Olmo 3.1 family, this variant emphasizes responsiveness to complex user directions and robust chat interactions while retaining strong capabilities on reasoning and coding benchmarks. Developed by Ai2 under the Apache 2.0 license, Olmo 3.1 32B Instruct reflects the Olmo initiative’s commitment to openness and transparency.",
"context_length": 65536,
"architecture": {
"modality": "text->text",
"input_modalities": [
"text"
],
"output_modalities": [
"text"
],
"tokenizer": "Other",
"instruct_type": null
},
"pricing": {
"prompt": "0.0000002",
"completion": "0.0000006"
},
"top_provider": {
"context_length": 65536,
"max_completion_tokens": null,
"is_moderated": false
},
"per_request_limits": null,
"supported_parameters": [
"frequency_penalty",
"max_tokens",
"min_p",
"presence_penalty",
"repetition_penalty",
"response_format",
"seed",
"stop",
"structured_outputs",
"temperature",
"tool_choice",
"tools",
"top_k",
"top_p"
],
"default_parameters": {
"temperature": 0.6,
"top_p": 0.95,
"frequency_penalty": null
},
"expiration_date": null
},
{
"id": "allenai/olmo-3.1-32b-think",
"canonical_slug": "allenai/olmo-3.1-32b-think-20251215",
"hugging_face_id": "allenai/Olmo-3.1-32B-Think",
"name": "AllenAI: Olmo 3.1 32B Think",
"created": 1765907719,
"description": "Olmo 3.1 32B Think is a large-scale, 32-billion-parameter model designed for deep reasoning, complex multi-step logic, and advanced instruction following. Building on the Olmo 3 series, version 3.1 delivers refined reasoning behavior and stronger performance across demanding evaluations and nuanced conversational tasks. Developed by Ai2 under the Apache 2.0 license, Olmo 3.1 32B Think continues the Olmo initiative’s commitment to openness, providing full transparency across model weights, code, and training methodology.",
"context_length": 65536,
"architecture": {
"modality": "text->text",
"input_modalities": [
"text"
],
"output_modalities": [
"text"
],
"tokenizer": "Other",
"instruct_type": null
},
"pricing": {
"prompt": "0.00000015",
"completion": "0.0000005"
},
"top_provider": {
"context_length": 65536,
"max_completion_tokens": 65536,
"is_moderated": false
},
"per_request_limits": null,
"supported_parameters": [
"frequency_penalty",
"include_reasoning",
"logit_bias",
"max_tokens",
"presence_penalty",
"reasoning",
"repetition_penalty",
"response_format",
"seed",
"stop",
"structured_outputs",
"temperature",
"top_k",
"top_p"
],
"default_parameters": {
"temperature": 0.6,
"top_p": 0.95,
"frequency_penalty": null
},
"expiration_date": "2026-04-06"
},
{
"id": "alpindale/goliath-120b",
"canonical_slug": "alpindale/goliath-120b",
"hugging_face_id": "alpindale/goliath-120b",
"name": "Goliath 120B",
"created": 1699574400,
"description": "A large LLM created by combining two fine-tuned Llama 70B models into one 120B model. Combines Xwin and Euryale.\n\nCredits to\n- [@chargoddard](https://huggingface.co/chargoddard) for developing the framework used to merge the model - [mergekit](https://github.com/cg123/mergekit).\n- [@Undi95](https://huggingface.co/Undi95) for helping with the merge ratios.\n\n#merge",
"context_length": 6144,
"architecture": {
"modality": "text->text",
"input_modalities": [
"text"
],
"output_modalities": [
"text"
],
"tokenizer": "Llama2",
"instruct_type": "airoboros"
},
"pricing": {
"prompt": "0.00000375",
"completion": "0.0000075"
},
"top_provider": {
"context_length": 6144,
"max_completion_tokens": 1024,
"is_moderated": false
},
"per_request_limits": null,
"supported_parameters": [
"frequency_penalty",
"logit_bias",
"logprobs",
"max_tokens",
"min_p",
"presence_penalty",
"repetition_penalty",
"response_format",
"seed",
"stop",
"temperature",
"top_a",
"top_k",
"top_logprobs",
"top_p"
],
"default_parameters": {},
"expiration_date": null
},
{
"id": "amazon/nova-2-lite-v1",
"canonical_slug": "amazon/nova-2-lite-v1",
"hugging_face_id": "",
"name": "Amazon: Nova 2 Lite",
"created": 1764696672,
"description": "Nova 2 Lite is a fast, cost-effective reasoning model for everyday workloads that can process text, images, and videos to generate text. \n\nNova 2 Lite demonstrates standout capabilities in processing documents, extracting information from videos, generating code, providing accurate grounded answers, and automating multi-step agentic workflows.",
"context_length": 1000000,
"architecture": {
"modality": "text+image+file+video->text",
"input_modalities": [
"text",
"image",
"video",
"file"
],
"output_modalities": [
"text"
],
"tokenizer": "Nova",
"instruct_type": null
},
"pricing": {
"prompt": "0.0000003",
"completion": "0.0000025"
},
"top_provider": {
"context_length": 1000000,
"max_completion_tokens": 65535,
"is_moderated": true
},
"per_request_limits": null,
"supported_parameters": [
"include_reasoning",
"max_tokens",
"reasoning",
"stop",
"temperature",
"tool_choice",
"tools",
"top_k",
"top_p"
],
"default_parameters": {
"temperature": null,
"top_p": null,
"frequency_penalty": null
},
"expiration_date": null
},
{
"id": "amazon/nova-lite-v1",
"canonical_slug": "amazon/nova-lite-v1",
"hugging_face_id": "",
"name": "Amazon: Nova Lite 1.0",
"created": 1733437363,
"description": "Amazon Nova Lite 1.0 is a very low-cost multimodal model from Amazon that focused on fast processing of image, video, and text inputs to generate text output. Amazon Nova Lite can handle real-time customer interactions, document analysis, and visual question-answering tasks with high accuracy.\n\nWith an input context of 300K tokens, it can analyze multiple images or up to 30 minutes of video in a single input.",
"context_length": 300000,
"architecture": {
"modality": "text+image->text",
"input_modalities": [
"text",
"image"
],
"output_modalities": [
"text"
],
"tokenizer": "Nova",
"instruct_type": null
},
"pricing": {
"prompt": "0.00000006",
"completion": "0.00000024"
},
"top_provider": {
"context_length": 300000,
"max_completion_tokens": 5120,
"is_moderated": true
},
"per_request_limits": null,
"supported_parameters": [
"max_tokens",
"stop",
"temperature",
"tools",
"top_k",
"top_p"
],
"default_parameters": {},
"expiration_date": null
},
{
"id": "amazon/nova-micro-v1",
"canonical_slug": "amazon/nova-micro-v1",
"hugging_face_id": "",
"name": "Amazon: Nova Micro 1.0",
"created": 1733437237,
"description": "Amazon Nova Micro 1.0 is a text-only model that delivers the lowest latency responses in the Amazon Nova family of models at a very low cost. With a context length of 128K tokens and optimized for speed and cost, Amazon Nova Micro excels at tasks such as text summarization, translation, content classification, interactive chat, and brainstorming. It has simple mathematical reasoning and coding abilities.",
"context_length": 128000,
"architecture": {
"modality": "text->text",
"input_modalities": [
"text"
],
"output_modalities": [
"text"
],
"tokenizer": "Nova",
"instruct_type": null
},
"pricing": {
"prompt": "0.000000035",
"completion": "0.00000014"
},
"top_provider": {
"context_length": 128000,
"max_completion_tokens": 5120,
"is_moderated": true
},
"per_request_limits": null,
"supported_parameters": [
"max_tokens",
"stop",
"temperature",
"tools",
"top_k",
"top_p"
],
"default_parameters": {},
"expiration_date": null
},
{
"id": "amazon/nova-premier-v1",
"canonical_slug": "amazon/nova-premier-v1",
"hugging_face_id": "",
"name": "Amazon: Nova Premier 1.0",
"created": 1761950332,
"description": "Amazon Nova Premier is the most capable of Amazon’s multimodal models for complex reasoning tasks and for use as the best teacher for distilling custom models.",
"context_length": 1000000,
"architecture": {
"modality": "text+image->text",
"input_modalities": [
"text",
"image"
],
"output_modalities": [
"text"
],
"tokenizer": "Nova",
"instruct_type": null
},
"pricing": {
"prompt": "0.0000025",
"completion": "0.0000125",
"input_cache_read": "0.000000625"
},
"top_provider": {
"context_length": 1000000,
"max_completion_tokens": 32000,
"is_moderated": true
},
"per_request_limits": null,
"supported_parameters": [
"max_tokens",
"stop",
"temperature",
"tools",
"top_k",
"top_p"
],
"default_parameters": {
"temperature": null,
"top_p": null,
"frequency_penalty": null
},
"expiration_date": null
},
{
"id": "amazon/nova-pro-v1",
"canonical_slug": "amazon/nova-pro-v1",
"hugging_face_id": "",
"name": "Amazon: Nova Pro 1.0",
"created": 1733436303,
"description": "Amazon Nova Pro 1.0 is a capable multimodal model from Amazon focused on providing a combination of accuracy, speed, and cost for a wide range of tasks. As of December 2024, it achieves state-of-the-art performance on key benchmarks including visual question answering (TextVQA) and video understanding (VATEX).\n\nAmazon Nova Pro demonstrates strong capabilities in processing both visual and textual information and at analyzing financial documents.\n\n**NOTE**: Video input is not supported at this time.",
"context_length": 300000,
"architecture": {
"modality": "text+image->text",
"input_modalities": [
"text",
"image"
],
"output_modalities": [
"text"
],
"tokenizer": "Nova",
"instruct_type": null
},
"pricing": {
"prompt": "0.0000008",
"completion": "0.0000032"
},
"top_provider": {
"context_length": 300000,
"max_completion_tokens": 5120,
"is_moderated": true
},
"per_request_limits": null,
"supported_parameters": [
"max_tokens",
"stop",
"temperature",
"tools",
"top_k",
"top_p"
],
"default_parameters": {},
"expiration_date": null
},
{
"id": "anthracite-org/magnum-v4-72b",
"canonical_slug": "anthracite-org/magnum-v4-72b",
"hugging_face_id": "anthracite-org/magnum-v4-72b",
"name": "Magnum v4 72B",
"created": 1729555200,
"description": "This is a series of models designed to replicate the prose quality of the Claude 3 models, specifically Sonnet(https://openrouter.ai/anthropic/claude-3.5-sonnet) and Opus(https://openrouter.ai/anthropic/claude-3-opus).\n\nThe model is fine-tuned on top of [Qwen2.5 72B](https://openrouter.ai/qwen/qwen-2.5-72b-instruct).",
"context_length": 16384,
"architecture": {
"modality": "text->text",
"input_modalities": [
"text"
],
"output_modalities": [
"text"
],
"tokenizer": "Qwen",
"instruct_type": "chatml"
},
"pricing": {
"prompt": "0.000003",
"completion": "0.000005"
},
"top_provider": {
"context_length": 16384,
"max_completion_tokens": 2048,
"is_moderated": false
},
"per_request_limits": null,
"supported_parameters": [
"frequency_penalty",
"logit_bias",
"logprobs",
"max_tokens",
"min_p",
"presence_penalty",
"repetition_penalty",
"response_format",
"seed",
"stop",
"temperature",
"top_a",
"top_k",
"top_logprobs",
"top_p"
],
"default_parameters": {},
"expiration_date": null
},
{
"id": "anthropic/claude-3-haiku",
"canonical_slug": "anthropic/claude-3-haiku",
"hugging_face_id": null,
"name": "Anthropic: Claude 3 Haiku",
"created": 1710288000,
"description": "Claude 3 Haiku is Anthropic's fastest and most compact model for\nnear-instant responsiveness. Quick and accurate targeted performance.\n\nSee the launch announcement and benchmark results [here](https://www.anthropic.com/news/claude-3-haiku)\n\n#multimodal",
"context_length": 200000,
"architecture": {
"modality": "text+image->text",
"input_modalities": [
"text",
"image"
],
"output_modalities": [
"text"
],
"tokenizer": "Claude",
"instruct_type": null
},
"pricing": {
"prompt": "0.00000025",
"completion": "0.00000125",
"input_cache_read": "0.00000003",
"input_cache_write": "0.0000003"
},
"top_provider": {
"context_length": 200000,
"max_completion_tokens": 4096,
"is_moderated": true
},
"per_request_limits": null,
"supported_parameters": [
"max_tokens",
"stop",
"temperature",
"tool_choice",
"tools",
"top_k",
"top_p"
],
"default_parameters": {},
"expiration_date": null
},
{
"id": "anthropic/claude-3.5-haiku",
"canonical_slug": "anthropic/claude-3-5-haiku",
"hugging_face_id": null,
"name": "Anthropic: Claude 3.5 Haiku",
"created": 1730678400,
"description": "Claude 3.5 Haiku features offers enhanced capabilities in speed, coding accuracy, and tool use. Engineered to excel in real-time applications, it delivers quick response times that are essential for dynamic tasks such as chat interactions and immediate coding suggestions.\n\nThis makes it highly suitable for environments that demand both speed and precision, such as software development, customer service bots, and data management systems.\n\nThis model is currently pointing to [Claude 3.5 Haiku (2024-10-22)](/anthropic/claude-3-5-haiku-20241022).",
"context_length": 200000,
"architecture": {
"modality": "text+image->text",
"input_modalities": [
"text",
"image"
],
"output_modalities": [
"text"
],
"tokenizer": "Claude",
"instruct_type": null
},
"pricing": {
"prompt": "0.0000008",
"completion": "0.000004",
"web_search": "0.01",
"input_cache_read": "0.00000008",
"input_cache_write": "0.000001"
},
"top_provider": {
"context_length": 200000,
"max_completion_tokens": 8192,
"is_moderated": true
},
"per_request_limits": null,
"supported_parameters": [
"max_tokens",
"stop",
"temperature",
"tool_choice",
"tools",
"top_k",
"top_p"
],
"default_parameters": {
"temperature": null,
"top_p": null,
"frequency_penalty": null
},
"expiration_date": null
},
{
"id": "anthropic/claude-3.5-sonnet",
"canonical_slug": "anthropic/claude-3.5-sonnet",
"hugging_face_id": null,
"name": "Anthropic: Claude 3.5 Sonnet",
"created": 1729555200,
"description": "New Claude 3.5 Sonnet delivers better-than-Opus capabilities, faster-than-Sonnet speeds, at the same Sonnet prices. Sonnet is particularly good at:\n\n- Coding: Scores ~49% on SWE-Bench Verified, higher than the last best score, and without any fancy prompt scaffolding\n- Data science: Augments human data science expertise; navigates unstructured data while using multiple tools for insights\n- Visual processing: excelling at interpreting charts, graphs, and images, accurately transcribing text to derive insights beyond just the text alone\n- Agentic tasks: exceptional tool use, making it great at agentic tasks (i.e. complex, multi-step problem solving tasks that require engaging with other systems)\n\n#multimodal",
"context_length": 200000,
"architecture": {
"modality": "text+image+file->text",
"input_modalities": [
"text",
"image",
"file"
],
"output_modalities": [
"text"
],
"tokenizer": "Claude",
"instruct_type": null
},
"pricing": {
"prompt": "0.000006",
"completion": "0.00003",
"input_cache_read": "0.0000006",
"input_cache_write": "0.0000075"
},
"top_provider": {
"context_length": 200000,
"max_completion_tokens": 8192,
"is_moderated": true
},
"per_request_limits": null,
"supported_parameters": [
"max_tokens",
"stop",
"temperature",
"tool_choice",
"tools",
"top_k",
"top_p"
],
"default_parameters": {},
"expiration_date": null
},
{
"id": "anthropic/claude-3.7-sonnet",
"canonical_slug": "anthropic/claude-3-7-sonnet-20250219",
"hugging_face_id": "",
"name": "Anthropic: Claude 3.7 Sonnet",
"created": 1740422110,
"description": "Claude 3.7 Sonnet is an advanced large language model with improved reasoning, coding, and problem-solving capabilities. It introduces a hybrid reasoning approach, allowing users to choose between rapid responses and extended, step-by-step processing for complex tasks. The model demonstrates notable improvements in coding, particularly in front-end development and full-stack updates, and excels in agentic workflows, where it can autonomously navigate multi-step processes. \n\nClaude 3.7 Sonnet maintains performance parity with its predecessor in standard mode while offering an extended reasoning mode for enhanced accuracy in math, coding, and instruction-following tasks.\n\nRead more at the [blog post here](https://www.anthropic.com/news/claude-3-7-sonnet)",
"context_length": 200000,
"architecture": {
"modality": "text+image+file->text",
"input_modalities": [
"text",
"image",
"file"
],
"output_modalities": [
"text"
],
"tokenizer": "Claude",
"instruct_type": null
},
"pricing": {
"prompt": "0.000003",
"completion": "0.000015",
"web_search": "0.01",
"input_cache_read": "0.0000003",
"input_cache_write": "0.00000375"
},
"top_provider": {
"context_length": 200000,
"max_completion_tokens": 64000,
"is_moderated": false
},
"per_request_limits": null,
"supported_parameters": [
"include_reasoning",
"max_tokens",
"reasoning",
"stop",
"temperature",
"tool_choice",
"tools",
"top_k",
"top_p"
],
"default_parameters": {
"temperature": null,
"top_p": null,
"frequency_penalty": null
},
"expiration_date": "2026-05-05"
},
{
"id": "anthropic/claude-3.7-sonnet:thinking",
"canonical_slug": "anthropic/claude-3-7-sonnet-20250219",
"hugging_face_id": "",