forked from nexu-io/open-design
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlitellm-models.json
More file actions
1977 lines (1977 loc) · 95.6 KB
/
litellm-models.json
File metadata and controls
1977 lines (1977 loc) · 95.6 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
{
"_source": "https://raw.githubusercontent.com/BerriAI/litellm/main/model_prices_and_context_window.json",
"_generated_at": "2026-05-02",
"_license": "BerriAI/litellm is MIT-licensed; see https://github.com/BerriAI/litellm/blob/main/LICENSE",
"models": {
"ai21.j2-mid-v1": 8191,
"ai21.j2-ultra-v1": 8191,
"ai21.jamba-1-5-large-v1:0": 256000,
"ai21.jamba-1-5-mini-v1:0": 256000,
"ai21.jamba-instruct-v1:0": 4096,
"amazon-nova/nova-lite-v1": 10000,
"amazon-nova/nova-micro-v1": 10000,
"amazon-nova/nova-premier-v1": 10000,
"amazon-nova/nova-pro-v1": 10000,
"amazon.nova-2-lite-v1:0": 64000,
"amazon.nova-2-pro-preview-20251202-v1:0": 64000,
"amazon.nova-lite-v1:0": 10000,
"amazon.nova-micro-v1:0": 10000,
"amazon.nova-pro-v1:0": 10000,
"amazon.titan-text-express-v1": 8000,
"amazon.titan-text-lite-v1": 4000,
"amazon.titan-text-premier-v1:0": 32000,
"anthropic.claude-3-5-haiku-20241022-v1:0": 8192,
"anthropic.claude-3-5-sonnet-20240620-v1:0": 4096,
"anthropic.claude-3-5-sonnet-20241022-v2:0": 8192,
"anthropic.claude-3-7-sonnet-20240620-v1:0": 8192,
"anthropic.claude-3-7-sonnet-20250219-v1:0": 8192,
"anthropic.claude-3-haiku-20240307-v1:0": 4096,
"anthropic.claude-3-opus-20240229-v1:0": 4096,
"anthropic.claude-3-sonnet-20240229-v1:0": 4096,
"anthropic.claude-haiku-4-5-20251001-v1:0": 64000,
"anthropic.claude-haiku-4-5@20251001": 64000,
"anthropic.claude-instant-v1": 8191,
"anthropic.claude-mythos-preview": 128000,
"anthropic.claude-opus-4-1-20250805-v1:0": 32000,
"anthropic.claude-opus-4-20250514-v1:0": 32000,
"anthropic.claude-opus-4-5-20251101-v1:0": 64000,
"anthropic.claude-opus-4-6-v1": 128000,
"anthropic.claude-opus-4-7": 128000,
"anthropic.claude-sonnet-4-20250514-v1:0": 64000,
"anthropic.claude-sonnet-4-5-20250929-v1:0": 64000,
"anthropic.claude-sonnet-4-6": 64000,
"anthropic.claude-v1": 8191,
"anthropic.claude-v2:1": 8191,
"anyscale/codellama/CodeLlama-34b-Instruct-hf": 4096,
"anyscale/codellama/CodeLlama-70b-Instruct-hf": 4096,
"anyscale/google/gemma-7b-it": 8192,
"anyscale/HuggingFaceH4/zephyr-7b-beta": 16384,
"anyscale/meta-llama/Llama-2-13b-chat-hf": 4096,
"anyscale/meta-llama/Llama-2-70b-chat-hf": 4096,
"anyscale/meta-llama/Llama-2-7b-chat-hf": 4096,
"anyscale/meta-llama/Meta-Llama-3-70B-Instruct": 8192,
"anyscale/meta-llama/Meta-Llama-3-8B-Instruct": 8192,
"anyscale/mistralai/Mistral-7B-Instruct-v0.1": 16384,
"anyscale/mistralai/Mixtral-8x22B-Instruct-v0.1": 65536,
"anyscale/mistralai/Mixtral-8x7B-Instruct-v0.1": 16384,
"apac.amazon.nova-2-lite-v1:0": 64000,
"apac.amazon.nova-2-pro-preview-20251202-v1:0": 64000,
"apac.amazon.nova-lite-v1:0": 10000,
"apac.amazon.nova-micro-v1:0": 10000,
"apac.amazon.nova-pro-v1:0": 10000,
"apac.anthropic.claude-3-5-sonnet-20240620-v1:0": 4096,
"apac.anthropic.claude-3-5-sonnet-20241022-v2:0": 8192,
"apac.anthropic.claude-3-haiku-20240307-v1:0": 4096,
"apac.anthropic.claude-3-sonnet-20240229-v1:0": 4096,
"apac.anthropic.claude-haiku-4-5-20251001-v1:0": 64000,
"apac.anthropic.claude-sonnet-4-20250514-v1:0": 64000,
"au.anthropic.claude-haiku-4-5-20251001-v1:0": 64000,
"au.anthropic.claude-opus-4-6-v1": 128000,
"au.anthropic.claude-opus-4-7": 128000,
"au.anthropic.claude-sonnet-4-5-20250929-v1:0": 64000,
"au.anthropic.claude-sonnet-4-6": 64000,
"azure_ai/claude-haiku-4-5": 64000,
"azure_ai/claude-opus-4-1": 32000,
"azure_ai/claude-opus-4-5": 64000,
"azure_ai/claude-opus-4-6": 128000,
"azure_ai/claude-opus-4-7": 128000,
"azure_ai/claude-sonnet-4-5": 64000,
"azure_ai/claude-sonnet-4-6": 64000,
"azure_ai/deepseek-r1": 8192,
"azure_ai/deepseek-v3": 8192,
"azure_ai/deepseek-v3-0324": 8192,
"azure_ai/deepseek-v3.2": 163840,
"azure_ai/deepseek-v3.2-speciale": 163840,
"azure_ai/global/grok-3": 131072,
"azure_ai/global/grok-3-mini": 131072,
"azure_ai/gpt-oss-120b": 131072,
"azure_ai/grok-3": 131072,
"azure_ai/grok-3-mini": 131072,
"azure_ai/grok-4": 131072,
"azure_ai/grok-4-1-fast-non-reasoning": 131072,
"azure_ai/grok-4-1-fast-reasoning": 131072,
"azure_ai/grok-4-fast-non-reasoning": 131072,
"azure_ai/grok-4-fast-reasoning": 131072,
"azure_ai/grok-code-fast-1": 131072,
"azure_ai/jais-30b-chat": 8192,
"azure_ai/jamba-instruct": 4096,
"azure_ai/kimi-k2.5": 262144,
"azure_ai/Llama-3.2-11B-Vision-Instruct": 2048,
"azure_ai/Llama-3.2-90B-Vision-Instruct": 2048,
"azure_ai/Llama-3.3-70B-Instruct": 2048,
"azure_ai/Llama-4-Maverick-17B-128E-Instruct-FP8": 16384,
"azure_ai/Llama-4-Scout-17B-16E-Instruct": 16384,
"azure_ai/MAI-DS-R1": 8192,
"azure_ai/Meta-Llama-3-70B-Instruct": 2048,
"azure_ai/Meta-Llama-3.1-405B-Instruct": 2048,
"azure_ai/Meta-Llama-3.1-70B-Instruct": 2048,
"azure_ai/Meta-Llama-3.1-8B-Instruct": 2048,
"azure_ai/ministral-3b": 4096,
"azure_ai/mistral-large": 8191,
"azure_ai/mistral-large-2407": 4096,
"azure_ai/mistral-large-3": 8191,
"azure_ai/mistral-large-latest": 4096,
"azure_ai/mistral-medium-2505": 8191,
"azure_ai/mistral-nemo": 4096,
"azure_ai/mistral-small": 8191,
"azure_ai/mistral-small-2503": 128000,
"azure_ai/Phi-3-medium-128k-instruct": 4096,
"azure_ai/Phi-3-medium-4k-instruct": 4096,
"azure_ai/Phi-3-mini-128k-instruct": 4096,
"azure_ai/Phi-3-mini-4k-instruct": 4096,
"azure_ai/Phi-3-small-128k-instruct": 4096,
"azure_ai/Phi-3-small-8k-instruct": 4096,
"azure_ai/Phi-3.5-mini-instruct": 4096,
"azure_ai/Phi-3.5-MoE-instruct": 4096,
"azure_ai/Phi-3.5-vision-instruct": 4096,
"azure_ai/Phi-4": 16384,
"azure_ai/Phi-4-mini-instruct": 4096,
"azure_ai/Phi-4-mini-reasoning": 4096,
"azure_ai/Phi-4-multimodal-instruct": 4096,
"azure_ai/Phi-4-reasoning": 4096,
"azure/command-r-plus": 4096,
"azure/computer-use-preview": 1024,
"azure/eu/gpt-4o-2024-08-06": 16384,
"azure/eu/gpt-4o-2024-11-20": 16384,
"azure/eu/gpt-4o-mini-2024-07-18": 16384,
"azure/eu/gpt-4o-mini-realtime-preview-2024-12-17": 4096,
"azure/eu/gpt-4o-realtime-preview-2024-10-01": 4096,
"azure/eu/gpt-4o-realtime-preview-2024-12-17": 4096,
"azure/eu/gpt-5-2025-08-07": 128000,
"azure/eu/gpt-5-mini-2025-08-07": 128000,
"azure/eu/gpt-5-nano-2025-08-07": 128000,
"azure/eu/gpt-5.1": 128000,
"azure/eu/gpt-5.1-chat": 128000,
"azure/eu/o1-2024-12-17": 100000,
"azure/eu/o1-mini-2024-09-12": 65536,
"azure/eu/o1-preview-2024-09-12": 32768,
"azure/eu/o3-mini-2025-01-31": 100000,
"azure/global-standard/gpt-4o-2024-08-06": 16384,
"azure/global-standard/gpt-4o-2024-11-20": 16384,
"azure/global-standard/gpt-4o-mini": 16384,
"azure/global/gpt-4o-2024-08-06": 16384,
"azure/global/gpt-4o-2024-11-20": 16384,
"azure/global/gpt-5.1": 128000,
"azure/global/gpt-5.1-chat": 128000,
"azure/gpt-3.5-turbo": 4096,
"azure/gpt-3.5-turbo-0125": 4096,
"azure/gpt-35-turbo": 4096,
"azure/gpt-35-turbo-0125": 4096,
"azure/gpt-35-turbo-1106": 4096,
"azure/gpt-35-turbo-16k": 4096,
"azure/gpt-35-turbo-16k-0613": 4096,
"azure/gpt-4": 4096,
"azure/gpt-4-0125-preview": 4096,
"azure/gpt-4-0613": 4096,
"azure/gpt-4-1106-preview": 4096,
"azure/gpt-4-32k": 4096,
"azure/gpt-4-32k-0613": 4096,
"azure/gpt-4-turbo": 4096,
"azure/gpt-4-turbo-2024-04-09": 4096,
"azure/gpt-4-turbo-vision-preview": 4096,
"azure/gpt-4.1": 32768,
"azure/gpt-4.1-2025-04-14": 32768,
"azure/gpt-4.1-mini": 32768,
"azure/gpt-4.1-mini-2025-04-14": 32768,
"azure/gpt-4.1-nano": 32768,
"azure/gpt-4.1-nano-2025-04-14": 32768,
"azure/gpt-4.5-preview": 16384,
"azure/gpt-4o": 16384,
"azure/gpt-4o-2024-05-13": 4096,
"azure/gpt-4o-2024-08-06": 16384,
"azure/gpt-4o-2024-11-20": 16384,
"azure/gpt-4o-audio-preview-2024-12-17": 16384,
"azure/gpt-4o-mini": 16384,
"azure/gpt-4o-mini-2024-07-18": 16384,
"azure/gpt-4o-mini-audio-preview-2024-12-17": 16384,
"azure/gpt-4o-mini-realtime-preview-2024-12-17": 4096,
"azure/gpt-4o-realtime-preview-2024-10-01": 4096,
"azure/gpt-4o-realtime-preview-2024-12-17": 4096,
"azure/gpt-5": 128000,
"azure/gpt-5-2025-08-07": 128000,
"azure/gpt-5-chat": 16384,
"azure/gpt-5-chat-latest": 16384,
"azure/gpt-5-mini": 128000,
"azure/gpt-5-mini-2025-08-07": 128000,
"azure/gpt-5-nano": 128000,
"azure/gpt-5-nano-2025-08-07": 128000,
"azure/gpt-5.1": 128000,
"azure/gpt-5.1-2025-11-13": 128000,
"azure/gpt-5.1-chat": 128000,
"azure/gpt-5.1-chat-2025-11-13": 16384,
"azure/gpt-5.2": 128000,
"azure/gpt-5.2-2025-12-11": 128000,
"azure/gpt-5.2-chat": 16384,
"azure/gpt-5.2-chat-2025-12-11": 16384,
"azure/gpt-5.3-chat": 16384,
"azure/gpt-5.4": 128000,
"azure/gpt-5.4-2026-03-05": 128000,
"azure/gpt-5.4-mini": 128000,
"azure/gpt-5.4-mini-2026-03-17": 128000,
"azure/gpt-5.4-nano": 128000,
"azure/gpt-5.4-nano-2026-03-17": 128000,
"azure/gpt-5.5": 128000,
"azure/gpt-5.5-2026-04-23": 128000,
"azure/gpt-audio-1.5-2026-02-23": 16384,
"azure/gpt-audio-2025-08-28": 16384,
"azure/gpt-audio-mini-2025-10-06": 16384,
"azure/gpt-realtime-1.5-2026-02-23": 4096,
"azure/gpt-realtime-2025-08-28": 4096,
"azure/gpt-realtime-mini-2025-10-06": 4096,
"azure/mistral-large-2402": 32000,
"azure/mistral-large-latest": 32000,
"azure/o1": 100000,
"azure/o1-2024-12-17": 100000,
"azure/o1-mini": 65536,
"azure/o1-mini-2024-09-12": 65536,
"azure/o1-preview": 32768,
"azure/o1-preview-2024-09-12": 32768,
"azure/o3": 100000,
"azure/o3-2025-04-16": 100000,
"azure/o3-mini": 100000,
"azure/o3-mini-2025-01-31": 100000,
"azure/o4-mini": 100000,
"azure/o4-mini-2025-04-16": 100000,
"azure/us/gpt-4.1-2025-04-14": 32768,
"azure/us/gpt-4.1-mini-2025-04-14": 32768,
"azure/us/gpt-4.1-nano-2025-04-14": 32768,
"azure/us/gpt-4o-2024-08-06": 16384,
"azure/us/gpt-4o-2024-11-20": 16384,
"azure/us/gpt-4o-mini-2024-07-18": 16384,
"azure/us/gpt-4o-mini-realtime-preview-2024-12-17": 4096,
"azure/us/gpt-4o-realtime-preview-2024-10-01": 4096,
"azure/us/gpt-4o-realtime-preview-2024-12-17": 4096,
"azure/us/gpt-5-2025-08-07": 128000,
"azure/us/gpt-5-mini-2025-08-07": 128000,
"azure/us/gpt-5-nano-2025-08-07": 128000,
"azure/us/gpt-5.1": 128000,
"azure/us/gpt-5.1-chat": 128000,
"azure/us/o1-2024-12-17": 100000,
"azure/us/o1-mini-2024-09-12": 65536,
"azure/us/o1-preview-2024-09-12": 32768,
"azure/us/o3-2025-04-16": 100000,
"azure/us/o3-mini-2025-01-31": 100000,
"azure/us/o4-mini-2025-04-16": 100000,
"bedrock_mantle/openai.gpt-oss-120b": 32768,
"bedrock_mantle/openai.gpt-oss-20b": 32768,
"bedrock_mantle/openai.gpt-oss-safeguard-120b": 65536,
"bedrock_mantle/openai.gpt-oss-safeguard-20b": 65536,
"bedrock/*/1-month-commitment/cohere.command-light-text-v14": 4096,
"bedrock/*/1-month-commitment/cohere.command-text-v14": 4096,
"bedrock/*/6-month-commitment/cohere.command-light-text-v14": 4096,
"bedrock/*/6-month-commitment/cohere.command-text-v14": 4096,
"bedrock/ap-northeast-1/1-month-commitment/anthropic.claude-instant-v1": 8191,
"bedrock/ap-northeast-1/1-month-commitment/anthropic.claude-v1": 8191,
"bedrock/ap-northeast-1/1-month-commitment/anthropic.claude-v2:1": 8191,
"bedrock/ap-northeast-1/6-month-commitment/anthropic.claude-instant-v1": 8191,
"bedrock/ap-northeast-1/6-month-commitment/anthropic.claude-v1": 8191,
"bedrock/ap-northeast-1/6-month-commitment/anthropic.claude-v2:1": 8191,
"bedrock/ap-northeast-1/anthropic.claude-instant-v1": 8191,
"bedrock/ap-northeast-1/anthropic.claude-v1": 8191,
"bedrock/ap-northeast-1/anthropic.claude-v2:1": 8191,
"bedrock/ap-northeast-1/deepseek.v3.2": 163840,
"bedrock/ap-northeast-1/minimax.minimax-m2.1": 8192,
"bedrock/ap-northeast-1/minimax.minimax-m2.5": 8192,
"bedrock/ap-northeast-1/moonshotai.kimi-k2-thinking": 262144,
"bedrock/ap-northeast-1/moonshotai.kimi-k2.5": 262144,
"bedrock/ap-northeast-1/qwen.qwen3-coder-next": 8192,
"bedrock/ap-south-1/deepseek.v3.2": 163840,
"bedrock/ap-south-1/meta.llama3-70b-instruct-v1:0": 8192,
"bedrock/ap-south-1/meta.llama3-8b-instruct-v1:0": 8192,
"bedrock/ap-south-1/minimax.minimax-m2.1": 8192,
"bedrock/ap-south-1/minimax.minimax-m2.5": 8192,
"bedrock/ap-south-1/moonshotai.kimi-k2-thinking": 262144,
"bedrock/ap-south-1/moonshotai.kimi-k2.5": 262144,
"bedrock/ap-south-1/qwen.qwen3-coder-next": 8192,
"bedrock/ap-southeast-2/minimax.minimax-m2.5": 8192,
"bedrock/ap-southeast-3/deepseek.v3.2": 163840,
"bedrock/ap-southeast-3/minimax.minimax-m2.1": 8192,
"bedrock/ap-southeast-3/minimax.minimax-m2.5": 8192,
"bedrock/ap-southeast-3/moonshotai.kimi-k2.5": 262144,
"bedrock/ap-southeast-3/qwen.qwen3-coder-next": 8192,
"bedrock/ca-central-1/meta.llama3-70b-instruct-v1:0": 8192,
"bedrock/ca-central-1/meta.llama3-8b-instruct-v1:0": 8192,
"bedrock/eu-central-1/1-month-commitment/anthropic.claude-instant-v1": 8191,
"bedrock/eu-central-1/1-month-commitment/anthropic.claude-v1": 8191,
"bedrock/eu-central-1/1-month-commitment/anthropic.claude-v2:1": 8191,
"bedrock/eu-central-1/6-month-commitment/anthropic.claude-instant-v1": 8191,
"bedrock/eu-central-1/6-month-commitment/anthropic.claude-v1": 8191,
"bedrock/eu-central-1/6-month-commitment/anthropic.claude-v2:1": 8191,
"bedrock/eu-central-1/anthropic.claude-instant-v1": 8191,
"bedrock/eu-central-1/anthropic.claude-v1": 8191,
"bedrock/eu-central-1/anthropic.claude-v2:1": 8191,
"bedrock/eu-central-1/minimax.minimax-m2.1": 8192,
"bedrock/eu-central-1/minimax.minimax-m2.5": 8192,
"bedrock/eu-central-1/qwen.qwen3-coder-next": 8192,
"bedrock/eu-north-1/deepseek.v3.2": 163840,
"bedrock/eu-north-1/minimax.minimax-m2.1": 8192,
"bedrock/eu-north-1/minimax.minimax-m2.5": 8192,
"bedrock/eu-north-1/moonshotai.kimi-k2.5": 262144,
"bedrock/eu-south-1/minimax.minimax-m2.1": 8192,
"bedrock/eu-south-1/minimax.minimax-m2.5": 8192,
"bedrock/eu-south-1/qwen.qwen3-coder-next": 8192,
"bedrock/eu-west-1/meta.llama3-70b-instruct-v1:0": 8192,
"bedrock/eu-west-1/meta.llama3-8b-instruct-v1:0": 8192,
"bedrock/eu-west-1/minimax.minimax-m2.1": 8192,
"bedrock/eu-west-1/minimax.minimax-m2.5": 8192,
"bedrock/eu-west-1/qwen.qwen3-coder-next": 8192,
"bedrock/eu-west-2/meta.llama3-70b-instruct-v1:0": 8192,
"bedrock/eu-west-2/meta.llama3-8b-instruct-v1:0": 8192,
"bedrock/eu-west-2/minimax.minimax-m2.1": 8192,
"bedrock/eu-west-2/minimax.minimax-m2.5": 8192,
"bedrock/eu-west-2/qwen.qwen3-coder-next": 8192,
"bedrock/eu-west-3/mistral.mistral-7b-instruct-v0:2": 8191,
"bedrock/eu-west-3/mistral.mistral-large-2402-v1:0": 8191,
"bedrock/eu-west-3/mistral.mixtral-8x7b-instruct-v0:1": 8191,
"bedrock/invoke/anthropic.claude-3-5-sonnet-20240620-v1:0": 4096,
"bedrock/moonshotai.kimi-k2-thinking": 262144,
"bedrock/moonshotai.kimi-k2.5": 262144,
"bedrock/sa-east-1/deepseek.v3.2": 163840,
"bedrock/sa-east-1/meta.llama3-70b-instruct-v1:0": 8192,
"bedrock/sa-east-1/meta.llama3-8b-instruct-v1:0": 8192,
"bedrock/sa-east-1/minimax.minimax-m2.1": 8192,
"bedrock/sa-east-1/minimax.minimax-m2.5": 8192,
"bedrock/sa-east-1/moonshotai.kimi-k2-thinking": 262144,
"bedrock/sa-east-1/moonshotai.kimi-k2.5": 262144,
"bedrock/sa-east-1/qwen.qwen3-coder-next": 8192,
"bedrock/us-east-1/1-month-commitment/anthropic.claude-instant-v1": 8191,
"bedrock/us-east-1/1-month-commitment/anthropic.claude-v1": 8191,
"bedrock/us-east-1/1-month-commitment/anthropic.claude-v2:1": 8191,
"bedrock/us-east-1/6-month-commitment/anthropic.claude-instant-v1": 8191,
"bedrock/us-east-1/6-month-commitment/anthropic.claude-v1": 8191,
"bedrock/us-east-1/6-month-commitment/anthropic.claude-v2:1": 8191,
"bedrock/us-east-1/anthropic.claude-instant-v1": 8191,
"bedrock/us-east-1/anthropic.claude-v1": 8191,
"bedrock/us-east-1/anthropic.claude-v2:1": 8191,
"bedrock/us-east-1/deepseek.v3.2": 163840,
"bedrock/us-east-1/meta.llama3-70b-instruct-v1:0": 8192,
"bedrock/us-east-1/meta.llama3-8b-instruct-v1:0": 8192,
"bedrock/us-east-1/minimax.minimax-m2.1": 8192,
"bedrock/us-east-1/minimax.minimax-m2.5": 8192,
"bedrock/us-east-1/mistral.mistral-7b-instruct-v0:2": 8191,
"bedrock/us-east-1/mistral.mistral-large-2402-v1:0": 8191,
"bedrock/us-east-1/mistral.mixtral-8x7b-instruct-v0:1": 8191,
"bedrock/us-east-1/moonshotai.kimi-k2-thinking": 262144,
"bedrock/us-east-1/moonshotai.kimi-k2.5": 262144,
"bedrock/us-east-1/qwen.qwen3-coder-next": 8192,
"bedrock/us-east-1/zai.glm-5": 128000,
"bedrock/us-east-2/deepseek.v3.2": 163840,
"bedrock/us-east-2/minimax.minimax-m2.1": 8192,
"bedrock/us-east-2/minimax.minimax-m2.5": 8192,
"bedrock/us-east-2/moonshotai.kimi-k2-thinking": 262144,
"bedrock/us-east-2/moonshotai.kimi-k2.5": 262144,
"bedrock/us-east-2/qwen.qwen3-coder-next": 8192,
"bedrock/us-gov-east-1/amazon.nova-pro-v1:0": 10000,
"bedrock/us-gov-east-1/amazon.titan-text-express-v1": 8000,
"bedrock/us-gov-east-1/amazon.titan-text-lite-v1": 4000,
"bedrock/us-gov-east-1/amazon.titan-text-premier-v1:0": 32000,
"bedrock/us-gov-east-1/anthropic.claude-3-5-sonnet-20240620-v1:0": 8192,
"bedrock/us-gov-east-1/anthropic.claude-3-haiku-20240307-v1:0": 4096,
"bedrock/us-gov-east-1/anthropic.claude-haiku-4-5-20251001-v1:0": 64000,
"bedrock/us-gov-east-1/anthropic.claude-sonnet-4-5-20250929-v1:0": 8192,
"bedrock/us-gov-east-1/claude-sonnet-4-5-20250929-v1:0": 8192,
"bedrock/us-gov-east-1/meta.llama3-70b-instruct-v1:0": 2048,
"bedrock/us-gov-east-1/meta.llama3-8b-instruct-v1:0": 2048,
"bedrock/us-gov-west-1/amazon.nova-pro-v1:0": 10000,
"bedrock/us-gov-west-1/amazon.titan-text-express-v1": 8000,
"bedrock/us-gov-west-1/amazon.titan-text-lite-v1": 4000,
"bedrock/us-gov-west-1/amazon.titan-text-premier-v1:0": 32000,
"bedrock/us-gov-west-1/anthropic.claude-3-5-sonnet-20240620-v1:0": 8192,
"bedrock/us-gov-west-1/anthropic.claude-3-7-sonnet-20250219-v1:0": 8192,
"bedrock/us-gov-west-1/anthropic.claude-3-haiku-20240307-v1:0": 4096,
"bedrock/us-gov-west-1/anthropic.claude-haiku-4-5-20251001-v1:0": 64000,
"bedrock/us-gov-west-1/anthropic.claude-sonnet-4-5-20250929-v1:0": 8192,
"bedrock/us-gov-west-1/claude-sonnet-4-5-20250929-v1:0": 8192,
"bedrock/us-gov-west-1/meta.llama3-70b-instruct-v1:0": 2048,
"bedrock/us-gov-west-1/meta.llama3-8b-instruct-v1:0": 2048,
"bedrock/us-west-1/meta.llama3-70b-instruct-v1:0": 8192,
"bedrock/us-west-1/meta.llama3-8b-instruct-v1:0": 8192,
"bedrock/us-west-2/1-month-commitment/anthropic.claude-instant-v1": 8191,
"bedrock/us-west-2/1-month-commitment/anthropic.claude-v1": 8191,
"bedrock/us-west-2/1-month-commitment/anthropic.claude-v2:1": 8191,
"bedrock/us-west-2/6-month-commitment/anthropic.claude-instant-v1": 8191,
"bedrock/us-west-2/6-month-commitment/anthropic.claude-v1": 8191,
"bedrock/us-west-2/6-month-commitment/anthropic.claude-v2:1": 8191,
"bedrock/us-west-2/anthropic.claude-instant-v1": 8191,
"bedrock/us-west-2/anthropic.claude-v1": 8191,
"bedrock/us-west-2/anthropic.claude-v2:1": 8191,
"bedrock/us-west-2/deepseek.v3.2": 163840,
"bedrock/us-west-2/minimax.minimax-m2.1": 8192,
"bedrock/us-west-2/minimax.minimax-m2.5": 8192,
"bedrock/us-west-2/mistral.mistral-7b-instruct-v0:2": 8191,
"bedrock/us-west-2/mistral.mistral-large-2402-v1:0": 8191,
"bedrock/us-west-2/mistral.mixtral-8x7b-instruct-v0:1": 8191,
"bedrock/us-west-2/moonshotai.kimi-k2-thinking": 262144,
"bedrock/us-west-2/moonshotai.kimi-k2.5": 262144,
"bedrock/us-west-2/qwen.qwen3-coder-next": 8192,
"bedrock/us-west-2/zai.glm-5": 128000,
"bedrock/us.anthropic.claude-3-5-haiku-20241022-v1:0": 8192,
"cerebras/gpt-oss-120b": 32768,
"cerebras/llama-3.3-70b": 128000,
"cerebras/llama3.1-70b": 128000,
"cerebras/llama3.1-8b": 128000,
"cerebras/qwen-3-32b": 128000,
"cerebras/zai-glm-4.6": 128000,
"cerebras/zai-glm-4.7": 128000,
"chatdolphin": 16384,
"chatgpt-4o-latest": 4096,
"claude-3-7-sonnet-20250219": 64000,
"claude-3-haiku-20240307": 4096,
"claude-3-opus-20240229": 4096,
"claude-4-opus-20250514": 32000,
"claude-4-sonnet-20250514": 64000,
"claude-haiku-4-5": 64000,
"claude-haiku-4-5-20251001": 64000,
"claude-opus-4-1": 32000,
"claude-opus-4-1-20250805": 32000,
"claude-opus-4-20250514": 32000,
"claude-opus-4-5": 64000,
"claude-opus-4-5-20251101": 64000,
"claude-opus-4-6": 128000,
"claude-opus-4-6-20260205": 128000,
"claude-opus-4-7": 128000,
"claude-opus-4-7-20260416": 128000,
"claude-sonnet-4-20250514": 64000,
"claude-sonnet-4-5": 64000,
"claude-sonnet-4-5-20250929": 64000,
"claude-sonnet-4-5-20250929-v1:0": 64000,
"claude-sonnet-4-6": 64000,
"cloudflare/@cf/meta/llama-2-7b-chat-fp16": 3072,
"cloudflare/@cf/meta/llama-2-7b-chat-int8": 2048,
"cloudflare/@cf/mistral/mistral-7b-instruct-v0.1": 8192,
"cloudflare/@hf/thebloke/codellama-7b-instruct-awq": 4096,
"codestral/codestral-2405": 8191,
"codestral/codestral-latest": 8191,
"cohere.command-light-text-v14": 4096,
"cohere.command-r-plus-v1:0": 4096,
"cohere.command-r-v1:0": 4096,
"cohere.command-text-v14": 4096,
"command-a-03-2025": 8000,
"command-light": 4096,
"command-r": 4096,
"command-r-08-2024": 4096,
"command-r-plus": 4096,
"command-r-plus-08-2024": 4096,
"command-r7b-12-2024": 4096,
"computer-use-preview": 1024,
"dashscope/qwen-coder": 16384,
"dashscope/qwen-flash": 32768,
"dashscope/qwen-flash-2025-07-28": 32768,
"dashscope/qwen-max": 8192,
"dashscope/qwen-plus": 16384,
"dashscope/qwen-plus-2025-01-25": 8192,
"dashscope/qwen-plus-2025-04-28": 16384,
"dashscope/qwen-plus-2025-07-14": 16384,
"dashscope/qwen-plus-2025-07-28": 32768,
"dashscope/qwen-plus-2025-09-11": 32768,
"dashscope/qwen-plus-latest": 32768,
"dashscope/qwen-turbo": 16384,
"dashscope/qwen-turbo-2024-11-01": 8192,
"dashscope/qwen-turbo-2025-04-28": 16384,
"dashscope/qwen-turbo-latest": 16384,
"dashscope/qwen3-30b-a3b": 16384,
"dashscope/qwen3-coder-flash": 65536,
"dashscope/qwen3-coder-flash-2025-07-28": 65536,
"dashscope/qwen3-coder-plus": 65536,
"dashscope/qwen3-coder-plus-2025-07-22": 65536,
"dashscope/qwen3-max": 65536,
"dashscope/qwen3-max-2026-01-23": 65536,
"dashscope/qwen3-max-preview": 65536,
"dashscope/qwen3-next-80b-a3b-instruct": 65536,
"dashscope/qwen3-next-80b-a3b-thinking": 65536,
"dashscope/qwen3-vl-235b-a22b-instruct": 32768,
"dashscope/qwen3-vl-235b-a22b-thinking": 32768,
"dashscope/qwen3-vl-32b-instruct": 32768,
"dashscope/qwen3-vl-32b-thinking": 32768,
"dashscope/qwen3-vl-plus": 32768,
"dashscope/qwen3.5-plus": 65536,
"dashscope/qwq-plus": 8192,
"databricks/databricks-claude-3-7-sonnet": 128000,
"databricks/databricks-claude-haiku-4-5": 64000,
"databricks/databricks-claude-opus-4": 32000,
"databricks/databricks-claude-opus-4-1": 32000,
"databricks/databricks-claude-opus-4-5": 64000,
"databricks/databricks-claude-sonnet-4": 64000,
"databricks/databricks-claude-sonnet-4-1": 64000,
"databricks/databricks-claude-sonnet-4-5": 64000,
"databricks/databricks-gemini-2-5-flash": 65535,
"databricks/databricks-gemini-2-5-pro": 65536,
"databricks/databricks-gemma-3-12b": 32000,
"databricks/databricks-gpt-5": 128000,
"databricks/databricks-gpt-5-1": 128000,
"databricks/databricks-gpt-5-mini": 128000,
"databricks/databricks-gpt-5-nano": 128000,
"databricks/databricks-gpt-oss-120b": 131072,
"databricks/databricks-gpt-oss-20b": 131072,
"databricks/databricks-llama-2-70b-chat": 4096,
"databricks/databricks-llama-4-maverick": 128000,
"databricks/databricks-meta-llama-3-1-405b-instruct": 128000,
"databricks/databricks-meta-llama-3-1-8b-instruct": 128000,
"databricks/databricks-meta-llama-3-3-70b-instruct": 128000,
"databricks/databricks-meta-llama-3-70b-instruct": 128000,
"databricks/databricks-mixtral-8x7b-instruct": 4096,
"databricks/databricks-mpt-30b-instruct": 8192,
"databricks/databricks-mpt-7b-instruct": 8192,
"deepinfra/allenai/olmOCR-7B-0725-FP8": 16384,
"deepinfra/anthropic/claude-3-7-sonnet-latest": 200000,
"deepinfra/anthropic/claude-4-opus": 200000,
"deepinfra/anthropic/claude-4-sonnet": 200000,
"deepinfra/deepseek-ai/DeepSeek-R1": 163840,
"deepinfra/deepseek-ai/DeepSeek-R1-0528": 163840,
"deepinfra/deepseek-ai/DeepSeek-R1-0528-Turbo": 32768,
"deepinfra/deepseek-ai/DeepSeek-R1-Distill-Llama-70B": 131072,
"deepinfra/deepseek-ai/DeepSeek-R1-Distill-Qwen-32B": 131072,
"deepinfra/deepseek-ai/DeepSeek-R1-Turbo": 40960,
"deepinfra/deepseek-ai/DeepSeek-V3": 163840,
"deepinfra/deepseek-ai/DeepSeek-V3-0324": 163840,
"deepinfra/deepseek-ai/DeepSeek-V3.1": 163840,
"deepinfra/deepseek-ai/DeepSeek-V3.1-Terminus": 163840,
"deepinfra/google/gemini-2.0-flash-001": 1000000,
"deepinfra/google/gemini-2.5-flash": 1000000,
"deepinfra/google/gemini-2.5-pro": 1000000,
"deepinfra/google/gemma-3-12b-it": 131072,
"deepinfra/google/gemma-3-27b-it": 131072,
"deepinfra/google/gemma-3-4b-it": 131072,
"deepinfra/Gryphe/MythoMax-L2-13b": 4096,
"deepinfra/meta-llama/Llama-3.2-11B-Vision-Instruct": 131072,
"deepinfra/meta-llama/Llama-3.2-3B-Instruct": 131072,
"deepinfra/meta-llama/Llama-3.3-70B-Instruct": 131072,
"deepinfra/meta-llama/Llama-3.3-70B-Instruct-Turbo": 131072,
"deepinfra/meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8": 1048576,
"deepinfra/meta-llama/Llama-4-Scout-17B-16E-Instruct": 327680,
"deepinfra/meta-llama/Llama-Guard-3-8B": 131072,
"deepinfra/meta-llama/Llama-Guard-4-12B": 163840,
"deepinfra/meta-llama/Meta-Llama-3-8B-Instruct": 8192,
"deepinfra/meta-llama/Meta-Llama-3.1-70B-Instruct": 131072,
"deepinfra/meta-llama/Meta-Llama-3.1-70B-Instruct-Turbo": 131072,
"deepinfra/meta-llama/Meta-Llama-3.1-8B-Instruct": 131072,
"deepinfra/meta-llama/Meta-Llama-3.1-8B-Instruct-Turbo": 131072,
"deepinfra/microsoft/phi-4": 16384,
"deepinfra/microsoft/WizardLM-2-8x22B": 65536,
"deepinfra/mistralai/Mistral-Nemo-Instruct-2407": 131072,
"deepinfra/mistralai/Mistral-Small-24B-Instruct-2501": 32768,
"deepinfra/mistralai/Mistral-Small-3.2-24B-Instruct-2506": 128000,
"deepinfra/mistralai/Mixtral-8x7B-Instruct-v0.1": 32768,
"deepinfra/moonshotai/Kimi-K2-Instruct": 131072,
"deepinfra/moonshotai/Kimi-K2-Instruct-0905": 262144,
"deepinfra/NousResearch/Hermes-3-Llama-3.1-405B": 131072,
"deepinfra/NousResearch/Hermes-3-Llama-3.1-70B": 131072,
"deepinfra/nvidia/Llama-3.1-Nemotron-70B-Instruct": 131072,
"deepinfra/nvidia/Llama-3.3-Nemotron-Super-49B-v1.5": 131072,
"deepinfra/nvidia/NVIDIA-Nemotron-Nano-9B-v2": 131072,
"deepinfra/openai/gpt-oss-120b": 131072,
"deepinfra/openai/gpt-oss-20b": 131072,
"deepinfra/Qwen/Qwen2.5-72B-Instruct": 32768,
"deepinfra/Qwen/Qwen2.5-7B-Instruct": 32768,
"deepinfra/Qwen/Qwen2.5-VL-32B-Instruct": 128000,
"deepinfra/Qwen/Qwen3-14B": 40960,
"deepinfra/Qwen/Qwen3-235B-A22B": 40960,
"deepinfra/Qwen/Qwen3-235B-A22B-Instruct-2507": 262144,
"deepinfra/Qwen/Qwen3-235B-A22B-Thinking-2507": 262144,
"deepinfra/Qwen/Qwen3-30B-A3B": 40960,
"deepinfra/Qwen/Qwen3-32B": 40960,
"deepinfra/Qwen/Qwen3-Coder-480B-A35B-Instruct": 262144,
"deepinfra/Qwen/Qwen3-Coder-480B-A35B-Instruct-Turbo": 262144,
"deepinfra/Qwen/Qwen3-Next-80B-A3B-Instruct": 262144,
"deepinfra/Qwen/Qwen3-Next-80B-A3B-Thinking": 262144,
"deepinfra/Qwen/QwQ-32B": 131072,
"deepinfra/Sao10K/L3-8B-Lunaris-v1-Turbo": 8192,
"deepinfra/Sao10K/L3.1-70B-Euryale-v2.2": 131072,
"deepinfra/Sao10K/L3.3-70B-Euryale-v2.3": 131072,
"deepinfra/zai-org/GLM-4.5": 131072,
"deepseek-chat": 8192,
"deepseek-reasoner": 65536,
"deepseek-v3-2-251201": 32768,
"deepseek.v3-v1:0": 81920,
"deepseek.v3.2": 163840,
"deepseek/deepseek-chat": 8192,
"deepseek/deepseek-coder": 4096,
"deepseek/deepseek-r1": 8192,
"deepseek/deepseek-reasoner": 65536,
"deepseek/deepseek-v3": 8192,
"deepseek/deepseek-v3.2": 163840,
"eu.amazon.nova-2-lite-v1:0": 64000,
"eu.amazon.nova-2-pro-preview-20251202-v1:0": 64000,
"eu.amazon.nova-lite-v1:0": 10000,
"eu.amazon.nova-micro-v1:0": 10000,
"eu.amazon.nova-pro-v1:0": 10000,
"eu.anthropic.claude-3-5-haiku-20241022-v1:0": 8192,
"eu.anthropic.claude-3-5-sonnet-20240620-v1:0": 4096,
"eu.anthropic.claude-3-5-sonnet-20241022-v2:0": 8192,
"eu.anthropic.claude-3-7-sonnet-20250219-v1:0": 8192,
"eu.anthropic.claude-3-haiku-20240307-v1:0": 4096,
"eu.anthropic.claude-3-opus-20240229-v1:0": 4096,
"eu.anthropic.claude-3-sonnet-20240229-v1:0": 4096,
"eu.anthropic.claude-haiku-4-5-20251001-v1:0": 64000,
"eu.anthropic.claude-opus-4-1-20250805-v1:0": 32000,
"eu.anthropic.claude-opus-4-20250514-v1:0": 32000,
"eu.anthropic.claude-opus-4-5-20251101-v1:0": 64000,
"eu.anthropic.claude-opus-4-6-v1": 128000,
"eu.anthropic.claude-opus-4-7": 128000,
"eu.anthropic.claude-sonnet-4-20250514-v1:0": 64000,
"eu.anthropic.claude-sonnet-4-5-20250929-v1:0": 64000,
"eu.anthropic.claude-sonnet-4-6": 64000,
"eu.deepseek.v3.2": 163840,
"eu.meta.llama3-2-1b-instruct-v1:0": 4096,
"eu.meta.llama3-2-3b-instruct-v1:0": 4096,
"eu.mistral.pixtral-large-2502-v1:0": 4096,
"featherless_ai/featherless-ai/Qwerky-72B": 4096,
"featherless_ai/featherless-ai/Qwerky-QwQ-32B": 4096,
"fireworks_ai/accounts/fireworks/models/chronos-hermes-13b-v2": 4096,
"fireworks_ai/accounts/fireworks/models/code-llama-13b": 16384,
"fireworks_ai/accounts/fireworks/models/code-llama-13b-instruct": 16384,
"fireworks_ai/accounts/fireworks/models/code-llama-13b-python": 16384,
"fireworks_ai/accounts/fireworks/models/code-llama-34b": 16384,
"fireworks_ai/accounts/fireworks/models/code-llama-34b-instruct": 16384,
"fireworks_ai/accounts/fireworks/models/code-llama-34b-python": 16384,
"fireworks_ai/accounts/fireworks/models/code-llama-70b": 4096,
"fireworks_ai/accounts/fireworks/models/code-llama-70b-instruct": 4096,
"fireworks_ai/accounts/fireworks/models/code-llama-70b-python": 4096,
"fireworks_ai/accounts/fireworks/models/code-llama-7b": 16384,
"fireworks_ai/accounts/fireworks/models/code-llama-7b-instruct": 16384,
"fireworks_ai/accounts/fireworks/models/code-llama-7b-python": 16384,
"fireworks_ai/accounts/fireworks/models/code-qwen-1p5-7b": 65536,
"fireworks_ai/accounts/fireworks/models/codegemma-2b": 8192,
"fireworks_ai/accounts/fireworks/models/codegemma-7b": 8192,
"fireworks_ai/accounts/fireworks/models/cogito-671b-v2-p1": 163840,
"fireworks_ai/accounts/fireworks/models/cogito-v1-preview-llama-3b": 131072,
"fireworks_ai/accounts/fireworks/models/cogito-v1-preview-llama-70b": 131072,
"fireworks_ai/accounts/fireworks/models/cogito-v1-preview-llama-8b": 131072,
"fireworks_ai/accounts/fireworks/models/cogito-v1-preview-qwen-14b": 131072,
"fireworks_ai/accounts/fireworks/models/cogito-v1-preview-qwen-32b": 131072,
"fireworks_ai/accounts/fireworks/models/dbrx-instruct": 32768,
"fireworks_ai/accounts/fireworks/models/deepseek-coder-1b-base": 16384,
"fireworks_ai/accounts/fireworks/models/deepseek-coder-33b-instruct": 16384,
"fireworks_ai/accounts/fireworks/models/deepseek-coder-7b-base": 4096,
"fireworks_ai/accounts/fireworks/models/deepseek-coder-7b-base-v1p5": 4096,
"fireworks_ai/accounts/fireworks/models/deepseek-coder-7b-instruct-v1p5": 4096,
"fireworks_ai/accounts/fireworks/models/deepseek-coder-v2-instruct": 65536,
"fireworks_ai/accounts/fireworks/models/deepseek-coder-v2-lite-base": 163840,
"fireworks_ai/accounts/fireworks/models/deepseek-coder-v2-lite-instruct": 163840,
"fireworks_ai/accounts/fireworks/models/deepseek-prover-v2": 163840,
"fireworks_ai/accounts/fireworks/models/deepseek-r1": 20480,
"fireworks_ai/accounts/fireworks/models/deepseek-r1-0528": 160000,
"fireworks_ai/accounts/fireworks/models/deepseek-r1-0528-distill-qwen3-8b": 131072,
"fireworks_ai/accounts/fireworks/models/deepseek-r1-basic": 20480,
"fireworks_ai/accounts/fireworks/models/deepseek-r1-distill-llama-70b": 131072,
"fireworks_ai/accounts/fireworks/models/deepseek-r1-distill-llama-8b": 131072,
"fireworks_ai/accounts/fireworks/models/deepseek-r1-distill-qwen-14b": 131072,
"fireworks_ai/accounts/fireworks/models/deepseek-r1-distill-qwen-1p5b": 131072,
"fireworks_ai/accounts/fireworks/models/deepseek-r1-distill-qwen-32b": 131072,
"fireworks_ai/accounts/fireworks/models/deepseek-r1-distill-qwen-7b": 131072,
"fireworks_ai/accounts/fireworks/models/deepseek-v2-lite-chat": 163840,
"fireworks_ai/accounts/fireworks/models/deepseek-v2p5": 32768,
"fireworks_ai/accounts/fireworks/models/deepseek-v3": 8192,
"fireworks_ai/accounts/fireworks/models/deepseek-v3-0324": 163840,
"fireworks_ai/accounts/fireworks/models/deepseek-v3p1": 8192,
"fireworks_ai/accounts/fireworks/models/deepseek-v3p1-terminus": 8192,
"fireworks_ai/accounts/fireworks/models/deepseek-v3p2": 163840,
"fireworks_ai/accounts/fireworks/models/devstral-small-2505": 131072,
"fireworks_ai/accounts/fireworks/models/dobby-mini-unhinged-plus-llama-3-1-8b": 131072,
"fireworks_ai/accounts/fireworks/models/dobby-unhinged-llama-3-3-70b-new": 131072,
"fireworks_ai/accounts/fireworks/models/dolphin-2-9-2-qwen2-72b": 131072,
"fireworks_ai/accounts/fireworks/models/dolphin-2p6-mixtral-8x7b": 32768,
"fireworks_ai/accounts/fireworks/models/ernie-4p5-21b-a3b-pt": 4096,
"fireworks_ai/accounts/fireworks/models/ernie-4p5-300b-a47b-pt": 4096,
"fireworks_ai/accounts/fireworks/models/fare-20b": 131072,
"fireworks_ai/accounts/fireworks/models/firefunction-v1": 32768,
"fireworks_ai/accounts/fireworks/models/firefunction-v2": 8192,
"fireworks_ai/accounts/fireworks/models/firellava-13b": 4096,
"fireworks_ai/accounts/fireworks/models/firesearch-ocr-v6": 8192,
"fireworks_ai/accounts/fireworks/models/flux-1-dev": 4096,
"fireworks_ai/accounts/fireworks/models/flux-1-dev-controlnet-union": 4096,
"fireworks_ai/accounts/fireworks/models/flux-1-schnell": 4096,
"fireworks_ai/accounts/fireworks/models/gemma-2b-it": 8192,
"fireworks_ai/accounts/fireworks/models/gemma-3-27b-it": 131072,
"fireworks_ai/accounts/fireworks/models/gemma-7b": 8192,
"fireworks_ai/accounts/fireworks/models/gemma-7b-it": 8192,
"fireworks_ai/accounts/fireworks/models/gemma2-9b-it": 8192,
"fireworks_ai/accounts/fireworks/models/glm-4p5": 96000,
"fireworks_ai/accounts/fireworks/models/glm-4p5-air": 96000,
"fireworks_ai/accounts/fireworks/models/glm-4p5v": 131072,
"fireworks_ai/accounts/fireworks/models/glm-4p6": 202800,
"fireworks_ai/accounts/fireworks/models/glm-4p7": 202800,
"fireworks_ai/accounts/fireworks/models/gpt-oss-120b": 131072,
"fireworks_ai/accounts/fireworks/models/gpt-oss-20b": 131072,
"fireworks_ai/accounts/fireworks/models/gpt-oss-safeguard-120b": 131072,
"fireworks_ai/accounts/fireworks/models/gpt-oss-safeguard-20b": 131072,
"fireworks_ai/accounts/fireworks/models/hermes-2-pro-mistral-7b": 32768,
"fireworks_ai/accounts/fireworks/models/internvl3-38b": 16384,
"fireworks_ai/accounts/fireworks/models/internvl3-78b": 16384,
"fireworks_ai/accounts/fireworks/models/internvl3-8b": 16384,
"fireworks_ai/accounts/fireworks/models/kat-coder": 262144,
"fireworks_ai/accounts/fireworks/models/kat-dev-32b": 131072,
"fireworks_ai/accounts/fireworks/models/kat-dev-72b-exp": 131072,
"fireworks_ai/accounts/fireworks/models/kimi-k2-instruct": 16384,
"fireworks_ai/accounts/fireworks/models/kimi-k2-instruct-0905": 32768,
"fireworks_ai/accounts/fireworks/models/kimi-k2-thinking": 262144,
"fireworks_ai/accounts/fireworks/models/kimi-k2p5": 262144,
"fireworks_ai/accounts/fireworks/models/llama-guard-2-8b": 8192,
"fireworks_ai/accounts/fireworks/models/llama-guard-3-1b": 131072,
"fireworks_ai/accounts/fireworks/models/llama-guard-3-8b": 131072,
"fireworks_ai/accounts/fireworks/models/llama-v2-13b": 4096,
"fireworks_ai/accounts/fireworks/models/llama-v2-13b-chat": 4096,
"fireworks_ai/accounts/fireworks/models/llama-v2-70b": 4096,
"fireworks_ai/accounts/fireworks/models/llama-v2-70b-chat": 2048,
"fireworks_ai/accounts/fireworks/models/llama-v2-7b": 4096,
"fireworks_ai/accounts/fireworks/models/llama-v2-7b-chat": 4096,
"fireworks_ai/accounts/fireworks/models/llama-v3-70b-instruct": 8192,
"fireworks_ai/accounts/fireworks/models/llama-v3-70b-instruct-hf": 8192,
"fireworks_ai/accounts/fireworks/models/llama-v3-8b": 8192,
"fireworks_ai/accounts/fireworks/models/llama-v3-8b-instruct-hf": 8192,
"fireworks_ai/accounts/fireworks/models/llama-v3p1-405b-instruct": 16384,
"fireworks_ai/accounts/fireworks/models/llama-v3p1-405b-instruct-long": 4096,
"fireworks_ai/accounts/fireworks/models/llama-v3p1-70b-instruct": 131072,
"fireworks_ai/accounts/fireworks/models/llama-v3p1-70b-instruct-1b": 4096,
"fireworks_ai/accounts/fireworks/models/llama-v3p1-8b-instruct": 16384,
"fireworks_ai/accounts/fireworks/models/llama-v3p1-nemotron-70b-instruct": 131072,
"fireworks_ai/accounts/fireworks/models/llama-v3p2-11b-vision-instruct": 16384,
"fireworks_ai/accounts/fireworks/models/llama-v3p2-1b": 131072,
"fireworks_ai/accounts/fireworks/models/llama-v3p2-1b-instruct": 16384,
"fireworks_ai/accounts/fireworks/models/llama-v3p2-3b": 131072,
"fireworks_ai/accounts/fireworks/models/llama-v3p2-3b-instruct": 16384,
"fireworks_ai/accounts/fireworks/models/llama-v3p2-90b-vision-instruct": 16384,
"fireworks_ai/accounts/fireworks/models/llama-v3p3-70b-instruct": 131072,
"fireworks_ai/accounts/fireworks/models/llama4-maverick-instruct-basic": 131072,
"fireworks_ai/accounts/fireworks/models/llama4-scout-instruct-basic": 131072,
"fireworks_ai/accounts/fireworks/models/llamaguard-7b": 4096,
"fireworks_ai/accounts/fireworks/models/llava-yi-34b": 4096,
"fireworks_ai/accounts/fireworks/models/minimax-m1-80k": 4096,
"fireworks_ai/accounts/fireworks/models/minimax-m2": 4096,
"fireworks_ai/accounts/fireworks/models/minimax-m2p1": 204800,
"fireworks_ai/accounts/fireworks/models/ministral-3-14b-instruct-2512": 256000,
"fireworks_ai/accounts/fireworks/models/ministral-3-3b-instruct-2512": 256000,
"fireworks_ai/accounts/fireworks/models/ministral-3-8b-instruct-2512": 256000,
"fireworks_ai/accounts/fireworks/models/mistral-7b": 32768,
"fireworks_ai/accounts/fireworks/models/mistral-7b-instruct-4k": 32768,
"fireworks_ai/accounts/fireworks/models/mistral-7b-instruct-v0p2": 32768,
"fireworks_ai/accounts/fireworks/models/mistral-7b-instruct-v3": 32768,
"fireworks_ai/accounts/fireworks/models/mistral-7b-v0p2": 32768,
"fireworks_ai/accounts/fireworks/models/mistral-large-3-fp8": 256000,
"fireworks_ai/accounts/fireworks/models/mistral-nemo-base-2407": 128000,
"fireworks_ai/accounts/fireworks/models/mistral-nemo-instruct-2407": 128000,
"fireworks_ai/accounts/fireworks/models/mistral-small-24b-instruct-2501": 32768,
"fireworks_ai/accounts/fireworks/models/mixtral-8x22b": 65536,
"fireworks_ai/accounts/fireworks/models/mixtral-8x22b-instruct": 65536,
"fireworks_ai/accounts/fireworks/models/mixtral-8x22b-instruct-hf": 65536,
"fireworks_ai/accounts/fireworks/models/mixtral-8x7b": 32768,
"fireworks_ai/accounts/fireworks/models/mixtral-8x7b-instruct": 32768,
"fireworks_ai/accounts/fireworks/models/mixtral-8x7b-instruct-hf": 32768,
"fireworks_ai/accounts/fireworks/models/mythomax-l2-13b": 4096,
"fireworks_ai/accounts/fireworks/models/nemotron-nano-v2-12b-vl": 4096,
"fireworks_ai/accounts/fireworks/models/nous-capybara-7b-v1p9": 32768,
"fireworks_ai/accounts/fireworks/models/nous-hermes-2-mixtral-8x7b-dpo": 32768,
"fireworks_ai/accounts/fireworks/models/nous-hermes-2-yi-34b": 4096,
"fireworks_ai/accounts/fireworks/models/nous-hermes-llama2-13b": 4096,
"fireworks_ai/accounts/fireworks/models/nous-hermes-llama2-70b": 4096,
"fireworks_ai/accounts/fireworks/models/nous-hermes-llama2-7b": 4096,
"fireworks_ai/accounts/fireworks/models/nvidia-nemotron-nano-12b-v2": 131072,
"fireworks_ai/accounts/fireworks/models/nvidia-nemotron-nano-9b-v2": 131072,
"fireworks_ai/accounts/fireworks/models/openchat-3p5-0106-7b": 8192,
"fireworks_ai/accounts/fireworks/models/openhermes-2-mistral-7b": 32768,
"fireworks_ai/accounts/fireworks/models/openhermes-2p5-mistral-7b": 32768,
"fireworks_ai/accounts/fireworks/models/openorca-7b": 32768,
"fireworks_ai/accounts/fireworks/models/phi-2-3b": 2048,
"fireworks_ai/accounts/fireworks/models/phi-3-mini-128k-instruct": 131072,
"fireworks_ai/accounts/fireworks/models/phi-3-vision-128k-instruct": 32064,
"fireworks_ai/accounts/fireworks/models/phind-code-llama-34b-python-v1": 16384,
"fireworks_ai/accounts/fireworks/models/phind-code-llama-34b-v1": 16384,
"fireworks_ai/accounts/fireworks/models/phind-code-llama-34b-v2": 16384,
"fireworks_ai/accounts/fireworks/models/pythia-12b": 2048,
"fireworks_ai/accounts/fireworks/models/qwen-qwq-32b-preview": 32768,
"fireworks_ai/accounts/fireworks/models/qwen-v2p5-14b-instruct": 32768,
"fireworks_ai/accounts/fireworks/models/qwen-v2p5-7b": 131072,
"fireworks_ai/accounts/fireworks/models/qwen1p5-72b-chat": 32768,
"fireworks_ai/accounts/fireworks/models/qwen2-72b-instruct": 32768,
"fireworks_ai/accounts/fireworks/models/qwen2-7b-instruct": 32768,
"fireworks_ai/accounts/fireworks/models/qwen2-vl-2b-instruct": 32768,
"fireworks_ai/accounts/fireworks/models/qwen2-vl-72b-instruct": 32768,
"fireworks_ai/accounts/fireworks/models/qwen2-vl-7b-instruct": 32768,
"fireworks_ai/accounts/fireworks/models/qwen2p5-0p5b-instruct": 32768,
"fireworks_ai/accounts/fireworks/models/qwen2p5-14b": 131072,
"fireworks_ai/accounts/fireworks/models/qwen2p5-1p5b-instruct": 32768,
"fireworks_ai/accounts/fireworks/models/qwen2p5-32b": 131072,
"fireworks_ai/accounts/fireworks/models/qwen2p5-32b-instruct": 32768,
"fireworks_ai/accounts/fireworks/models/qwen2p5-72b": 131072,
"fireworks_ai/accounts/fireworks/models/qwen2p5-72b-instruct": 32768,
"fireworks_ai/accounts/fireworks/models/qwen2p5-7b-instruct": 32768,
"fireworks_ai/accounts/fireworks/models/qwen2p5-coder-0p5b": 32768,
"fireworks_ai/accounts/fireworks/models/qwen2p5-coder-0p5b-instruct": 32768,
"fireworks_ai/accounts/fireworks/models/qwen2p5-coder-14b": 32768,
"fireworks_ai/accounts/fireworks/models/qwen2p5-coder-14b-instruct": 32768,
"fireworks_ai/accounts/fireworks/models/qwen2p5-coder-1p5b": 32768,
"fireworks_ai/accounts/fireworks/models/qwen2p5-coder-1p5b-instruct": 32768,
"fireworks_ai/accounts/fireworks/models/qwen2p5-coder-32b": 32768,
"fireworks_ai/accounts/fireworks/models/qwen2p5-coder-32b-instruct": 4096,
"fireworks_ai/accounts/fireworks/models/qwen2p5-coder-32b-instruct-128k": 131072,
"fireworks_ai/accounts/fireworks/models/qwen2p5-coder-32b-instruct-32k-rope": 32768,
"fireworks_ai/accounts/fireworks/models/qwen2p5-coder-32b-instruct-64k": 65536,
"fireworks_ai/accounts/fireworks/models/qwen2p5-coder-3b": 32768,
"fireworks_ai/accounts/fireworks/models/qwen2p5-coder-3b-instruct": 32768,
"fireworks_ai/accounts/fireworks/models/qwen2p5-coder-7b": 32768,
"fireworks_ai/accounts/fireworks/models/qwen2p5-coder-7b-instruct": 32768,
"fireworks_ai/accounts/fireworks/models/qwen2p5-math-72b-instruct": 4096,
"fireworks_ai/accounts/fireworks/models/qwen2p5-vl-32b-instruct": 128000,
"fireworks_ai/accounts/fireworks/models/qwen2p5-vl-3b-instruct": 128000,
"fireworks_ai/accounts/fireworks/models/qwen2p5-vl-72b-instruct": 128000,
"fireworks_ai/accounts/fireworks/models/qwen2p5-vl-7b-instruct": 128000,
"fireworks_ai/accounts/fireworks/models/qwen3-0p6b": 40960,
"fireworks_ai/accounts/fireworks/models/qwen3-14b": 40960,
"fireworks_ai/accounts/fireworks/models/qwen3-1p7b": 131072,
"fireworks_ai/accounts/fireworks/models/qwen3-1p7b-fp8-draft": 262144,
"fireworks_ai/accounts/fireworks/models/qwen3-1p7b-fp8-draft-131072": 131072,
"fireworks_ai/accounts/fireworks/models/qwen3-1p7b-fp8-draft-40960": 40960,
"fireworks_ai/accounts/fireworks/models/qwen3-235b-a22b": 131072,
"fireworks_ai/accounts/fireworks/models/qwen3-235b-a22b-instruct-2507": 262144,
"fireworks_ai/accounts/fireworks/models/qwen3-235b-a22b-thinking-2507": 262144,
"fireworks_ai/accounts/fireworks/models/qwen3-30b-a3b": 131072,
"fireworks_ai/accounts/fireworks/models/qwen3-30b-a3b-instruct-2507": 262144,
"fireworks_ai/accounts/fireworks/models/qwen3-30b-a3b-thinking-2507": 262144,
"fireworks_ai/accounts/fireworks/models/qwen3-32b": 131072,
"fireworks_ai/accounts/fireworks/models/qwen3-4b": 40960,
"fireworks_ai/accounts/fireworks/models/qwen3-4b-instruct-2507": 262144,
"fireworks_ai/accounts/fireworks/models/qwen3-8b": 40960,
"fireworks_ai/accounts/fireworks/models/qwen3-coder-30b-a3b-instruct": 262144,
"fireworks_ai/accounts/fireworks/models/qwen3-coder-480b-a35b-instruct": 262144,
"fireworks_ai/accounts/fireworks/models/qwen3-coder-480b-instruct-bf16": 4096,
"fireworks_ai/accounts/fireworks/models/qwen3-next-80b-a3b-instruct": 4096,
"fireworks_ai/accounts/fireworks/models/qwen3-next-80b-a3b-thinking": 4096,
"fireworks_ai/accounts/fireworks/models/qwen3-vl-235b-a22b-instruct": 262144,
"fireworks_ai/accounts/fireworks/models/qwen3-vl-235b-a22b-thinking": 262144,
"fireworks_ai/accounts/fireworks/models/qwen3-vl-30b-a3b-instruct": 262144,
"fireworks_ai/accounts/fireworks/models/qwen3-vl-30b-a3b-thinking": 262144,
"fireworks_ai/accounts/fireworks/models/qwen3-vl-32b-instruct": 4096,
"fireworks_ai/accounts/fireworks/models/qwen3-vl-8b-instruct": 4096,
"fireworks_ai/accounts/fireworks/models/qwq-32b": 131072,
"fireworks_ai/accounts/fireworks/models/rolm-ocr": 128000,
"fireworks_ai/accounts/fireworks/models/snorkel-mistral-7b-pairrm-dpo": 32768,
"fireworks_ai/accounts/fireworks/models/stablecode-3b": 4096,
"fireworks_ai/accounts/fireworks/models/starcoder-16b": 8192,
"fireworks_ai/accounts/fireworks/models/starcoder-7b": 8192,
"fireworks_ai/accounts/fireworks/models/starcoder2-15b": 16384,
"fireworks_ai/accounts/fireworks/models/starcoder2-3b": 16384,
"fireworks_ai/accounts/fireworks/models/starcoder2-7b": 16384,
"fireworks_ai/accounts/fireworks/models/toppy-m-7b": 32768,
"fireworks_ai/accounts/fireworks/models/yi-34b": 4096,
"fireworks_ai/accounts/fireworks/models/yi-34b-200k-capybara": 200000,
"fireworks_ai/accounts/fireworks/models/yi-34b-chat": 4096,
"fireworks_ai/accounts/fireworks/models/yi-6b": 4096,
"fireworks_ai/accounts/fireworks/models/yi-large": 32768,
"fireworks_ai/accounts/fireworks/models/zephyr-7b-beta": 32768,
"fireworks_ai/glm-4p7": 202800,
"fireworks_ai/kimi-k2p5": 262144,
"fireworks_ai/minimax-m2p1": 204800,
"friendliai/meta-llama-3.1-70b-instruct": 8192,
"friendliai/meta-llama-3.1-8b-instruct": 8192,
"ft:gpt-3.5-turbo": 4096,
"ft:gpt-3.5-turbo-0125": 4096,
"ft:gpt-3.5-turbo-0613": 4096,
"ft:gpt-3.5-turbo-1106": 4096,
"ft:gpt-4-0613": 4096,
"ft:gpt-4.1-2025-04-14": 32768,
"ft:gpt-4.1-mini-2025-04-14": 32768,
"ft:gpt-4.1-nano-2025-04-14": 32768,
"ft:gpt-4o-2024-08-06": 16384,
"ft:gpt-4o-2024-11-20": 16384,
"ft:gpt-4o-mini-2024-07-18": 16384,
"ft:o4-mini-2025-04-16": 100000,
"gemini-2.0-flash": 8192,
"gemini-2.0-flash-001": 8192,
"gemini-2.0-flash-lite": 8192,
"gemini-2.0-flash-lite-001": 8192,
"gemini-2.5-computer-use-preview-10-2025": 64000,
"gemini-2.5-flash": 65535,
"gemini-2.5-flash-lite": 65535,
"gemini-2.5-flash-lite-preview-06-17": 65535,
"gemini-2.5-flash-lite-preview-09-2025": 65535,
"gemini-2.5-flash-native-audio-latest": 8192,
"gemini-2.5-flash-native-audio-preview-09-2025": 8192,
"gemini-2.5-flash-native-audio-preview-12-2025": 8192,
"gemini-2.5-flash-preview-09-2025": 65535,
"gemini-2.5-pro": 65535,
"gemini-2.5-pro-preview-tts": 65535,
"gemini-3-flash-preview": 65535,
"gemini-3-pro-preview": 65535,
"gemini-3.1-flash-lite-preview": 65536,
"gemini-3.1-flash-live-preview": 65536,
"gemini-3.1-pro-preview": 65536,
"gemini-3.1-pro-preview-customtools": 65536,
"gemini-exp-1206": 65535,
"gemini-flash-latest": 65535,
"gemini-flash-lite-latest": 65535,
"gemini-pro-latest": 65535,
"gemini-robotics-er-1.5-preview": 65535,
"gemini/gemini-2.0-flash": 8192,
"gemini/gemini-2.0-flash-001": 8192,
"gemini/gemini-2.0-flash-lite": 8192,
"gemini/gemini-2.0-flash-lite-001": 8192,
"gemini/gemini-2.5-computer-use-preview-10-2025": 64000,
"gemini/gemini-2.5-flash": 65535,
"gemini/gemini-2.5-flash-lite": 65535,
"gemini/gemini-2.5-flash-lite-preview-06-17": 65535,
"gemini/gemini-2.5-flash-lite-preview-09-2025": 65535,
"gemini/gemini-2.5-flash-native-audio-latest": 8192,
"gemini/gemini-2.5-flash-native-audio-preview-09-2025": 8192,
"gemini/gemini-2.5-flash-native-audio-preview-12-2025": 8192,
"gemini/gemini-2.5-flash-preview-09-2025": 65535,
"gemini/gemini-2.5-pro": 65535,
"gemini/gemini-2.5-pro-preview-tts": 65535,
"gemini/gemini-3-flash-preview": 65535,
"gemini/gemini-3-pro-preview": 65535,
"gemini/gemini-3.1-flash-lite-preview": 65536,
"gemini/gemini-3.1-flash-live-preview": 65536,
"gemini/gemini-3.1-pro-preview": 65536,
"gemini/gemini-3.1-pro-preview-customtools": 65536,
"gemini/gemini-exp-1114": 8192,
"gemini/gemini-exp-1206": 8192,
"gemini/gemini-flash-latest": 65535,
"gemini/gemini-flash-lite-latest": 65535,
"gemini/gemini-gemma-2-27b-it": 8192,
"gemini/gemini-gemma-2-9b-it": 8192,
"gemini/gemini-pro-latest": 65535,
"gemini/gemini-robotics-er-1.5-preview": 65535,
"gemini/gemma-3-27b-it": 8192,
"gemini/learnlm-1.5-pro-experimental": 8192,
"gemini/lyria-3-clip-preview": 8192,
"gemini/lyria-3-pro-preview": 8192,
"gigachat/GigaChat-2-Lite": 8192,
"gigachat/GigaChat-2-Max": 8192,
"gigachat/GigaChat-2-Pro": 8192,
"github_copilot/claude-haiku-4.5": 16000,
"github_copilot/claude-opus-4.5": 16000,
"github_copilot/claude-opus-4.6-fast": 16000,
"github_copilot/claude-opus-41": 16000,
"github_copilot/claude-sonnet-4": 16000,
"github_copilot/claude-sonnet-4.5": 16000,
"github_copilot/gemini-2.5-pro": 64000,
"github_copilot/gemini-3-pro-preview": 64000,
"github_copilot/gpt-3.5-turbo": 4096,
"github_copilot/gpt-3.5-turbo-0613": 4096,
"github_copilot/gpt-4": 4096,
"github_copilot/gpt-4-0613": 4096,
"github_copilot/gpt-4-o-preview": 4096,
"github_copilot/gpt-4.1": 16384,
"github_copilot/gpt-4.1-2025-04-14": 16384,
"github_copilot/gpt-4o": 4096,
"github_copilot/gpt-4o-2024-05-13": 4096,
"github_copilot/gpt-4o-2024-08-06": 16384,
"github_copilot/gpt-4o-2024-11-20": 16384,
"github_copilot/gpt-4o-mini": 4096,
"github_copilot/gpt-4o-mini-2024-07-18": 4096,
"github_copilot/gpt-5": 128000,
"github_copilot/gpt-5-mini": 64000,
"github_copilot/gpt-5.1": 64000,
"github_copilot/gpt-5.2": 64000,
"glm-4-7-251222": 131072,
"global.amazon.nova-2-lite-v1:0": 64000,
"global.anthropic.claude-haiku-4-5-20251001-v1:0": 64000,
"global.anthropic.claude-opus-4-5-20251101-v1:0": 64000,
"global.anthropic.claude-opus-4-6-v1": 128000,
"global.anthropic.claude-opus-4-7": 128000,
"global.anthropic.claude-sonnet-4-20250514-v1:0": 64000,
"global.anthropic.claude-sonnet-4-5-20250929-v1:0": 64000,
"global.anthropic.claude-sonnet-4-6": 64000,
"gmi/anthropic/claude-opus-4": 32000,
"gmi/anthropic/claude-opus-4.5": 32000,
"gmi/anthropic/claude-sonnet-4": 32000,
"gmi/anthropic/claude-sonnet-4.5": 32000,
"gmi/deepseek-ai/DeepSeek-V3-0324": 16384,
"gmi/deepseek-ai/DeepSeek-V3.2": 16384,
"gmi/google/gemini-3-flash-preview": 65536,
"gmi/google/gemini-3-pro-preview": 65536,
"gmi/MiniMaxAI/MiniMax-M2.1": 16384,
"gmi/moonshotai/Kimi-K2-Thinking": 16384,
"gmi/openai/gpt-4o": 16384,
"gmi/openai/gpt-4o-mini": 16384,
"gmi/openai/gpt-5": 32000,
"gmi/openai/gpt-5.1": 32000,
"gmi/openai/gpt-5.2": 32000,
"gmi/Qwen/Qwen3-VL-235B-A22B-Instruct-FP8": 16384,
"gmi/zai-org/GLM-4.7-FP8": 16384,
"google.gemma-3-12b-it": 8192,
"google.gemma-3-27b-it": 8192,
"google.gemma-3-4b-it": 8192,
"gpt-3.5-turbo": 4096,
"gpt-3.5-turbo-0125": 4096,
"gpt-3.5-turbo-1106": 4096,
"gpt-3.5-turbo-16k": 4096,
"gpt-4": 4096,
"gpt-4-0125-preview": 4096,
"gpt-4-0314": 4096,