llm_models_spider 0.1.62

Auto-updated registry of LLM model capabilities (vision, audio, etc.)
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
//! Auto-generated model lists from OpenRouter, LiteLLM, and Chatbot Arena.
//!
//! DO NOT EDIT MANUALLY - This file is regenerated by the update-models binary.
//! Last updated: 2026-04-16T00:00:00Z

/// Models that support vision/image input.
///
/// Source: OpenRouter API + LiteLLM (input_modalities contains "image")
pub const VISION_MODELS: &[&str] = &[
    "amazon.nova-2-lite-v1:0",
    "amazon.nova-2-pro-preview-20251202-v1:0",
    "amazon.nova-lite-v1:0",
    "amazon.nova-pro-v1:0",
    "anthropic.claude-3-5-sonnet-20240620-v1:0",
    "anthropic.claude-3-5-sonnet-20241022-v2:0",
    "anthropic.claude-3-7-sonnet-20240620-v1:0",
    "anthropic.claude-3-7-sonnet-20250219-v1:0",
    "anthropic.claude-3-haiku-20240307-v1:0",
    "anthropic.claude-3-opus-20240229-v1:0",
    "anthropic.claude-3-sonnet-20240229-v1:0",
    "anthropic.claude-haiku-4-5-20251001-v1:0",
    "anthropic.claude-haiku-4-5@20251001",
    "anthropic.claude-opus-4-1-20250805-v1:0",
    "anthropic.claude-opus-4-20250514-v1:0",
    "anthropic.claude-opus-4-5-20251101-v1:0",
    "anthropic.claude-opus-4-6-v1",
    "anthropic.claude-sonnet-4-20250514-v1:0",
    "anthropic.claude-sonnet-4-5-20250929-v1:0",
    "anthropic.claude-sonnet-4-6",
    "apac.amazon.nova-2-lite-v1:0",
    "apac.amazon.nova-2-pro-preview-20251202-v1:0",
    "apac.amazon.nova-lite-v1:0",
    "apac.amazon.nova-pro-v1:0",
    "apac.anthropic.claude-3-5-sonnet-20240620-v1:0",
    "apac.anthropic.claude-3-5-sonnet-20241022-v2:0",
    "apac.anthropic.claude-3-haiku-20240307-v1:0",
    "apac.anthropic.claude-3-sonnet-20240229-v1:0",
    "apac.anthropic.claude-haiku-4-5-20251001-v1:0",
    "apac.anthropic.claude-sonnet-4-20250514-v1:0",
    "au.anthropic.claude-haiku-4-5-20251001-v1:0",
    "au.anthropic.claude-opus-4-6-v1",
    "au.anthropic.claude-sonnet-4-5-20250929-v1:0",
    "au.anthropic.claude-sonnet-4-6",
    "auto",
    "autoglm-phone-9b-multilingual",
    "chatgpt-4o-latest",
    "claude-3-5-sonnet",
    "claude-3-5-sonnet-20241022",
    "claude-3-5-sonnet@20240620",
    "claude-3-7-sonnet",
    "claude-3-7-sonnet-20250219",
    "claude-3-7-sonnet@20250219",
    "claude-3-haiku",
    "claude-3-haiku-20240307",
    "claude-3-haiku@20240307",
    "claude-3-opus",
    "claude-3-opus-20240229",
    "claude-3-opus@20240229",
    "claude-3-sonnet",
    "claude-3-sonnet@20240229",
    "claude-3.5-haiku",
    "claude-3.5-sonnet",
    "claude-3.7-sonnet",
    "claude-3.7-sonnet:thinking",
    "claude-4-opus",
    "claude-4-opus-20250514",
    "claude-4-sonnet",
    "claude-4-sonnet-20250514",
    "claude-4.5-haiku",
    "claude-4.5-sonnet",
    "claude-haiku-4-5",
    "claude-haiku-4-5-20251001",
    "claude-haiku-4-5@20251001",
    "claude-haiku-4.5",
    "claude-opus-4",
    "claude-opus-4-1",
    "claude-opus-4-1-20250805",
    "claude-opus-4-1@20250805",
    "claude-opus-4-20250514",
    "claude-opus-4-5",
    "claude-opus-4-5-20251101",
    "claude-opus-4-5@20251101",
    "claude-opus-4-6",
    "claude-opus-4-6-20260205",
    "claude-opus-4-6@default",
    "claude-opus-4.1",
    "claude-opus-4.5",
    "claude-opus-4.6",
    "claude-opus-4.6-fast",
    "claude-opus-41",
    "claude-opus-4@20250514",
    "claude-sonnet-4",
    "claude-sonnet-4-20250514",
    "claude-sonnet-4-5",
    "claude-sonnet-4-5-20250929",
    "claude-sonnet-4-5-20250929-v1:0",
    "claude-sonnet-4-5@20250929",
    "claude-sonnet-4-6",
    "claude-sonnet-4-6@default",
    "claude-sonnet-4.5",
    "claude-sonnet-4.6",
    "claude-sonnet-4@20250514",
    "computer-use-preview",
    "deepseek-ocr",
    "doubao-seed-2-0-code-preview-260215",
    "doubao-seed-2-0-lite-260215",
    "doubao-seed-2-0-mini-260215",
    "doubao-seed-2-0-pro-260215",
    "ernie-4.5-vl-28b-a3b",
    "ernie-4.5-vl-28b-a3b-thinking",
    "ernie-4.5-vl-424b-a47b",
    "eu.amazon.nova-2-lite-v1:0",
    "eu.amazon.nova-2-pro-preview-20251202-v1:0",
    "eu.amazon.nova-lite-v1:0",
    "eu.amazon.nova-pro-v1:0",
    "eu.anthropic.claude-3-5-sonnet-20240620-v1:0",
    "eu.anthropic.claude-3-5-sonnet-20241022-v2:0",
    "eu.anthropic.claude-3-7-sonnet-20250219-v1:0",
    "eu.anthropic.claude-3-haiku-20240307-v1:0",
    "eu.anthropic.claude-3-opus-20240229-v1:0",
    "eu.anthropic.claude-3-sonnet-20240229-v1:0",
    "eu.anthropic.claude-haiku-4-5-20251001-v1:0",
    "eu.anthropic.claude-opus-4-1-20250805-v1:0",
    "eu.anthropic.claude-opus-4-20250514-v1:0",
    "eu.anthropic.claude-opus-4-5-20251101-v1:0",
    "eu.anthropic.claude-opus-4-6-v1",
    "eu.anthropic.claude-sonnet-4-20250514-v1:0",
    "eu.anthropic.claude-sonnet-4-5-20250929-v1:0",
    "eu.anthropic.claude-sonnet-4-6",
    "free",
    "ft:gpt-4o-2024-08-06",
    "gemini-2.0-flash",
    "gemini-2.0-flash-001",
    "gemini-2.0-flash-lite",
    "gemini-2.0-flash-lite-001",
    "gemini-2.5-computer-use-preview-10-2025",
    "gemini-2.5-flash",
    "gemini-2.5-flash-image",
    "gemini-2.5-flash-lite",
    "gemini-2.5-flash-lite-preview-06-17",
    "gemini-2.5-flash-lite-preview-09-2025",
    "gemini-2.5-flash-preview-09-2025",
    "gemini-2.5-pro",
    "gemini-2.5-pro-preview",
    "gemini-2.5-pro-preview-05-06",
    "gemini-2.5-pro-preview-tts",
    "gemini-3-flash-preview",
    "gemini-3-pro",
    "gemini-3-pro-image-preview",
    "gemini-3-pro-preview",
    "gemini-3.1-flash-image-preview",
    "gemini-3.1-flash-lite-preview",
    "gemini-3.1-flash-live-preview",
    "gemini-3.1-pro-preview",
    "gemini-3.1-pro-preview-customtools",
    "gemini-exp-1114",
    "gemini-exp-1206",
    "gemini-flash-latest",
    "gemini-flash-lite-latest",
    "gemini-gemma-2-27b-it",
    "gemini-gemma-2-9b-it",
    "gemini-pro-latest",
    "gemini-robotics-er-1.5-preview",
    "gemma-2-9b",
    "gemma-3-12b-it",
    "gemma-3-12b-it:free",
    "gemma-3-27b-it",
    "gemma-3-27b-it:free",
    "gemma-3-4b-it",
    "gemma-3-4b-it:free",
    "gemma3-4b",
    "gigachat-2-max",
    "gigachat-2-pro",
    "glm-4.5v",
    "glm-4.6v",
    "glm-4.7",
    "glm-4.7-flash",
    "glm-5v-turbo",
    "global.amazon.nova-2-lite-v1:0",
    "global.anthropic.claude-haiku-4-5-20251001-v1:0",
    "global.anthropic.claude-opus-4-5-20251101-v1:0",
    "global.anthropic.claude-opus-4-6-v1",
    "global.anthropic.claude-sonnet-4-20250514-v1:0",
    "global.anthropic.claude-sonnet-4-5-20250929-v1:0",
    "global.anthropic.claude-sonnet-4-6",
    "google.gemma-3-12b-it",
    "google.gemma-3-27b-it",
    "google.gemma-3-4b-it",
    "gpt-4-turbo",
    "gpt-4-turbo-2024-04-09",
    "gpt-4-turbo-vision-preview",
    "gpt-4.1",
    "gpt-4.1-2025-04-14",
    "gpt-4.1-mini",
    "gpt-4.1-mini-2025-04-14",
    "gpt-4.1-nano",
    "gpt-4.1-nano-2025-04-14",
    "gpt-4.5-preview",
    "gpt-4o",
    "gpt-4o-2024-05-13",
    "gpt-4o-2024-08-06",
    "gpt-4o-2024-11-20",
    "gpt-4o-mini",
    "gpt-4o-mini-2024-07-18",
    "gpt-4o-mini-search-preview",
    "gpt-4o-mini-search-preview-2025-03-11",
    "gpt-4o-search-preview",
    "gpt-4o-search-preview-2025-03-11",
    "gpt-4o:extended",
    "gpt-5",
    "gpt-5-2025-08-07",
    "gpt-5-chat",
    "gpt-5-chat-latest",
    "gpt-5-codex",
    "gpt-5-image",
    "gpt-5-image-mini",
    "gpt-5-mini",
    "gpt-5-mini-2025-08-07",
    "gpt-5-nano",
    "gpt-5-nano-2025-08-07",
    "gpt-5-pro",
    "gpt-5-search-api",
    "gpt-5-search-api-2025-10-14",
    "gpt-5.1",
    "gpt-5.1-2025-11-13",
    "gpt-5.1-chat",
    "gpt-5.1-chat-2025-11-13",
    "gpt-5.1-chat-latest",
    "gpt-5.1-codex",
    "gpt-5.1-codex-max",
    "gpt-5.1-codex-mini",
    "gpt-5.2",
    "gpt-5.2-2025-12-11",
    "gpt-5.2-chat",
    "gpt-5.2-chat-2025-12-11",
    "gpt-5.2-chat-latest",
    "gpt-5.2-codex",
    "gpt-5.2-pro",
    "gpt-5.3-chat",
    "gpt-5.3-chat-latest",
    "gpt-5.3-codex",
    "gpt-5.4",
    "gpt-5.4-2026-03-05",
    "gpt-5.4-mini",
    "gpt-5.4-nano",
    "gpt-5.4-pro",
    "gpt-oss-120b",
    "gpt-oss-20b",
    "granite-vision-3-2-2b",
    "grok-2-vision",
    "grok-2-vision-1212",
    "grok-2-vision-latest",
    "grok-4",
    "grok-4-fast",
    "grok-4.1-fast",
    "grok-4.20",
    "grok-4.20-beta-0309-non-reasoning",
    "grok-4.20-beta-0309-reasoning",
    "grok-4.20-multi-agent",
    "grok-4.20-multi-agent-beta-0309",
    "grok-beta",
    "grok-vision-beta",
    "jp.anthropic.claude-haiku-4-5-20251001-v1:0",
    "jp.anthropic.claude-sonnet-4-5-20250929-v1:0",
    "kimi-k2.5",
    "kimi-latest",
    "kimi-latest-128k",
    "kimi-latest-32k",
    "kimi-latest-8k",
    "kimi-thinking-preview",
    "learnlm-1.5-pro-experimental",
    "llama-3-2-11b-vision-instruct",
    "llama-3-2-90b-vision-instruct",
    "llama-3.1-405b-instruct-maas",
    "llama-3.1-70b-instruct-maas",
    "llama-3.1-8b-instruct-maas",
    "llama-3.2-11b",
    "llama-3.2-11b-vision-instruct",
    "llama-3.2-90b",
    "llama-3.2-90b-vision-instruct",
    "llama-3.2-90b-vision-instruct-maas",
    "llama-4-maverick",
    "llama-4-maverick-17b-128e-instruct",
    "llama-4-maverick-17b-128e-instruct-fp8",
    "llama-4-scout",
    "llama-4-scout-17b-16e-instruct",
    "llama-guard-3-11b-vision",
    "llama-guard-4-12b",
    "llama-v3p2-11b-vision-instruct",
    "llama-v3p2-90b-vision-instruct",
    "llama3.2-11b-vision-instruct",
    "llava-7b",
    "llava-v1.6-mistral-7b-hf",
    "lyria-3-clip-preview",
    "lyria-3-pro-preview",
    "meta.llama3-2-11b-instruct-v1:0",
    "meta.llama3-2-90b-instruct-v1:0",
    "mimo-v2-omni",
    "minimax-01",
    "minimax-m2.1",
    "ministral-14b-2512",
    "ministral-3-14b-2512",
    "ministral-3-3b-2512",
    "ministral-3-8b-2512",
    "ministral-3b-2512",
    "ministral-8b",
    "ministral-8b-2512",
    "mistral-large-2512",
    "mistral-large-3",
    "mistral-large-latest",
    "mistral-medium-3",
    "mistral-medium-3-1-2508",
    "mistral-medium-3.1",
    "mistral-medium-latest",
    "mistral-small-2503",
    "mistral-small-2603",
    "mistral-small-3-2-2506",
    "mistral-small-3.1-24b-instruct",
    "mistral-small-3.2-24b-instruct",
    "mistral-small-3.2-24b-instruct-2506",
    "mistral-small-latest",
    "moonshot-v1-128k-vision-preview",
    "moonshot-v1-32k-vision-preview",
    "moonshot-v1-8k-vision-preview",
    "moonshotai.kimi-k2.5",
    "nemotron-nano-12b-v2-vl",
    "nemotron-nano-12b-v2-vl:free",
    "nova-2-lite-v1",
    "nova-lite",
    "nova-lite-v1",
    "nova-premier-v1",
    "nova-pro",
    "nova-pro-v1",
    "nvidia.nemotron-nano-12b-v2",
    "o1",
    "o1-2024-12-17",
    "o1-pro",
    "o3",
    "o3-2025-04-16",
    "o3-deep-research",
    "o3-pro",
    "o4-mini",
    "o4-mini-2025-04-16",
    "o4-mini-deep-research",
    "o4-mini-high",
    "paddleocr-vl",
    "phi-3.5-vision-instruct",
    "phi-4-multimodal-instruct",
    "pixtral-12b",
    "pixtral-12b-2409",
    "pixtral-large",
    "pixtral-large-2411",
    "pixtral-large-latest",
    "qwen-vl-max",
    "qwen-vl-plus",
    "qwen.qwen3-vl-235b-a22b",
    "qwen2-vl-72b-instruct",
    "qwen2-vl-7b-instruct",
    "qwen2.5-vl-32b-instruct",
    "qwen2.5-vl-72b-instruct",
    "qwen3-omni-30b-a3b-instruct",
    "qwen3-omni-30b-a3b-thinking",
    "qwen3-vl-235b-a22b-instruct",
    "qwen3-vl-235b-a22b-instruct-fp8",
    "qwen3-vl-235b-a22b-thinking",
    "qwen3-vl-30b-a3b-instruct",
    "qwen3-vl-30b-a3b-thinking",
    "qwen3-vl-32b-instruct",
    "qwen3-vl-32b-thinking",
    "qwen3-vl-8b",
    "qwen3-vl-8b-instruct",
    "qwen3-vl-8b-thinking",
    "qwen3-vl-plus",
    "qwen3.5-122b-a10b",
    "qwen3.5-27b",
    "qwen3.5-35b-a3b",
    "qwen3.5-397b-a17b",
    "qwen3.5-9b",
    "qwen3.5-flash-02-23",
    "qwen3.5-plus",
    "qwen3.5-plus-02-15",
    "r1v4-lite",
    "reka-edge",
    "seed-1.6",
    "seed-1.6-flash",
    "seed-2.0-lite",
    "seed-2.0-mini",
    "sonar",
    "sonar-pro",
    "sonar-pro-search",
    "sonar-reasoning-pro",
    "spotlight",
    "ui-tars-1.5-7b",
    "us.amazon.nova-2-lite-v1:0",
    "us.amazon.nova-2-pro-preview-20251202-v1:0",
    "us.amazon.nova-lite-v1:0",
    "us.amazon.nova-premier-v1:0",
    "us.amazon.nova-pro-v1:0",
    "us.anthropic.claude-3-5-sonnet-20240620-v1:0",
    "us.anthropic.claude-3-5-sonnet-20241022-v2:0",
    "us.anthropic.claude-3-7-sonnet-20250219-v1:0",
    "us.anthropic.claude-3-haiku-20240307-v1:0",
    "us.anthropic.claude-3-opus-20240229-v1:0",
    "us.anthropic.claude-3-sonnet-20240229-v1:0",
    "us.anthropic.claude-haiku-4-5-20251001-v1:0",
    "us.anthropic.claude-opus-4-1-20250805-v1:0",
    "us.anthropic.claude-opus-4-20250514-v1:0",
    "us.anthropic.claude-opus-4-5-20251101-v1:0",
    "us.anthropic.claude-opus-4-6-v1",
    "us.anthropic.claude-sonnet-4-20250514-v1:0",
    "us.anthropic.claude-sonnet-4-5-20250929-v1:0",
    "us.anthropic.claude-sonnet-4-6",
    "us.meta.llama3-2-11b-instruct-v1:0",
    "us.meta.llama3-2-90b-instruct-v1:0",
    "v0-1.0-md",
    "v0-1.5-lg",
    "v0-1.5-md",
];

/// Models that are text-only (no vision/audio support).
///
/// Source: OpenRouter API + LiteLLM (input_modalities is ["text"] only)
pub const TEXT_ONLY_MODELS: &[&str] = &[
    "ai21.j2-mid-v1",
    "ai21.j2-ultra-v1",
    "ai21.jamba-1-5-large-v1:0",
    "ai21.jamba-1-5-mini-v1:0",
    "ai21.jamba-instruct-v1:0",
    "aion-1.0",
    "aion-1.0-mini",
    "aion-2.0",
    "aion-rp-llama-3.1-8b",
    "alia-40b-instruct_q8_0",
    "alibaba-qwen3-32b",
    "allam-1-13b-instruct",
    "amazon.nova-micro-v1:0",
    "amazon.titan-text-express-v1",
    "amazon.titan-text-lite-v1",
    "amazon.titan-text-premier-v1:0",
    "anthropic-claude-3-opus",
    "anthropic-claude-3.5-haiku",
    "anthropic-claude-3.5-sonnet",
    "anthropic-claude-3.7-sonnet",
    "anthropic.claude-3-5-haiku-20241022-v1:0",
    "anthropic.claude-instant-v1",
    "anthropic.claude-v1",
    "anthropic.claude-v2:1",
    "apac.amazon.nova-micro-v1:0",
    "apertus-70b-instruct",
    "apertus-8b-instruct",
    "babbage-002",
    "baichuan-m2-32b",
    "bodybuilder",
    "chat-bison",
    "chat-bison-001",
    "chatdolphin",
    "chronos-hermes-13b-v2",
    "claude-3-5-haiku",
    "claude-3-5-haiku@20241022",
    "claude-3-5-sonnet-latest",
    "claude-3-7-sonnet-latest",
    "code-llama-13b",
    "code-llama-13b-instruct",
    "code-llama-13b-python",
    "code-llama-34b",
    "code-llama-34b-instruct",
    "code-llama-34b-python",
    "code-llama-70b",
    "code-llama-70b-instruct",
    "code-llama-70b-python",
    "code-llama-7b",
    "code-llama-7b-instruct",
    "code-llama-7b-python",
    "code-qwen-1p5-7b",
    "codegeex4",
    "codegemma",
    "codegemma-2b",
    "codegemma-7b",
    "codellama",
    "codellama-34b-instruct",
    "codellama-34b-instruct-hf",
    "codellama-70b-instruct",
    "codellama-70b-instruct-hf",
    "codellama-7b",
    "codellama-7b-instruct-awq",
    "codellama-7b-instruct-solidity",
    "coder-large",
    "codestral",
    "codestral-2",
    "codestral-2405",
    "codestral-2501",
    "codestral-2508",
    "codestral-2@001",
    "codestral-embed",
    "codestral-latest",
    "codestral-mamba-latest",
    "codestral@2405",
    "codestral@latest",
    "cogito-671b-v2-p1",
    "cogito-v1-preview-llama-3b",
    "cogito-v1-preview-llama-70b",
    "cogito-v1-preview-llama-8b",
    "cogito-v1-preview-qwen-14b",
    "cogito-v1-preview-qwen-32b",
    "cogito-v2.1-671b",
    "cohere.command-a-03-2025",
    "cohere.command-latest",
    "cohere.command-light-text-v14",
    "cohere.command-plus-latest",
    "cohere.command-r-plus-v1:0",
    "cohere.command-r-v1:0",
    "cohere.command-text-v14",
    "command",
    "command-a",
    "command-a-03-2025",
    "command-light",
    "command-nightly",
    "command-r",
    "command-r-08-2024",
    "command-r-plus",
    "command-r-plus-08-2024",
    "command-r7b-12-2024",
    "container",
    "cydonia-24b-v4.1",
    "databricks-claude-3-7-sonnet",
    "databricks-claude-haiku-4-5",
    "databricks-claude-opus-4",
    "databricks-claude-opus-4-1",
    "databricks-claude-opus-4-5",
    "databricks-claude-sonnet-4",
    "databricks-claude-sonnet-4-1",
    "databricks-claude-sonnet-4-5",
    "databricks-gemini-2-5-flash",
    "databricks-gemini-2-5-pro",
    "databricks-gemma-3-12b",
    "databricks-gpt-5",
    "databricks-gpt-5-1",
    "databricks-gpt-5-mini",
    "databricks-gpt-5-nano",
    "databricks-gpt-oss-120b",
    "databricks-gpt-oss-20b",
    "databricks-llama-2-70b-chat",
    "databricks-llama-4-maverick",
    "databricks-meta-llama-3-1-405b-instruct",
    "databricks-meta-llama-3-1-8b-instruct",
    "databricks-meta-llama-3-3-70b-instruct",
    "databricks-meta-llama-3-70b-instruct",
    "databricks-mixtral-8x7b-instruct",
    "databricks-mpt-30b-instruct",
    "databricks-mpt-7b-instruct",
    "davinci-002",
    "dbrx-instruct",
    "deepseek-chat",
    "deepseek-chat-v3-0324",
    "deepseek-chat-v3.1",
    "deepseek-coder",
    "deepseek-coder-1b-base",
    "deepseek-coder-33b-instruct",
    "deepseek-coder-6.7b",
    "deepseek-coder-7b-base",
    "deepseek-coder-7b-base-v1p5",
    "deepseek-coder-7b-instruct-v1p5",
    "deepseek-coder-v2-base",
    "deepseek-coder-v2-instruct",
    "deepseek-coder-v2-lite-base",
    "deepseek-coder-v2-lite-instruct",
    "deepseek-llama3.3-70b",
    "deepseek-prover-v2",
    "deepseek-prover-v2-671b",
    "deepseek-r1",
    "deepseek-r1-0528",
    "deepseek-r1-0528-distill-qwen3-8b",
    "deepseek-r1-0528-maas",
    "deepseek-r1-0528-qwen3-8b",
    "deepseek-r1-0528-tput",
    "deepseek-r1-0528-turbo",
    "deepseek-r1-671b",
    "deepseek-r1-7b-qwen",
    "deepseek-r1-8b",
    "deepseek-r1-basic",
    "deepseek-r1-distill-llama-70b",
    "deepseek-r1-distill-llama-8b",
    "deepseek-r1-distill-qwen-1.5b",
    "deepseek-r1-distill-qwen-14b",
    "deepseek-r1-distill-qwen-1p5b",
    "deepseek-r1-distill-qwen-32b",
    "deepseek-r1-distill-qwen-7b",
    "deepseek-r1-turbo",
    "deepseek-r1t2-chimera",
    "deepseek-reasoner",
    "deepseek-v2-lite-chat",
    "deepseek-v2p5",
    "deepseek-v3",
    "deepseek-v3-0324",
    "deepseek-v3-2-251201",
    "deepseek-v3-turbo",
    "deepseek-v3.1",
    "deepseek-v3.1-maas",
    "deepseek-v3.1-nex-n1",
    "deepseek-v3.1-terminus",
    "deepseek-v3.1:671b-cloud",
    "deepseek-v3.2",
    "deepseek-v3.2-exp",
    "deepseek-v3.2-maas",
    "deepseek-v3.2-speciale",
    "deepseek-v3p1",
    "deepseek-v3p1-terminus",
    "deepseek-v3p2",
    "deepseek.v3-v1:0",
    "deepseek.v3.2",
    "devstral-2512",
    "devstral-latest",
    "devstral-medium",
    "devstral-medium-2507",
    "devstral-medium-latest",
    "devstral-small",
    "devstral-small-2505",
    "devstral-small-2507",
    "devstral-small-latest",
    "dobby-mini-unhinged-plus-llama-3-1-8b",
    "dobby-unhinged-llama-3-3-70b-new",
    "dolphin",
    "dolphin-2-9-2-qwen2-72b",
    "dolphin-2p6-mixtral-8x7b",
    "dolphin-mistral-24b-venice-edition:free",
    "dolphin3-8b",
    "embed-v4.0",
    "ernie-4.5-21b-a3b",
    "ernie-4.5-21b-a3b-thinking",
    "ernie-4.5-300b-a47b",
    "ernie-4.5-300b-a47b-paddle",
    "ernie-4p5-21b-a3b-pt",
    "ernie-4p5-300b-a47b-pt",
    "eu.amazon.nova-micro-v1:0",
    "eu.anthropic.claude-3-5-haiku-20241022-v1:0",
    "eu.deepseek.v3.2",
    "eu.meta.llama3-2-1b-instruct-v1:0",
    "eu.meta.llama3-2-3b-instruct-v1:0",
    "eu.mistral.pixtral-large-2502-v1:0",
    "fare-20b",
    "firefunction-v1",
    "firefunction-v2",
    "firellava-13b",
    "firesearch-ocr-v6",
    "fireworks-ai-4.1b-to-16b",
    "fireworks-ai-56b-to-176b",
    "fireworks-ai-above-16b",
    "fireworks-ai-default",
    "fireworks-ai-embedding-150m-to-350m",
    "fireworks-ai-embedding-up-to-150m",
    "fireworks-ai-moe-up-to-56b",
    "fireworks-ai-up-to-4b",
    "flan-t5-xl-3b",
    "flux-1-dev",
    "flux-1-dev-controlnet-union",
    "flux-1-schnell",
    "ft:babbage-002",
    "ft:davinci-002",
    "ft:gpt-3.5-turbo",
    "ft:gpt-3.5-turbo-0125",
    "ft:gpt-3.5-turbo-0613",
    "ft:gpt-3.5-turbo-1106",
    "ft:gpt-4-0613",
    "ft:gpt-4.1-2025-04-14",
    "ft:gpt-4.1-mini-2025-04-14",
    "ft:gpt-4.1-nano-2025-04-14",
    "ft:gpt-4o-2024-11-20",
    "ft:gpt-4o-mini-2024-07-18",
    "ft:o4-mini-2025-04-16",
    "gemma-2-27b-it",
    "gemma-2-9b-it",
    "gemma-2b-it",
    "gemma-3-4b-it-gguf",
    "gemma-3n-e2b-it:free",
    "gemma-3n-e4b-it",
    "gemma-3n-e4b-it:free",
    "gemma-7b",
    "gemma-7b-it",
    "gemma-sea-lion-v4-27b-it",
    "gemma2-9b-it",
    "gigachat-2-lite",
    "glm-4-32b",
    "glm-4-32b-0414-128k",
    "glm-4-7-251222",
    "glm-4.5",
    "glm-4.5-air",
    "glm-4.5-air-fp8",
    "glm-4.5-air:free",
    "glm-4.5-airx",
    "glm-4.5-flash",
    "glm-4.5-x",
    "glm-4.6",
    "glm-4.6:exacto",
    "glm-4.7-fp8",
    "glm-4.7-maas",
    "glm-4p5",
    "glm-4p5-air",
    "glm-4p5v",
    "glm-4p6",
    "glm-4p7",
    "glm-5",
    "glm-5-code",
    "glm-5-maas",
    "glm-5-turbo",
    "goliath-120b",
    "gpt-3.5-turbo",
    "gpt-3.5-turbo-0125",
    "gpt-3.5-turbo-0613",
    "gpt-3.5-turbo-1106",
    "gpt-3.5-turbo-16k",
    "gpt-3.5-turbo-instruct",
    "gpt-3.5-turbo-instruct-0914",
    "gpt-35-turbo",
    "gpt-35-turbo-0125",
    "gpt-35-turbo-1106",
    "gpt-35-turbo-16k",
    "gpt-35-turbo-16k-0613",
    "gpt-35-turbo-instruct",
    "gpt-35-turbo-instruct-0914",
    "gpt-4",
    "gpt-4-0125-preview",
    "gpt-4-0314",
    "gpt-4-0613",
    "gpt-4-1106-preview",
    "gpt-4-32k",
    "gpt-4-32k-0613",
    "gpt-4-o-preview",
    "gpt-4-turbo-preview",
    "gpt-41-copilot",
    "gpt-audio-1.5-2026-02-23",
    "gpt-oss-120b-maas",
    "gpt-oss-120b-mxfp-gguf",
    "gpt-oss-120b:free",
    "gpt-oss-20b-maas",
    "gpt-oss-20b-mxfp4-gguf",
    "gpt-oss-20b:free",
    "gpt-oss-safeguard-120b",
    "gpt-oss-safeguard-20b",
    "gpt-oss:120b-cloud",
    "gpt-oss:20b-cloud",
    "granite-13b-chat-v2",
    "granite-13b-instruct-v2",
    "granite-3-3-8b-instruct",
    "granite-3-8b-instruct",
    "granite-3.3-8b-instruct",
    "granite-4-h-small",
    "granite-4.0-h-micro",
    "granite-guardian-3-2-2b",
    "granite-guardian-3-3-8b",
    "granite-ttm-1024-96-r2",
    "granite-ttm-1536-96-r2",
    "granite-ttm-512-96-r2",
    "grok-2",
    "grok-2-1212",
    "grok-2-latest",
    "grok-3",
    "grok-3-beta",
    "grok-3-fast",
    "grok-3-fast-beta",
    "grok-3-fast-latest",
    "grok-3-latest",
    "grok-3-mini",
    "grok-3-mini-beta",
    "grok-3-mini-fast",
    "grok-3-mini-fast-beta",
    "grok-3-mini-fast-latest",
    "grok-3-mini-latest",
    "grok-4-0709",
    "grok-4-1-fast-non-reasoning",
    "grok-4-1-fast-reasoning",
    "grok-4-fast-non-reasoning",
    "grok-4-fast-reasoning",
    "grok-4-latest",
    "grok-code-fast",
    "grok-code-fast-1",
    "grok-code-fast-1-0825",
    "hermes-2-pro-llama-3-8b",
    "hermes-2-pro-mistral-7b",
    "hermes-3-llama-3.1-405b",
    "hermes-3-llama-3.1-405b:free",
    "hermes-3-llama-3.1-70b",
    "hermes-4-405b",
    "hermes-4-70b",
    "hermes3-405b",
    "hermes3-70b",
    "hermes3-8b",
    "hunyuan-a13b-instruct",
    "inflection-3-pi",
    "inflection-3-productivity",
    "intellect-3",
    "internlm2_5-20b-chat",
    "internvl3-38b",
    "internvl3-78b",
    "internvl3-8b",
    "j2-light",
    "j2-mid",
    "j2-ultra",
    "jais-13b-chat",
    "jais-30b-chat",
    "jamba-1.5",
    "jamba-1.5-large",
    "jamba-1.5-large@001",
    "jamba-1.5-mini",
    "jamba-1.5-mini@001",
    "jamba-instruct",
    "jamba-large-1.6",
    "jamba-large-1.7",
    "jamba-mini-1.6",
    "jamba-mini-1.7",
    "kat-coder",
    "kat-coder-pro",
    "kat-coder-pro-v2",
    "kat-dev-32b",
    "kat-dev-72b-exp",
    "kimi-k2",
    "kimi-k2-0711-preview",
    "kimi-k2-0905",
    "kimi-k2-0905-preview",
    "kimi-k2-instruct",
    "kimi-k2-instruct-0905",
    "kimi-k2-thinking",
    "kimi-k2-thinking-251104",
    "kimi-k2-thinking-maas",
    "kimi-k2-thinking-turbo",
    "kimi-k2-turbo-preview",
    "kimi-k2p5",
    "l3-70b-euryale-v2.1",
    "l3-8b-lunaris",
    "l3-8b-lunaris-v1-turbo",
    "l3-8b-stheno-v3.2",
    "l3-euryale-70b",
    "l3-lunaris-8b",
    "l3.1-70b-euryale-v2.2",
    "l3.1-70b-hanami-x1",
    "l3.1-euryale-70b",
    "l3.3-70b-euryale-v2.3",
    "l3.3-euryale-70b",
    "l31-70b-euryale-v2.2",
    "labs-devstral-small-2512",
    "lfm-2-24b-a2b",
    "lfm-2.2-6b",
    "lfm-2.5-1.2b-instruct:free",
    "lfm-2.5-1.2b-thinking:free",
    "lfm-40b",
    "lfm-7b",
    "lfm2-8b-a1b",
    "llama-2-13b",
    "llama-2-13b-chat",
    "llama-2-13b-chat-hf",
    "llama-2-70b",
    "llama-2-70b-chat",
    "llama-2-70b-chat-hf",
    "llama-2-7b",
    "llama-2-7b-chat",
    "llama-2-7b-chat-fp16",
    "llama-2-7b-chat-hf",
    "llama-2-7b-chat-int8",
    "llama-3-2-1b-instruct",
    "llama-3-2-3b-instruct",
    "llama-3-3-70b-instruct",
    "llama-3-70b",
    "llama-3-70b-instruct",
    "llama-3-8b",
    "llama-3-8b-instruct",
    "llama-3.1-70b",
    "llama-3.1-70b-instruct",
    "llama-3.1-8b",
    "llama-3.1-8b-instant",
    "llama-3.1-8b-instruct",
    "llama-3.1-nemotron-70b-instruct",
    "llama-3.1-nemotron-ultra-253b-v1",
    "llama-3.2-1b",
    "llama-3.2-1b-instruct",
    "llama-3.2-3b",
    "llama-3.2-3b-instruct",
    "llama-3.2-3b-instruct-turbo",
    "llama-3.2-3b-instruct:free",
    "llama-3.3-70b",
    "llama-3.3-70b-instruct",
    "llama-3.3-70b-instruct-turbo",
    "llama-3.3-70b-instruct-turbo-free",
    "llama-3.3-70b-instruct:free",
    "llama-3.3-70b-versatile",
    "llama-3.3-8b-instruct",
    "llama-3.3-nemotron-super-49b-v1",
    "llama-3.3-nemotron-super-49b-v1.5",
    "llama-4-maverick-17b",
    "llama-4-maverick-17b-128e-instruct-maas",
    "llama-4-maverick-17b-16e-instruct-maas",
    "llama-4-scout-17b-128e-instruct-maas",
    "llama-4-scout-17b-16e-instruct-fp8",
    "llama-4-scout-17b-16e-instruct-maas",
    "llama-guard-2-8b",
    "llama-guard-3-1b",
    "llama-guard-3-8b",
    "llama-v2-13b",
    "llama-v2-13b-chat",
    "llama-v2-70b",
    "llama-v2-70b-chat",
    "llama-v2-7b",
    "llama-v2-7b-chat",
    "llama-v3-70b-instruct",
    "llama-v3-70b-instruct-hf",
    "llama-v3-8b",
    "llama-v3-8b-instruct-hf",
    "llama-v3p1-405b-instruct",
    "llama-v3p1-405b-instruct-long",
    "llama-v3p1-70b-instruct",
    "llama-v3p1-70b-instruct-1b",
    "llama-v3p1-8b-instruct",
    "llama-v3p1-nemotron-70b-instruct",
    "llama-v3p2-1b",
    "llama-v3p2-1b-instruct",
    "llama-v3p2-3b",
    "llama-v3p2-3b-instruct",
    "llama-v3p3-70b-instruct",
    "llama2",
    "llama2-70b-chat",
    "llama2-uncensored",
    "llama2:13b",
    "llama2:70b",
    "llama2:7b",
    "llama3",
    "llama3-405b-instruct-maas",
    "llama3-70b",
    "llama3-70b-instruct-maas",
    "llama3-8b",
    "llama3-8b-instruct",
    "llama3-8b-instruct-maas",
    "llama3.1",
    "llama3.1-405b",
    "llama3.1-405b-instruct-fp8",
    "llama3.1-70b",
    "llama3.1-70b-instruct-fp8",
    "llama3.1-8b",
    "llama3.1-8b-instruct",
    "llama3.1-nemotron-70b-instruct-fp8",
    "llama3.2-1b",
    "llama3.2-3b",
    "llama3.2-3b-instruct",
    "llama3.3-70b",
    "llama3.3-70b-instruct",
    "llama3.3-70b-instruct-fp8",
    "llama3:70b",
    "llama3:8b",
    "llama4-maverick-instruct-basic",
    "llama4-scout-instruct-basic",
    "llamaguard-7b",
    "llava-yi-34b",
    "llemma_7b",
    "longcat-flash-chat",
    "luminous-base",
    "luminous-base-control",
    "luminous-extended",
    "luminous-extended-control",
    "luminous-supreme",
    "luminous-supreme-control",
    "maestro-reasoning",
    "magistral-medium",
    "magistral-medium-1-2-2509",
    "magistral-medium-2506",
    "magistral-medium-2509",
    "magistral-medium-latest",
    "magistral-small",
    "magistral-small-1-2-2509",
    "magistral-small-2506",
    "magistral-small-latest",
    "magnum-v4-72b",
    "mai-ds-r1",
    "mamba-codestral-7b-v0.1",
    "medlm-large",
    "medlm-medium",
    "mercury",
    "mercury-2",
    "mercury-coder",
    "mercury-coder-small",
    "meta-llama-3-70b-instruct",
    "meta-llama-3-8b-instruct",
    "meta-llama-3.1-405b-instruct",
    "meta-llama-3.1-405b-instruct-turbo",
    "meta-llama-3.1-70b-instruct",
    "meta-llama-3.1-70b-instruct-turbo",
    "meta-llama-3.1-8b-instruct",
    "meta-llama-3.1-8b-instruct-turbo",
    "meta-llama-3.2-1b-instruct",
    "meta-llama-3.2-3b-instruct",
    "meta-llama-3.3-70b-instruct",
    "meta-llama-3_1-70b-instruct",
    "meta-llama-3_3-70b-instruct",
    "meta-llama-guard-3-8b",
    "meta-textgeneration-llama-2-13b",
    "meta-textgeneration-llama-2-13b-f",
    "meta-textgeneration-llama-2-70b",
    "meta-textgeneration-llama-2-70b-b-f",
    "meta-textgeneration-llama-2-7b",
    "meta-textgeneration-llama-2-7b-f",
    "meta.llama-3.1-405b-instruct",
    "meta.llama-3.2-90b-vision-instruct",
    "meta.llama-3.3-70b-instruct",
    "meta.llama-4-maverick-17b-128e-instruct-fp8",
    "meta.llama-4-scout-17b-16e-instruct",
    "meta.llama2-13b-chat-v1",
    "meta.llama2-70b-chat-v1",
    "meta.llama3-1-405b-instruct-v1:0",
    "meta.llama3-1-70b-instruct-v1:0",
    "meta.llama3-1-8b-instruct-v1:0",
    "meta.llama3-2-1b-instruct-v1:0",
    "meta.llama3-2-3b-instruct-v1:0",
    "meta.llama3-3-70b-instruct-v1:0",
    "meta.llama3-70b-instruct-v1:0",
    "meta.llama3-8b-instruct-v1:0",
    "meta.llama4-maverick-17b-instruct-v1:0",
    "meta.llama4-scout-17b-instruct-v1:0",
    "mimo-v2-flash",
    "mimo-v2-pro",
    "minimax-m1",
    "minimax-m1-80k",
    "minimax-m2",
    "minimax-m2-her",
    "minimax-m2-maas",
    "minimax-m2.1-lightning",
    "minimax-m2.5",
    "minimax-m2.5-lightning",
    "minimax-m2.5:free",
    "minimax-m2.7",
    "minimax-m2p1",
    "minimax.minimax-m2",
    "minimax.minimax-m2.1",
    "ministral-3-14b-instruct-2512",
    "ministral-3-3b-instruct-2512",
    "ministral-3-8b-instruct-2512",
    "ministral-3b",
    "mistral",
    "mistral-7b",
    "mistral-7b-instruct",
    "mistral-7b-instruct-4k",
    "mistral-7b-instruct-v0.1",
    "mistral-7b-instruct-v0.2",
    "mistral-7b-instruct-v0.3",
    "mistral-7b-instruct-v0p2",
    "mistral-7b-instruct-v3",
    "mistral-7b-v0.1",
    "mistral-7b-v0.3",
    "mistral-7b-v0p2",
    "mistral-embed",
    "mistral-large",
    "mistral-large-2402",
    "mistral-large-2407",
    "mistral-large-2411",
    "mistral-large-3-fp8",
    "mistral-large-instruct-2407",
    "mistral-large2",
    "mistral-large@2407",
    "mistral-large@2411-001",
    "mistral-large@latest",
    "mistral-medium",
    "mistral-medium-2312",
    "mistral-medium-2505",
    "mistral-medium-3@001",
    "mistral-nemo",
    "mistral-nemo-base-2407",
    "mistral-nemo-instruct-2407",
    "mistral-nemo@2407",
    "mistral-nemo@latest",
    "mistral-saba",
    "mistral-saba-24b",
    "mistral-small",
    "mistral-small-24b-instruct-2501",
    "mistral-small-2503@001",
    "mistral-small-3-1-24b-instruct-2503",
    "mistral-small-creative",
    "mistral-tiny",
    "mistral.devstral-2-123b",
    "mistral.magistral-small-2509",
    "mistral.ministral-3-14b-instruct",
    "mistral.ministral-3-3b-instruct",
    "mistral.ministral-3-8b-instruct",
    "mistral.mistral-7b-instruct-v0:2",
    "mistral.mistral-large-2402-v1:0",
    "mistral.mistral-large-2407-v1:0",
    "mistral.mistral-large-3-675b-instruct",
    "mistral.mistral-small-2402-v1:0",
    "mistral.mixtral-8x7b-instruct-v0:1",
    "mixtral-8x22b",
    "mixtral-8x22b-instruct",
    "mixtral-8x22b-instruct-hf",
    "mixtral-8x22b-instruct-v0.1",
    "mixtral-8x7b",
    "mixtral-8x7b-instruct",
    "mixtral-8x7b-instruct-hf",
    "mixtral-8x7b-instruct-v0.1",
    "model_router",
    "moonshot-v1-128k",
    "moonshot-v1-128k-0430",
    "moonshot-v1-32k",
    "moonshot-v1-32k-0430",
    "moonshot-v1-8k",
    "moonshot-v1-8k-0430",
    "moonshot-v1-auto",
    "moonshot.kimi-k2-thinking",
    "moonshotai.kimi-k2-thinking",
    "morph-v3-fast",
    "morph-v3-large",
    "mt0-xxl-13b",
    "mythomax-l2-13b",
    "nemotron-3-nano-30b-a3b",
    "nemotron-3-nano-30b-a3b:free",
    "nemotron-3-super-120b-a12b",
    "nemotron-3-super-120b-a12b:free",
    "nemotron-nano-9b-v2",
    "nemotron-nano-9b-v2:free",
    "nemotron-nano-v2-12b-vl",
    "nous-capybara-7b-v1p9",
    "nous-hermes-2-mixtral-8x7b-dpo",
    "nous-hermes-2-yi-34b",
    "nous-hermes-llama2-13b",
    "nous-hermes-llama2-70b",
    "nous-hermes-llama2-7b",
    "nova-micro",
    "nova-micro-v1",
    "nvidia-nemotron-nano-12b-v2",
    "nvidia-nemotron-nano-9b-v2",
    "nvidia.nemotron-nano-3-30b",
    "nvidia.nemotron-nano-9b-v2",
    "o1-mini",
    "o1-mini-2024-09-12",
    "o1-preview",
    "o1-preview-2024-09-12",
    "o3-mini",
    "o3-mini-2025-01-31",
    "o3-mini-high",
    "olmo-2-0325-32b-instruct",
    "olmo-3-32b-think",
    "olmo-3-7b-instruct",
    "olmo-3-7b-think",
    "olmo-3.1-32b-instruct",
    "olmo-3.1-32b-think",
    "olmocr-7b-0725-fp8",
    "open-codestral-mamba",
    "open-mistral-7b",
    "open-mistral-nemo",
    "open-mistral-nemo-2407",
    "open-mixtral-8x22b",
    "open-mixtral-8x7b",
    "openai-gpt-4o",
    "openai-gpt-4o-mini",
    "openai-o3",
    "openai-o3-mini",
    "openai.gpt-oss-120b",
    "openai.gpt-oss-120b-1:0",
    "openai.gpt-oss-20b",
    "openai.gpt-oss-20b-1:0",
    "openai.gpt-oss-safeguard-120b",
    "openai.gpt-oss-safeguard-20b",
    "openchat-3p5-0106-7b",
    "openhermes-2-mistral-7b",
    "openhermes-2p5-mistral-7b",
    "openorca-7b",
    "openthinker-7b",
    "orca-mini",
    "palmyra-x5",
    "phi-2-3b",
    "phi-3-medium-128k-instruct",
    "phi-3-medium-4k-instruct",
    "phi-3-mini-128k-instruct",
    "phi-3-mini-4k-instruct",
    "phi-3-small-128k-instruct",
    "phi-3-small-8k-instruct",
    "phi-3-vision-128k-instruct",
    "phi-3.5-mini-instruct",
    "phi-3.5-moe-instruct",
    "phi-4",
    "phi-4-mini-instruct",
    "phi-4-mini-reasoning",
    "phi-4-reasoning",
    "phind-code-llama-34b-python-v1",
    "phind-code-llama-34b-v1",
    "phind-code-llama-34b-v2",
    "pplx-70b-chat",
    "pplx-70b-online",
    "pplx-7b-chat",
    "pplx-7b-online",
    "pythia-12b",
    "qwen-2.5-72b-instruct",
    "qwen-2.5-7b-instruct",
    "qwen-2.5-coder-32b-instruct",
    "qwen-3-14b",
    "qwen-3-235b",
    "qwen-3-30b",
    "qwen-3-32b",
    "qwen-coder",
    "qwen-flash",
    "qwen-flash-2025-07-28",
    "qwen-max",
    "qwen-mt-plus",
    "qwen-plus",
    "qwen-plus-2025-01-25",
    "qwen-plus-2025-04-28",
    "qwen-plus-2025-07-14",
    "qwen-plus-2025-07-28",
    "qwen-plus-2025-07-28:thinking",
    "qwen-plus-2025-09-11",
    "qwen-plus-latest",
    "qwen-qwq-32b-preview",
    "qwen-sea-lion-v4-32b-it",
    "qwen-turbo",
    "qwen-turbo-2024-11-01",
    "qwen-turbo-2025-04-28",
    "qwen-turbo-latest",
    "qwen-v2p5-14b-instruct",
    "qwen-v2p5-7b",
    "qwen.qwen3-235b-a22b-2507-v1:0",
    "qwen.qwen3-32b-v1:0",
    "qwen.qwen3-coder-30b-a3b-v1:0",
    "qwen.qwen3-coder-480b-a35b-v1:0",
    "qwen.qwen3-coder-next",
    "qwen.qwen3-next-80b-a3b",
    "qwen1p5-72b-chat",
    "qwen2-72b-instruct",
    "qwen2-7b-instruct",
    "qwen2-vl-2b-instruct",
    "qwen2.5-32b-instruct",
    "qwen2.5-72b-instruct",
    "qwen2.5-72b-instruct-turbo",
    "qwen2.5-7b-instruct",
    "qwen2.5-7b-instruct-turbo",
    "qwen2.5-coder-32b-instruct",
    "qwen2.5-coder-3b-instruct",
    "qwen2.5-coder-7b",
    "qwen2.5-coder-7b-instruct",
    "qwen25-coder-32b-instruct",
    "qwen2p5-0p5b-instruct",
    "qwen2p5-14b",
    "qwen2p5-1p5b-instruct",
    "qwen2p5-32b",
    "qwen2p5-32b-instruct",
    "qwen2p5-72b",
    "qwen2p5-72b-instruct",
    "qwen2p5-7b-instruct",
    "qwen2p5-coder-0p5b",
    "qwen2p5-coder-0p5b-instruct",
    "qwen2p5-coder-14b",
    "qwen2p5-coder-14b-instruct",
    "qwen2p5-coder-1p5b",
    "qwen2p5-coder-1p5b-instruct",
    "qwen2p5-coder-32b",
    "qwen2p5-coder-32b-instruct",
    "qwen2p5-coder-32b-instruct-128k",
    "qwen2p5-coder-32b-instruct-32k-rope",
    "qwen2p5-coder-32b-instruct-64k",
    "qwen2p5-coder-3b",
    "qwen2p5-coder-3b-instruct",
    "qwen2p5-coder-7b",
    "qwen2p5-coder-7b-instruct",
    "qwen2p5-math-72b-instruct",
    "qwen2p5-vl-32b-instruct",
    "qwen2p5-vl-3b-instruct",
    "qwen2p5-vl-72b-instruct",
    "qwen2p5-vl-7b-instruct",
    "qwen3-0p6b",
    "qwen3-14b",
    "qwen3-1p7b",
    "qwen3-1p7b-fp8-draft",
    "qwen3-1p7b-fp8-draft-131072",
    "qwen3-1p7b-fp8-draft-40960",
    "qwen3-235b-a22b",
    "qwen3-235b-a22b-2507",
    "qwen3-235b-a22b-fp8",
    "qwen3-235b-a22b-fp8-tput",
    "qwen3-235b-a22b-instruct-2507",
    "qwen3-235b-a22b-instruct-2507-maas",
    "qwen3-235b-a22b-instruct-2507-tput",
    "qwen3-235b-a22b-thinking-2507",
    "qwen3-30b-a3b",
    "qwen3-30b-a3b-fp8",
    "qwen3-30b-a3b-instruct-2507",
    "qwen3-30b-a3b-thinking-2507",
    "qwen3-32b",
    "qwen3-32b-fp8",
    "qwen3-4b",
    "qwen3-4b-fp8",
    "qwen3-4b-instruct-2507",
    "qwen3-4b-instruct-2507-gguf",
    "qwen3-8b",
    "qwen3-8b-fp8",
    "qwen3-coder",
    "qwen3-coder-30b-a3b-instruct",
    "qwen3-coder-30b-a3b-instruct-gguf",
    "qwen3-coder-480b-a35b-instruct",
    "qwen3-coder-480b-a35b-instruct-fp8",
    "qwen3-coder-480b-a35b-instruct-maas",
    "qwen3-coder-480b-a35b-instruct-turbo",
    "qwen3-coder-480b-instruct-bf16",
    "qwen3-coder-flash",
    "qwen3-coder-flash-2025-07-28",
    "qwen3-coder-next",
    "qwen3-coder-plus",
    "qwen3-coder-plus-2025-07-22",
    "qwen3-coder:480b-cloud",
    "qwen3-coder:free",
    "qwen3-max",
    "qwen3-max-2026-01-23",
    "qwen3-max-preview",
    "qwen3-max-thinking",
    "qwen3-next-80b-a3b-instruct",
    "qwen3-next-80b-a3b-instruct-maas",
    "qwen3-next-80b-a3b-instruct:free",
    "qwen3-next-80b-a3b-thinking",
    "qwen3-next-80b-a3b-thinking-maas",
    "qwen3.6-plus-preview:free",
    "qwerky-72b",
    "qwerky-qwq-32b",
    "qwq-32b",
    "qwq-plus",
    "reka-core",
    "reka-flash",
    "reka-flash-3",
    "relace-apply-3",
    "relace-search",
    "remm-slerp-l2-13b",
    "rnj-1-instruct",
    "rocinante-12b",
    "rolm-ocr",
    "router",
    "salamandra-7b-instruct-tools-16k",
    "sarvam-m",
    "skyfall-36b-v2",
    "snorkel-mistral-7b-pairrm-dpo",
    "snowflake-arctic",
    "snowflake-llama-3.1-405b",
    "snowflake-llama-3.3-70b",
    "solar-pro-3",
    "sonar-deep-research",
    "sonar-medium-chat",
    "sonar-medium-online",
    "sonar-reasoning",
    "sonar-small-chat",
    "sonar-small-online",
    "stablecode-3b",
    "starcoder-16b",
    "starcoder-7b",
    "starcoder2-15b",
    "starcoder2-3b",
    "starcoder2-7b",
    "step-3.5-flash",
    "step-3.5-flash:free",
    "text-bison",
    "text-bison-001",
    "text-bison-safety-off",
    "text-bison-safety-recitation-off",
    "text-unicorn",
    "text-unicorn@001",
    "titan-embed-text-v2",
    "together-ai-21.1b-41b",
    "together-ai-4.1b-8b",
    "together-ai-41.1b-80b",
    "together-ai-8.1b-21b",
    "together-ai-81.1b-110b",
    "together-ai-up-to-4b",
    "tongyi-deepresearch-30b-a3b",
    "toppy-m-7b",
    "trinity-large-preview:free",
    "trinity-large-thinking",
    "trinity-mini",
    "trinity-mini:free",
    "unslopnemo-12b",
    "us.amazon.nova-micro-v1:0",
    "us.anthropic.claude-3-5-haiku-20241022-v1:0",
    "us.deepseek.r1-v1:0",
    "us.deepseek.v3.2",
    "us.meta.llama3-1-405b-instruct-v1:0",
    "us.meta.llama3-1-70b-instruct-v1:0",
    "us.meta.llama3-1-8b-instruct-v1:0",
    "us.meta.llama3-2-1b-instruct-v1:0",
    "us.meta.llama3-2-3b-instruct-v1:0",
    "us.meta.llama3-3-70b-instruct-v1:0",
    "us.meta.llama4-maverick-17b-instruct-v1:0",
    "us.meta.llama4-scout-17b-instruct-v1:0",
    "us.mistral.pixtral-large-2502-v1:0",
    "us.writer.palmyra-x4-v1:0",
    "us.writer.palmyra-x5-v1:0",
    "vicuna",
    "virtuoso-large",
    "weaver",
    "wizardlm-2-8x22b",
    "writer.palmyra-x4-v1:0",
    "writer.palmyra-x5-v1:0",
    "xai.grok-3",
    "xai.grok-3-fast",
    "xai.grok-3-mini",
    "xai.grok-3-mini-fast",
    "xai.grok-4",
    "yi-34b",
    "yi-34b-200k-capybara",
    "yi-34b-chat",
    "yi-6b",
    "yi-large",
    "zai-glm-4.6",
    "zai-glm-4.7",
    "zai.glm-4.7",
    "zai.glm-4.7-flash",
    "zephyr-7b-beta",
];

/// Models that support audio input.
///
/// Source: OpenRouter API + LiteLLM (input_modalities contains "audio")
pub const AUDIO_MODELS: &[&str] = &[
    "auto",
    "gemini-2.0-flash",
    "gemini-2.0-flash-001",
    "gemini-2.0-flash-lite-001",
    "gemini-2.5-flash",
    "gemini-2.5-flash-lite",
    "gemini-2.5-flash-lite-preview-09-2025",
    "gemini-2.5-flash-native-audio-latest",
    "gemini-2.5-flash-native-audio-preview-09-2025",
    "gemini-2.5-flash-native-audio-preview-12-2025",
    "gemini-2.5-pro",
    "gemini-2.5-pro-preview",
    "gemini-2.5-pro-preview-05-06",
    "gemini-3-flash-preview",
    "gemini-3-pro-preview",
    "gemini-3.1-flash-lite-preview",
    "gemini-3.1-flash-live-preview",
    "gemini-3.1-pro-preview",
    "gemini-3.1-pro-preview-customtools",
    "gemini-pro-latest",
    "gpt-4o",
    "gpt-4o-audio-preview",
    "gpt-4o-audio-preview-2024-12-17",
    "gpt-4o-audio-preview-2025-06-03",
    "gpt-4o-mini-audio-preview",
    "gpt-4o-mini-audio-preview-2024-12-17",
    "gpt-4o-mini-realtime-preview",
    "gpt-4o-mini-realtime-preview-2024-12-17",
    "gpt-4o-realtime-preview",
    "gpt-4o-realtime-preview-2024-10-01",
    "gpt-4o-realtime-preview-2024-12-17",
    "gpt-4o-realtime-preview-2025-06-03",
    "gpt-audio",
    "gpt-audio-1.5",
    "gpt-audio-2025-08-28",
    "gpt-audio-mini",
    "gpt-audio-mini-2025-10-06",
    "gpt-audio-mini-2025-12-15",
    "gpt-realtime",
    "gpt-realtime-1.5",
    "gpt-realtime-1.5-2026-02-23",
    "gpt-realtime-2025-08-28",
    "gpt-realtime-mini",
    "gpt-realtime-mini-2025-10-06",
    "gpt-realtime-mini-2025-12-15",
    "mimo-v2-omni",
    "mistral.voxtral-mini-3b-2507",
    "mistral.voxtral-small-24b-2507",
    "phi-4-multimodal-instruct",
    "qwen2-audio-7b-instruct",
    "qwen3-omni-30b-a3b-instruct",
    "qwen3-omni-30b-a3b-thinking",
    "voxtral-small-24b-2507",
];

/// All known models (union of all lists).
pub const ALL_MODELS: &[&str] = &[
    "ai21.j2-mid-v1",
    "ai21.j2-ultra-v1",
    "ai21.jamba-1-5-large-v1:0",
    "ai21.jamba-1-5-mini-v1:0",
    "ai21.jamba-instruct-v1:0",
    "aion-1.0",
    "aion-1.0-mini",
    "aion-2.0",
    "aion-rp-llama-3.1-8b",
    "alia-40b-instruct_q8_0",
    "alibaba-qwen3-32b",
    "allam-1-13b-instruct",
    "amazon.nova-2-lite-v1:0",
    "amazon.nova-2-pro-preview-20251202-v1:0",
    "amazon.nova-lite-v1:0",
    "amazon.nova-micro-v1:0",
    "amazon.nova-pro-v1:0",
    "amazon.titan-text-express-v1",
    "amazon.titan-text-lite-v1",
    "amazon.titan-text-premier-v1:0",
    "anthropic-claude-3-opus",
    "anthropic-claude-3.5-haiku",
    "anthropic-claude-3.5-sonnet",
    "anthropic-claude-3.7-sonnet",
    "anthropic.claude-3-5-haiku-20241022-v1:0",
    "anthropic.claude-3-5-sonnet-20240620-v1:0",
    "anthropic.claude-3-5-sonnet-20241022-v2:0",
    "anthropic.claude-3-7-sonnet-20240620-v1:0",
    "anthropic.claude-3-7-sonnet-20250219-v1:0",
    "anthropic.claude-3-haiku-20240307-v1:0",
    "anthropic.claude-3-opus-20240229-v1:0",
    "anthropic.claude-3-sonnet-20240229-v1:0",
    "anthropic.claude-haiku-4-5-20251001-v1:0",
    "anthropic.claude-haiku-4-5@20251001",
    "anthropic.claude-instant-v1",
    "anthropic.claude-opus-4-1-20250805-v1:0",
    "anthropic.claude-opus-4-20250514-v1:0",
    "anthropic.claude-opus-4-5-20251101-v1:0",
    "anthropic.claude-opus-4-6-v1",
    "anthropic.claude-sonnet-4-20250514-v1:0",
    "anthropic.claude-sonnet-4-5-20250929-v1:0",
    "anthropic.claude-sonnet-4-6",
    "anthropic.claude-v1",
    "anthropic.claude-v2:1",
    "apac.amazon.nova-2-lite-v1:0",
    "apac.amazon.nova-2-pro-preview-20251202-v1:0",
    "apac.amazon.nova-lite-v1:0",
    "apac.amazon.nova-micro-v1:0",
    "apac.amazon.nova-pro-v1:0",
    "apac.anthropic.claude-3-5-sonnet-20240620-v1:0",
    "apac.anthropic.claude-3-5-sonnet-20241022-v2:0",
    "apac.anthropic.claude-3-haiku-20240307-v1:0",
    "apac.anthropic.claude-3-sonnet-20240229-v1:0",
    "apac.anthropic.claude-haiku-4-5-20251001-v1:0",
    "apac.anthropic.claude-sonnet-4-20250514-v1:0",
    "apertus-70b-instruct",
    "apertus-8b-instruct",
    "au.anthropic.claude-haiku-4-5-20251001-v1:0",
    "au.anthropic.claude-opus-4-6-v1",
    "au.anthropic.claude-sonnet-4-5-20250929-v1:0",
    "au.anthropic.claude-sonnet-4-6",
    "auto",
    "autoglm-phone-9b-multilingual",
    "babbage-002",
    "baichuan-m2-32b",
    "bodybuilder",
    "chat-bison",
    "chat-bison-001",
    "chatdolphin",
    "chatgpt-4o-latest",
    "chronos-hermes-13b-v2",
    "claude-3-5-haiku",
    "claude-3-5-haiku@20241022",
    "claude-3-5-sonnet",
    "claude-3-5-sonnet-20241022",
    "claude-3-5-sonnet-latest",
    "claude-3-5-sonnet@20240620",
    "claude-3-7-sonnet",
    "claude-3-7-sonnet-20250219",
    "claude-3-7-sonnet-latest",
    "claude-3-7-sonnet@20250219",
    "claude-3-haiku",
    "claude-3-haiku-20240307",
    "claude-3-haiku@20240307",
    "claude-3-opus",
    "claude-3-opus-20240229",
    "claude-3-opus@20240229",
    "claude-3-sonnet",
    "claude-3-sonnet@20240229",
    "claude-3.5-haiku",
    "claude-3.5-sonnet",
    "claude-3.7-sonnet",
    "claude-3.7-sonnet:thinking",
    "claude-4-opus",
    "claude-4-opus-20250514",
    "claude-4-sonnet",
    "claude-4-sonnet-20250514",
    "claude-4.5-haiku",
    "claude-4.5-sonnet",
    "claude-haiku-4-5",
    "claude-haiku-4-5-20251001",
    "claude-haiku-4-5@20251001",
    "claude-haiku-4.5",
    "claude-opus-4",
    "claude-opus-4-1",
    "claude-opus-4-1-20250805",
    "claude-opus-4-1@20250805",
    "claude-opus-4-20250514",
    "claude-opus-4-5",
    "claude-opus-4-5-20251101",
    "claude-opus-4-5@20251101",
    "claude-opus-4-6",
    "claude-opus-4-6-20260205",
    "claude-opus-4-6@default",
    "claude-opus-4.1",
    "claude-opus-4.5",
    "claude-opus-4.6",
    "claude-opus-4.6-fast",
    "claude-opus-41",
    "claude-opus-4@20250514",
    "claude-sonnet-4",
    "claude-sonnet-4-20250514",
    "claude-sonnet-4-5",
    "claude-sonnet-4-5-20250929",
    "claude-sonnet-4-5-20250929-v1:0",
    "claude-sonnet-4-5@20250929",
    "claude-sonnet-4-6",
    "claude-sonnet-4-6@default",
    "claude-sonnet-4.5",
    "claude-sonnet-4.6",
    "claude-sonnet-4@20250514",
    "code-llama-13b",
    "code-llama-13b-instruct",
    "code-llama-13b-python",
    "code-llama-34b",
    "code-llama-34b-instruct",
    "code-llama-34b-python",
    "code-llama-70b",
    "code-llama-70b-instruct",
    "code-llama-70b-python",
    "code-llama-7b",
    "code-llama-7b-instruct",
    "code-llama-7b-python",
    "code-qwen-1p5-7b",
    "codegeex4",
    "codegemma",
    "codegemma-2b",
    "codegemma-7b",
    "codellama",
    "codellama-34b-instruct",
    "codellama-34b-instruct-hf",
    "codellama-70b-instruct",
    "codellama-70b-instruct-hf",
    "codellama-7b",
    "codellama-7b-instruct-awq",
    "codellama-7b-instruct-solidity",
    "coder-large",
    "codestral",
    "codestral-2",
    "codestral-2405",
    "codestral-2501",
    "codestral-2508",
    "codestral-2@001",
    "codestral-embed",
    "codestral-latest",
    "codestral-mamba-latest",
    "codestral@2405",
    "codestral@latest",
    "cogito-671b-v2-p1",
    "cogito-v1-preview-llama-3b",
    "cogito-v1-preview-llama-70b",
    "cogito-v1-preview-llama-8b",
    "cogito-v1-preview-qwen-14b",
    "cogito-v1-preview-qwen-32b",
    "cogito-v2.1-671b",
    "cohere.command-a-03-2025",
    "cohere.command-latest",
    "cohere.command-light-text-v14",
    "cohere.command-plus-latest",
    "cohere.command-r-plus-v1:0",
    "cohere.command-r-v1:0",
    "cohere.command-text-v14",
    "command",
    "command-a",
    "command-a-03-2025",
    "command-light",
    "command-nightly",
    "command-r",
    "command-r-08-2024",
    "command-r-plus",
    "command-r-plus-08-2024",
    "command-r7b-12-2024",
    "computer-use-preview",
    "container",
    "cydonia-24b-v4.1",
    "databricks-claude-3-7-sonnet",
    "databricks-claude-haiku-4-5",
    "databricks-claude-opus-4",
    "databricks-claude-opus-4-1",
    "databricks-claude-opus-4-5",
    "databricks-claude-sonnet-4",
    "databricks-claude-sonnet-4-1",
    "databricks-claude-sonnet-4-5",
    "databricks-gemini-2-5-flash",
    "databricks-gemini-2-5-pro",
    "databricks-gemma-3-12b",
    "databricks-gpt-5",
    "databricks-gpt-5-1",
    "databricks-gpt-5-mini",
    "databricks-gpt-5-nano",
    "databricks-gpt-oss-120b",
    "databricks-gpt-oss-20b",
    "databricks-llama-2-70b-chat",
    "databricks-llama-4-maverick",
    "databricks-meta-llama-3-1-405b-instruct",
    "databricks-meta-llama-3-1-8b-instruct",
    "databricks-meta-llama-3-3-70b-instruct",
    "databricks-meta-llama-3-70b-instruct",
    "databricks-mixtral-8x7b-instruct",
    "databricks-mpt-30b-instruct",
    "databricks-mpt-7b-instruct",
    "davinci-002",
    "dbrx-instruct",
    "deepseek-chat",
    "deepseek-chat-v3-0324",
    "deepseek-chat-v3.1",
    "deepseek-coder",
    "deepseek-coder-1b-base",
    "deepseek-coder-33b-instruct",
    "deepseek-coder-6.7b",
    "deepseek-coder-7b-base",
    "deepseek-coder-7b-base-v1p5",
    "deepseek-coder-7b-instruct-v1p5",
    "deepseek-coder-v2-base",
    "deepseek-coder-v2-instruct",
    "deepseek-coder-v2-lite-base",
    "deepseek-coder-v2-lite-instruct",
    "deepseek-llama3.3-70b",
    "deepseek-ocr",
    "deepseek-prover-v2",
    "deepseek-prover-v2-671b",
    "deepseek-r1",
    "deepseek-r1-0528",
    "deepseek-r1-0528-distill-qwen3-8b",
    "deepseek-r1-0528-maas",
    "deepseek-r1-0528-qwen3-8b",
    "deepseek-r1-0528-tput",
    "deepseek-r1-0528-turbo",
    "deepseek-r1-671b",
    "deepseek-r1-7b-qwen",
    "deepseek-r1-8b",
    "deepseek-r1-basic",
    "deepseek-r1-distill-llama-70b",
    "deepseek-r1-distill-llama-8b",
    "deepseek-r1-distill-qwen-1.5b",
    "deepseek-r1-distill-qwen-14b",
    "deepseek-r1-distill-qwen-1p5b",
    "deepseek-r1-distill-qwen-32b",
    "deepseek-r1-distill-qwen-7b",
    "deepseek-r1-turbo",
    "deepseek-r1t2-chimera",
    "deepseek-reasoner",
    "deepseek-v2-lite-chat",
    "deepseek-v2p5",
    "deepseek-v3",
    "deepseek-v3-0324",
    "deepseek-v3-2-251201",
    "deepseek-v3-turbo",
    "deepseek-v3.1",
    "deepseek-v3.1-maas",
    "deepseek-v3.1-nex-n1",
    "deepseek-v3.1-terminus",
    "deepseek-v3.1:671b-cloud",
    "deepseek-v3.2",
    "deepseek-v3.2-exp",
    "deepseek-v3.2-maas",
    "deepseek-v3.2-speciale",
    "deepseek-v3p1",
    "deepseek-v3p1-terminus",
    "deepseek-v3p2",
    "deepseek.v3-v1:0",
    "deepseek.v3.2",
    "devstral-2512",
    "devstral-latest",
    "devstral-medium",
    "devstral-medium-2507",
    "devstral-medium-latest",
    "devstral-small",
    "devstral-small-2505",
    "devstral-small-2507",
    "devstral-small-latest",
    "dobby-mini-unhinged-plus-llama-3-1-8b",
    "dobby-unhinged-llama-3-3-70b-new",
    "dolphin",
    "dolphin-2-9-2-qwen2-72b",
    "dolphin-2p6-mixtral-8x7b",
    "dolphin-mistral-24b-venice-edition:free",
    "dolphin3-8b",
    "doubao-seed-2-0-code-preview-260215",
    "doubao-seed-2-0-lite-260215",
    "doubao-seed-2-0-mini-260215",
    "doubao-seed-2-0-pro-260215",
    "embed-v4.0",
    "ernie-4.5-21b-a3b",
    "ernie-4.5-21b-a3b-thinking",
    "ernie-4.5-300b-a47b",
    "ernie-4.5-300b-a47b-paddle",
    "ernie-4.5-vl-28b-a3b",
    "ernie-4.5-vl-28b-a3b-thinking",
    "ernie-4.5-vl-424b-a47b",
    "ernie-4p5-21b-a3b-pt",
    "ernie-4p5-300b-a47b-pt",
    "eu.amazon.nova-2-lite-v1:0",
    "eu.amazon.nova-2-pro-preview-20251202-v1:0",
    "eu.amazon.nova-lite-v1:0",
    "eu.amazon.nova-micro-v1:0",
    "eu.amazon.nova-pro-v1:0",
    "eu.anthropic.claude-3-5-haiku-20241022-v1:0",
    "eu.anthropic.claude-3-5-sonnet-20240620-v1:0",
    "eu.anthropic.claude-3-5-sonnet-20241022-v2:0",
    "eu.anthropic.claude-3-7-sonnet-20250219-v1:0",
    "eu.anthropic.claude-3-haiku-20240307-v1:0",
    "eu.anthropic.claude-3-opus-20240229-v1:0",
    "eu.anthropic.claude-3-sonnet-20240229-v1:0",
    "eu.anthropic.claude-haiku-4-5-20251001-v1:0",
    "eu.anthropic.claude-opus-4-1-20250805-v1:0",
    "eu.anthropic.claude-opus-4-20250514-v1:0",
    "eu.anthropic.claude-opus-4-5-20251101-v1:0",
    "eu.anthropic.claude-opus-4-6-v1",
    "eu.anthropic.claude-sonnet-4-20250514-v1:0",
    "eu.anthropic.claude-sonnet-4-5-20250929-v1:0",
    "eu.anthropic.claude-sonnet-4-6",
    "eu.deepseek.v3.2",
    "eu.meta.llama3-2-1b-instruct-v1:0",
    "eu.meta.llama3-2-3b-instruct-v1:0",
    "eu.mistral.pixtral-large-2502-v1:0",
    "fare-20b",
    "firefunction-v1",
    "firefunction-v2",
    "firellava-13b",
    "firesearch-ocr-v6",
    "fireworks-ai-4.1b-to-16b",
    "fireworks-ai-56b-to-176b",
    "fireworks-ai-above-16b",
    "fireworks-ai-default",
    "fireworks-ai-embedding-150m-to-350m",
    "fireworks-ai-embedding-up-to-150m",
    "fireworks-ai-moe-up-to-56b",
    "fireworks-ai-up-to-4b",
    "flan-t5-xl-3b",
    "flux-1-dev",
    "flux-1-dev-controlnet-union",
    "flux-1-schnell",
    "free",
    "ft:babbage-002",
    "ft:davinci-002",
    "ft:gpt-3.5-turbo",
    "ft:gpt-3.5-turbo-0125",
    "ft:gpt-3.5-turbo-0613",
    "ft:gpt-3.5-turbo-1106",
    "ft:gpt-4-0613",
    "ft:gpt-4.1-2025-04-14",
    "ft:gpt-4.1-mini-2025-04-14",
    "ft:gpt-4.1-nano-2025-04-14",
    "ft:gpt-4o-2024-08-06",
    "ft:gpt-4o-2024-11-20",
    "ft:gpt-4o-mini-2024-07-18",
    "ft:o4-mini-2025-04-16",
    "gemini-2.0-flash",
    "gemini-2.0-flash-001",
    "gemini-2.0-flash-lite",
    "gemini-2.0-flash-lite-001",
    "gemini-2.5-computer-use-preview-10-2025",
    "gemini-2.5-flash",
    "gemini-2.5-flash-image",
    "gemini-2.5-flash-lite",
    "gemini-2.5-flash-lite-preview-06-17",
    "gemini-2.5-flash-lite-preview-09-2025",
    "gemini-2.5-flash-native-audio-latest",
    "gemini-2.5-flash-native-audio-preview-09-2025",
    "gemini-2.5-flash-native-audio-preview-12-2025",
    "gemini-2.5-flash-preview-09-2025",
    "gemini-2.5-pro",
    "gemini-2.5-pro-preview",
    "gemini-2.5-pro-preview-05-06",
    "gemini-2.5-pro-preview-tts",
    "gemini-3-flash-preview",
    "gemini-3-pro",
    "gemini-3-pro-image-preview",
    "gemini-3-pro-preview",
    "gemini-3.1-flash-image-preview",
    "gemini-3.1-flash-lite-preview",
    "gemini-3.1-flash-live-preview",
    "gemini-3.1-pro-preview",
    "gemini-3.1-pro-preview-customtools",
    "gemini-exp-1114",
    "gemini-exp-1206",
    "gemini-flash-latest",
    "gemini-flash-lite-latest",
    "gemini-gemma-2-27b-it",
    "gemini-gemma-2-9b-it",
    "gemini-pro-latest",
    "gemini-robotics-er-1.5-preview",
    "gemma-2-27b-it",
    "gemma-2-9b",
    "gemma-2-9b-it",
    "gemma-2b-it",
    "gemma-3-12b-it",
    "gemma-3-12b-it:free",
    "gemma-3-27b-it",
    "gemma-3-27b-it:free",
    "gemma-3-4b-it",
    "gemma-3-4b-it-gguf",
    "gemma-3-4b-it:free",
    "gemma-3n-e2b-it:free",
    "gemma-3n-e4b-it",
    "gemma-3n-e4b-it:free",
    "gemma-7b",
    "gemma-7b-it",
    "gemma-sea-lion-v4-27b-it",
    "gemma2-9b-it",
    "gemma3-4b",
    "gigachat-2-lite",
    "gigachat-2-max",
    "gigachat-2-pro",
    "glm-4-32b",
    "glm-4-32b-0414-128k",
    "glm-4-7-251222",
    "glm-4.5",
    "glm-4.5-air",
    "glm-4.5-air-fp8",
    "glm-4.5-air:free",
    "glm-4.5-airx",
    "glm-4.5-flash",
    "glm-4.5-x",
    "glm-4.5v",
    "glm-4.6",
    "glm-4.6:exacto",
    "glm-4.6v",
    "glm-4.7",
    "glm-4.7-flash",
    "glm-4.7-fp8",
    "glm-4.7-maas",
    "glm-4p5",
    "glm-4p5-air",
    "glm-4p5v",
    "glm-4p6",
    "glm-4p7",
    "glm-5",
    "glm-5-code",
    "glm-5-maas",
    "glm-5-turbo",
    "glm-5v-turbo",
    "global.amazon.nova-2-lite-v1:0",
    "global.anthropic.claude-haiku-4-5-20251001-v1:0",
    "global.anthropic.claude-opus-4-5-20251101-v1:0",
    "global.anthropic.claude-opus-4-6-v1",
    "global.anthropic.claude-sonnet-4-20250514-v1:0",
    "global.anthropic.claude-sonnet-4-5-20250929-v1:0",
    "global.anthropic.claude-sonnet-4-6",
    "goliath-120b",
    "google.gemma-3-12b-it",
    "google.gemma-3-27b-it",
    "google.gemma-3-4b-it",
    "gpt-3.5-turbo",
    "gpt-3.5-turbo-0125",
    "gpt-3.5-turbo-0613",
    "gpt-3.5-turbo-1106",
    "gpt-3.5-turbo-16k",
    "gpt-3.5-turbo-instruct",
    "gpt-3.5-turbo-instruct-0914",
    "gpt-35-turbo",
    "gpt-35-turbo-0125",
    "gpt-35-turbo-1106",
    "gpt-35-turbo-16k",
    "gpt-35-turbo-16k-0613",
    "gpt-35-turbo-instruct",
    "gpt-35-turbo-instruct-0914",
    "gpt-4",
    "gpt-4-0125-preview",
    "gpt-4-0314",
    "gpt-4-0613",
    "gpt-4-1106-preview",
    "gpt-4-32k",
    "gpt-4-32k-0613",
    "gpt-4-o-preview",
    "gpt-4-turbo",
    "gpt-4-turbo-2024-04-09",
    "gpt-4-turbo-preview",
    "gpt-4-turbo-vision-preview",
    "gpt-4.1",
    "gpt-4.1-2025-04-14",
    "gpt-4.1-mini",
    "gpt-4.1-mini-2025-04-14",
    "gpt-4.1-nano",
    "gpt-4.1-nano-2025-04-14",
    "gpt-4.5-preview",
    "gpt-41-copilot",
    "gpt-4o",
    "gpt-4o-2024-05-13",
    "gpt-4o-2024-08-06",
    "gpt-4o-2024-11-20",
    "gpt-4o-audio-preview",
    "gpt-4o-audio-preview-2024-12-17",
    "gpt-4o-audio-preview-2025-06-03",
    "gpt-4o-mini",
    "gpt-4o-mini-2024-07-18",
    "gpt-4o-mini-audio-preview",
    "gpt-4o-mini-audio-preview-2024-12-17",
    "gpt-4o-mini-realtime-preview",
    "gpt-4o-mini-realtime-preview-2024-12-17",
    "gpt-4o-mini-search-preview",
    "gpt-4o-mini-search-preview-2025-03-11",
    "gpt-4o-realtime-preview",
    "gpt-4o-realtime-preview-2024-10-01",
    "gpt-4o-realtime-preview-2024-12-17",
    "gpt-4o-realtime-preview-2025-06-03",
    "gpt-4o-search-preview",
    "gpt-4o-search-preview-2025-03-11",
    "gpt-4o:extended",
    "gpt-5",
    "gpt-5-2025-08-07",
    "gpt-5-chat",
    "gpt-5-chat-latest",
    "gpt-5-codex",
    "gpt-5-image",
    "gpt-5-image-mini",
    "gpt-5-mini",
    "gpt-5-mini-2025-08-07",
    "gpt-5-nano",
    "gpt-5-nano-2025-08-07",
    "gpt-5-pro",
    "gpt-5-search-api",
    "gpt-5-search-api-2025-10-14",
    "gpt-5.1",
    "gpt-5.1-2025-11-13",
    "gpt-5.1-chat",
    "gpt-5.1-chat-2025-11-13",
    "gpt-5.1-chat-latest",
    "gpt-5.1-codex",
    "gpt-5.1-codex-max",
    "gpt-5.1-codex-mini",
    "gpt-5.2",
    "gpt-5.2-2025-12-11",
    "gpt-5.2-chat",
    "gpt-5.2-chat-2025-12-11",
    "gpt-5.2-chat-latest",
    "gpt-5.2-codex",
    "gpt-5.2-pro",
    "gpt-5.3-chat",
    "gpt-5.3-chat-latest",
    "gpt-5.3-codex",
    "gpt-5.4",
    "gpt-5.4-2026-03-05",
    "gpt-5.4-mini",
    "gpt-5.4-nano",
    "gpt-5.4-pro",
    "gpt-audio",
    "gpt-audio-1.5",
    "gpt-audio-1.5-2026-02-23",
    "gpt-audio-2025-08-28",
    "gpt-audio-mini",
    "gpt-audio-mini-2025-10-06",
    "gpt-audio-mini-2025-12-15",
    "gpt-oss-120b",
    "gpt-oss-120b-maas",
    "gpt-oss-120b-mxfp-gguf",
    "gpt-oss-120b:free",
    "gpt-oss-20b",
    "gpt-oss-20b-maas",
    "gpt-oss-20b-mxfp4-gguf",
    "gpt-oss-20b:free",
    "gpt-oss-safeguard-120b",
    "gpt-oss-safeguard-20b",
    "gpt-oss:120b-cloud",
    "gpt-oss:20b-cloud",
    "gpt-realtime",
    "gpt-realtime-1.5",
    "gpt-realtime-1.5-2026-02-23",
    "gpt-realtime-2025-08-28",
    "gpt-realtime-mini",
    "gpt-realtime-mini-2025-10-06",
    "gpt-realtime-mini-2025-12-15",
    "granite-13b-chat-v2",
    "granite-13b-instruct-v2",
    "granite-3-3-8b-instruct",
    "granite-3-8b-instruct",
    "granite-3.3-8b-instruct",
    "granite-4-h-small",
    "granite-4.0-h-micro",
    "granite-guardian-3-2-2b",
    "granite-guardian-3-3-8b",
    "granite-ttm-1024-96-r2",
    "granite-ttm-1536-96-r2",
    "granite-ttm-512-96-r2",
    "granite-vision-3-2-2b",
    "grok-2",
    "grok-2-1212",
    "grok-2-latest",
    "grok-2-vision",
    "grok-2-vision-1212",
    "grok-2-vision-latest",
    "grok-3",
    "grok-3-beta",
    "grok-3-fast",
    "grok-3-fast-beta",
    "grok-3-fast-latest",
    "grok-3-latest",
    "grok-3-mini",
    "grok-3-mini-beta",
    "grok-3-mini-fast",
    "grok-3-mini-fast-beta",
    "grok-3-mini-fast-latest",
    "grok-3-mini-latest",
    "grok-4",
    "grok-4-0709",
    "grok-4-1-fast-non-reasoning",
    "grok-4-1-fast-reasoning",
    "grok-4-fast",
    "grok-4-fast-non-reasoning",
    "grok-4-fast-reasoning",
    "grok-4-latest",
    "grok-4.1-fast",
    "grok-4.20",
    "grok-4.20-beta-0309-non-reasoning",
    "grok-4.20-beta-0309-reasoning",
    "grok-4.20-multi-agent",
    "grok-4.20-multi-agent-beta-0309",
    "grok-beta",
    "grok-code-fast",
    "grok-code-fast-1",
    "grok-code-fast-1-0825",
    "grok-vision-beta",
    "hermes-2-pro-llama-3-8b",
    "hermes-2-pro-mistral-7b",
    "hermes-3-llama-3.1-405b",
    "hermes-3-llama-3.1-405b:free",
    "hermes-3-llama-3.1-70b",
    "hermes-4-405b",
    "hermes-4-70b",
    "hermes3-405b",
    "hermes3-70b",
    "hermes3-8b",
    "hunyuan-a13b-instruct",
    "inflection-3-pi",
    "inflection-3-productivity",
    "intellect-3",
    "internlm2_5-20b-chat",
    "internvl3-38b",
    "internvl3-78b",
    "internvl3-8b",
    "j2-light",
    "j2-mid",
    "j2-ultra",
    "jais-13b-chat",
    "jais-30b-chat",
    "jamba-1.5",
    "jamba-1.5-large",
    "jamba-1.5-large@001",
    "jamba-1.5-mini",
    "jamba-1.5-mini@001",
    "jamba-instruct",
    "jamba-large-1.6",
    "jamba-large-1.7",
    "jamba-mini-1.6",
    "jamba-mini-1.7",
    "jp.anthropic.claude-haiku-4-5-20251001-v1:0",
    "jp.anthropic.claude-sonnet-4-5-20250929-v1:0",
    "kat-coder",
    "kat-coder-pro",
    "kat-coder-pro-v2",
    "kat-dev-32b",
    "kat-dev-72b-exp",
    "kimi-k2",
    "kimi-k2-0711-preview",
    "kimi-k2-0905",
    "kimi-k2-0905-preview",
    "kimi-k2-instruct",
    "kimi-k2-instruct-0905",
    "kimi-k2-thinking",
    "kimi-k2-thinking-251104",
    "kimi-k2-thinking-maas",
    "kimi-k2-thinking-turbo",
    "kimi-k2-turbo-preview",
    "kimi-k2.5",
    "kimi-k2p5",
    "kimi-latest",
    "kimi-latest-128k",
    "kimi-latest-32k",
    "kimi-latest-8k",
    "kimi-thinking-preview",
    "l3-70b-euryale-v2.1",
    "l3-8b-lunaris",
    "l3-8b-lunaris-v1-turbo",
    "l3-8b-stheno-v3.2",
    "l3-euryale-70b",
    "l3-lunaris-8b",
    "l3.1-70b-euryale-v2.2",
    "l3.1-70b-hanami-x1",
    "l3.1-euryale-70b",
    "l3.3-70b-euryale-v2.3",
    "l3.3-euryale-70b",
    "l31-70b-euryale-v2.2",
    "labs-devstral-small-2512",
    "learnlm-1.5-pro-experimental",
    "lfm-2-24b-a2b",
    "lfm-2.2-6b",
    "lfm-2.5-1.2b-instruct:free",
    "lfm-2.5-1.2b-thinking:free",
    "lfm-40b",
    "lfm-7b",
    "lfm2-8b-a1b",
    "llama-2-13b",
    "llama-2-13b-chat",
    "llama-2-13b-chat-hf",
    "llama-2-70b",
    "llama-2-70b-chat",
    "llama-2-70b-chat-hf",
    "llama-2-7b",
    "llama-2-7b-chat",
    "llama-2-7b-chat-fp16",
    "llama-2-7b-chat-hf",
    "llama-2-7b-chat-int8",
    "llama-3-2-11b-vision-instruct",
    "llama-3-2-1b-instruct",
    "llama-3-2-3b-instruct",
    "llama-3-2-90b-vision-instruct",
    "llama-3-3-70b-instruct",
    "llama-3-70b",
    "llama-3-70b-instruct",
    "llama-3-8b",
    "llama-3-8b-instruct",
    "llama-3.1-405b-instruct-maas",
    "llama-3.1-70b",
    "llama-3.1-70b-instruct",
    "llama-3.1-70b-instruct-maas",
    "llama-3.1-8b",
    "llama-3.1-8b-instant",
    "llama-3.1-8b-instruct",
    "llama-3.1-8b-instruct-maas",
    "llama-3.1-nemotron-70b-instruct",
    "llama-3.1-nemotron-ultra-253b-v1",
    "llama-3.2-11b",
    "llama-3.2-11b-vision-instruct",
    "llama-3.2-1b",
    "llama-3.2-1b-instruct",
    "llama-3.2-3b",
    "llama-3.2-3b-instruct",
    "llama-3.2-3b-instruct-turbo",
    "llama-3.2-3b-instruct:free",
    "llama-3.2-90b",
    "llama-3.2-90b-vision-instruct",
    "llama-3.2-90b-vision-instruct-maas",
    "llama-3.3-70b",
    "llama-3.3-70b-instruct",
    "llama-3.3-70b-instruct-turbo",
    "llama-3.3-70b-instruct-turbo-free",
    "llama-3.3-70b-instruct:free",
    "llama-3.3-70b-versatile",
    "llama-3.3-8b-instruct",
    "llama-3.3-nemotron-super-49b-v1",
    "llama-3.3-nemotron-super-49b-v1.5",
    "llama-4-maverick",
    "llama-4-maverick-17b",
    "llama-4-maverick-17b-128e-instruct",
    "llama-4-maverick-17b-128e-instruct-fp8",
    "llama-4-maverick-17b-128e-instruct-maas",
    "llama-4-maverick-17b-16e-instruct-maas",
    "llama-4-scout",
    "llama-4-scout-17b-128e-instruct-maas",
    "llama-4-scout-17b-16e-instruct",
    "llama-4-scout-17b-16e-instruct-fp8",
    "llama-4-scout-17b-16e-instruct-maas",
    "llama-guard-2-8b",
    "llama-guard-3-11b-vision",
    "llama-guard-3-1b",
    "llama-guard-3-8b",
    "llama-guard-4-12b",
    "llama-v2-13b",
    "llama-v2-13b-chat",
    "llama-v2-70b",
    "llama-v2-70b-chat",
    "llama-v2-7b",
    "llama-v2-7b-chat",
    "llama-v3-70b-instruct",
    "llama-v3-70b-instruct-hf",
    "llama-v3-8b",
    "llama-v3-8b-instruct-hf",
    "llama-v3p1-405b-instruct",
    "llama-v3p1-405b-instruct-long",
    "llama-v3p1-70b-instruct",
    "llama-v3p1-70b-instruct-1b",
    "llama-v3p1-8b-instruct",
    "llama-v3p1-nemotron-70b-instruct",
    "llama-v3p2-11b-vision-instruct",
    "llama-v3p2-1b",
    "llama-v3p2-1b-instruct",
    "llama-v3p2-3b",
    "llama-v3p2-3b-instruct",
    "llama-v3p2-90b-vision-instruct",
    "llama-v3p3-70b-instruct",
    "llama2",
    "llama2-70b-chat",
    "llama2-uncensored",
    "llama2:13b",
    "llama2:70b",
    "llama2:7b",
    "llama3",
    "llama3-405b-instruct-maas",
    "llama3-70b",
    "llama3-70b-instruct-maas",
    "llama3-8b",
    "llama3-8b-instruct",
    "llama3-8b-instruct-maas",
    "llama3.1",
    "llama3.1-405b",
    "llama3.1-405b-instruct-fp8",
    "llama3.1-70b",
    "llama3.1-70b-instruct-fp8",
    "llama3.1-8b",
    "llama3.1-8b-instruct",
    "llama3.1-nemotron-70b-instruct-fp8",
    "llama3.2-11b-vision-instruct",
    "llama3.2-1b",
    "llama3.2-3b",
    "llama3.2-3b-instruct",
    "llama3.3-70b",
    "llama3.3-70b-instruct",
    "llama3.3-70b-instruct-fp8",
    "llama3:70b",
    "llama3:8b",
    "llama4-maverick-instruct-basic",
    "llama4-scout-instruct-basic",
    "llamaguard-7b",
    "llava-7b",
    "llava-v1.6-mistral-7b-hf",
    "llava-yi-34b",
    "llemma_7b",
    "longcat-flash-chat",
    "luminous-base",
    "luminous-base-control",
    "luminous-extended",
    "luminous-extended-control",
    "luminous-supreme",
    "luminous-supreme-control",
    "lyria-3-clip-preview",
    "lyria-3-pro-preview",
    "maestro-reasoning",
    "magistral-medium",
    "magistral-medium-1-2-2509",
    "magistral-medium-2506",
    "magistral-medium-2509",
    "magistral-medium-latest",
    "magistral-small",
    "magistral-small-1-2-2509",
    "magistral-small-2506",
    "magistral-small-latest",
    "magnum-v4-72b",
    "mai-ds-r1",
    "mamba-codestral-7b-v0.1",
    "medlm-large",
    "medlm-medium",
    "mercury",
    "mercury-2",
    "mercury-coder",
    "mercury-coder-small",
    "meta-llama-3-70b-instruct",
    "meta-llama-3-8b-instruct",
    "meta-llama-3.1-405b-instruct",
    "meta-llama-3.1-405b-instruct-turbo",
    "meta-llama-3.1-70b-instruct",
    "meta-llama-3.1-70b-instruct-turbo",
    "meta-llama-3.1-8b-instruct",
    "meta-llama-3.1-8b-instruct-turbo",
    "meta-llama-3.2-1b-instruct",
    "meta-llama-3.2-3b-instruct",
    "meta-llama-3.3-70b-instruct",
    "meta-llama-3_1-70b-instruct",
    "meta-llama-3_3-70b-instruct",
    "meta-llama-guard-3-8b",
    "meta-textgeneration-llama-2-13b",
    "meta-textgeneration-llama-2-13b-f",
    "meta-textgeneration-llama-2-70b",
    "meta-textgeneration-llama-2-70b-b-f",
    "meta-textgeneration-llama-2-7b",
    "meta-textgeneration-llama-2-7b-f",
    "meta.llama-3.1-405b-instruct",
    "meta.llama-3.2-90b-vision-instruct",
    "meta.llama-3.3-70b-instruct",
    "meta.llama-4-maverick-17b-128e-instruct-fp8",
    "meta.llama-4-scout-17b-16e-instruct",
    "meta.llama2-13b-chat-v1",
    "meta.llama2-70b-chat-v1",
    "meta.llama3-1-405b-instruct-v1:0",
    "meta.llama3-1-70b-instruct-v1:0",
    "meta.llama3-1-8b-instruct-v1:0",
    "meta.llama3-2-11b-instruct-v1:0",
    "meta.llama3-2-1b-instruct-v1:0",
    "meta.llama3-2-3b-instruct-v1:0",
    "meta.llama3-2-90b-instruct-v1:0",
    "meta.llama3-3-70b-instruct-v1:0",
    "meta.llama3-70b-instruct-v1:0",
    "meta.llama3-8b-instruct-v1:0",
    "meta.llama4-maverick-17b-instruct-v1:0",
    "meta.llama4-scout-17b-instruct-v1:0",
    "mimo-v2-flash",
    "mimo-v2-omni",
    "mimo-v2-pro",
    "minimax-01",
    "minimax-m1",
    "minimax-m1-80k",
    "minimax-m2",
    "minimax-m2-her",
    "minimax-m2-maas",
    "minimax-m2.1",
    "minimax-m2.1-lightning",
    "minimax-m2.5",
    "minimax-m2.5-lightning",
    "minimax-m2.5:free",
    "minimax-m2.7",
    "minimax-m2p1",
    "minimax.minimax-m2",
    "minimax.minimax-m2.1",
    "ministral-14b-2512",
    "ministral-3-14b-2512",
    "ministral-3-14b-instruct-2512",
    "ministral-3-3b-2512",
    "ministral-3-3b-instruct-2512",
    "ministral-3-8b-2512",
    "ministral-3-8b-instruct-2512",
    "ministral-3b",
    "ministral-3b-2512",
    "ministral-8b",
    "ministral-8b-2512",
    "mistral",
    "mistral-7b",
    "mistral-7b-instruct",
    "mistral-7b-instruct-4k",
    "mistral-7b-instruct-v0.1",
    "mistral-7b-instruct-v0.2",
    "mistral-7b-instruct-v0.3",
    "mistral-7b-instruct-v0p2",
    "mistral-7b-instruct-v3",
    "mistral-7b-v0.1",
    "mistral-7b-v0.3",
    "mistral-7b-v0p2",
    "mistral-embed",
    "mistral-large",
    "mistral-large-2402",
    "mistral-large-2407",
    "mistral-large-2411",
    "mistral-large-2512",
    "mistral-large-3",
    "mistral-large-3-fp8",
    "mistral-large-instruct-2407",
    "mistral-large-latest",
    "mistral-large2",
    "mistral-large@2407",
    "mistral-large@2411-001",
    "mistral-large@latest",
    "mistral-medium",
    "mistral-medium-2312",
    "mistral-medium-2505",
    "mistral-medium-3",
    "mistral-medium-3-1-2508",
    "mistral-medium-3.1",
    "mistral-medium-3@001",
    "mistral-medium-latest",
    "mistral-nemo",
    "mistral-nemo-base-2407",
    "mistral-nemo-instruct-2407",
    "mistral-nemo@2407",
    "mistral-nemo@latest",
    "mistral-saba",
    "mistral-saba-24b",
    "mistral-small",
    "mistral-small-24b-instruct-2501",
    "mistral-small-2503",
    "mistral-small-2503@001",
    "mistral-small-2603",
    "mistral-small-3-1-24b-instruct-2503",
    "mistral-small-3-2-2506",
    "mistral-small-3.1-24b-instruct",
    "mistral-small-3.2-24b-instruct",
    "mistral-small-3.2-24b-instruct-2506",
    "mistral-small-creative",
    "mistral-small-latest",
    "mistral-tiny",
    "mistral.devstral-2-123b",
    "mistral.magistral-small-2509",
    "mistral.ministral-3-14b-instruct",
    "mistral.ministral-3-3b-instruct",
    "mistral.ministral-3-8b-instruct",
    "mistral.mistral-7b-instruct-v0:2",
    "mistral.mistral-large-2402-v1:0",
    "mistral.mistral-large-2407-v1:0",
    "mistral.mistral-large-3-675b-instruct",
    "mistral.mistral-small-2402-v1:0",
    "mistral.mixtral-8x7b-instruct-v0:1",
    "mistral.voxtral-mini-3b-2507",
    "mistral.voxtral-small-24b-2507",
    "mixtral-8x22b",
    "mixtral-8x22b-instruct",
    "mixtral-8x22b-instruct-hf",
    "mixtral-8x22b-instruct-v0.1",
    "mixtral-8x7b",
    "mixtral-8x7b-instruct",
    "mixtral-8x7b-instruct-hf",
    "mixtral-8x7b-instruct-v0.1",
    "model_router",
    "moonshot-v1-128k",
    "moonshot-v1-128k-0430",
    "moonshot-v1-128k-vision-preview",
    "moonshot-v1-32k",
    "moonshot-v1-32k-0430",
    "moonshot-v1-32k-vision-preview",
    "moonshot-v1-8k",
    "moonshot-v1-8k-0430",
    "moonshot-v1-8k-vision-preview",
    "moonshot-v1-auto",
    "moonshot.kimi-k2-thinking",
    "moonshotai.kimi-k2-thinking",
    "moonshotai.kimi-k2.5",
    "morph-v3-fast",
    "morph-v3-large",
    "mt0-xxl-13b",
    "mythomax-l2-13b",
    "nemotron-3-nano-30b-a3b",
    "nemotron-3-nano-30b-a3b:free",
    "nemotron-3-super-120b-a12b",
    "nemotron-3-super-120b-a12b:free",
    "nemotron-nano-12b-v2-vl",
    "nemotron-nano-12b-v2-vl:free",
    "nemotron-nano-9b-v2",
    "nemotron-nano-9b-v2:free",
    "nemotron-nano-v2-12b-vl",
    "nous-capybara-7b-v1p9",
    "nous-hermes-2-mixtral-8x7b-dpo",
    "nous-hermes-2-yi-34b",
    "nous-hermes-llama2-13b",
    "nous-hermes-llama2-70b",
    "nous-hermes-llama2-7b",
    "nova-2-lite-v1",
    "nova-lite",
    "nova-lite-v1",
    "nova-micro",
    "nova-micro-v1",
    "nova-premier-v1",
    "nova-pro",
    "nova-pro-v1",
    "nvidia-nemotron-nano-12b-v2",
    "nvidia-nemotron-nano-9b-v2",
    "nvidia.nemotron-nano-12b-v2",
    "nvidia.nemotron-nano-3-30b",
    "nvidia.nemotron-nano-9b-v2",
    "o1",
    "o1-2024-12-17",
    "o1-mini",
    "o1-mini-2024-09-12",
    "o1-preview",
    "o1-preview-2024-09-12",
    "o1-pro",
    "o3",
    "o3-2025-04-16",
    "o3-deep-research",
    "o3-mini",
    "o3-mini-2025-01-31",
    "o3-mini-high",
    "o3-pro",
    "o4-mini",
    "o4-mini-2025-04-16",
    "o4-mini-deep-research",
    "o4-mini-high",
    "olmo-2-0325-32b-instruct",
    "olmo-3-32b-think",
    "olmo-3-7b-instruct",
    "olmo-3-7b-think",
    "olmo-3.1-32b-instruct",
    "olmo-3.1-32b-think",
    "olmocr-7b-0725-fp8",
    "open-codestral-mamba",
    "open-mistral-7b",
    "open-mistral-nemo",
    "open-mistral-nemo-2407",
    "open-mixtral-8x22b",
    "open-mixtral-8x7b",
    "openai-gpt-4o",
    "openai-gpt-4o-mini",
    "openai-o3",
    "openai-o3-mini",
    "openai.gpt-oss-120b",
    "openai.gpt-oss-120b-1:0",
    "openai.gpt-oss-20b",
    "openai.gpt-oss-20b-1:0",
    "openai.gpt-oss-safeguard-120b",
    "openai.gpt-oss-safeguard-20b",
    "openchat-3p5-0106-7b",
    "openhermes-2-mistral-7b",
    "openhermes-2p5-mistral-7b",
    "openorca-7b",
    "openthinker-7b",
    "orca-mini",
    "paddleocr-vl",
    "palmyra-x5",
    "phi-2-3b",
    "phi-3-medium-128k-instruct",
    "phi-3-medium-4k-instruct",
    "phi-3-mini-128k-instruct",
    "phi-3-mini-4k-instruct",
    "phi-3-small-128k-instruct",
    "phi-3-small-8k-instruct",
    "phi-3-vision-128k-instruct",
    "phi-3.5-mini-instruct",
    "phi-3.5-moe-instruct",
    "phi-3.5-vision-instruct",
    "phi-4",
    "phi-4-mini-instruct",
    "phi-4-mini-reasoning",
    "phi-4-multimodal-instruct",
    "phi-4-reasoning",
    "phind-code-llama-34b-python-v1",
    "phind-code-llama-34b-v1",
    "phind-code-llama-34b-v2",
    "pixtral-12b",
    "pixtral-12b-2409",
    "pixtral-large",
    "pixtral-large-2411",
    "pixtral-large-latest",
    "pplx-70b-chat",
    "pplx-70b-online",
    "pplx-7b-chat",
    "pplx-7b-online",
    "pythia-12b",
    "qwen-2.5-72b-instruct",
    "qwen-2.5-7b-instruct",
    "qwen-2.5-coder-32b-instruct",
    "qwen-3-14b",
    "qwen-3-235b",
    "qwen-3-30b",
    "qwen-3-32b",
    "qwen-coder",
    "qwen-flash",
    "qwen-flash-2025-07-28",
    "qwen-max",
    "qwen-mt-plus",
    "qwen-plus",
    "qwen-plus-2025-01-25",
    "qwen-plus-2025-04-28",
    "qwen-plus-2025-07-14",
    "qwen-plus-2025-07-28",
    "qwen-plus-2025-07-28:thinking",
    "qwen-plus-2025-09-11",
    "qwen-plus-latest",
    "qwen-qwq-32b-preview",
    "qwen-sea-lion-v4-32b-it",
    "qwen-turbo",
    "qwen-turbo-2024-11-01",
    "qwen-turbo-2025-04-28",
    "qwen-turbo-latest",
    "qwen-v2p5-14b-instruct",
    "qwen-v2p5-7b",
    "qwen-vl-max",
    "qwen-vl-plus",
    "qwen.qwen3-235b-a22b-2507-v1:0",
    "qwen.qwen3-32b-v1:0",
    "qwen.qwen3-coder-30b-a3b-v1:0",
    "qwen.qwen3-coder-480b-a35b-v1:0",
    "qwen.qwen3-coder-next",
    "qwen.qwen3-next-80b-a3b",
    "qwen.qwen3-vl-235b-a22b",
    "qwen1p5-72b-chat",
    "qwen2-72b-instruct",
    "qwen2-7b-instruct",
    "qwen2-audio-7b-instruct",
    "qwen2-vl-2b-instruct",
    "qwen2-vl-72b-instruct",
    "qwen2-vl-7b-instruct",
    "qwen2.5-32b-instruct",
    "qwen2.5-72b-instruct",
    "qwen2.5-72b-instruct-turbo",
    "qwen2.5-7b-instruct",
    "qwen2.5-7b-instruct-turbo",
    "qwen2.5-coder-32b-instruct",
    "qwen2.5-coder-3b-instruct",
    "qwen2.5-coder-7b",
    "qwen2.5-coder-7b-instruct",
    "qwen2.5-vl-32b-instruct",
    "qwen2.5-vl-72b-instruct",
    "qwen25-coder-32b-instruct",
    "qwen2p5-0p5b-instruct",
    "qwen2p5-14b",
    "qwen2p5-1p5b-instruct",
    "qwen2p5-32b",
    "qwen2p5-32b-instruct",
    "qwen2p5-72b",
    "qwen2p5-72b-instruct",
    "qwen2p5-7b-instruct",
    "qwen2p5-coder-0p5b",
    "qwen2p5-coder-0p5b-instruct",
    "qwen2p5-coder-14b",
    "qwen2p5-coder-14b-instruct",
    "qwen2p5-coder-1p5b",
    "qwen2p5-coder-1p5b-instruct",
    "qwen2p5-coder-32b",
    "qwen2p5-coder-32b-instruct",
    "qwen2p5-coder-32b-instruct-128k",
    "qwen2p5-coder-32b-instruct-32k-rope",
    "qwen2p5-coder-32b-instruct-64k",
    "qwen2p5-coder-3b",
    "qwen2p5-coder-3b-instruct",
    "qwen2p5-coder-7b",
    "qwen2p5-coder-7b-instruct",
    "qwen2p5-math-72b-instruct",
    "qwen2p5-vl-32b-instruct",
    "qwen2p5-vl-3b-instruct",
    "qwen2p5-vl-72b-instruct",
    "qwen2p5-vl-7b-instruct",
    "qwen3-0p6b",
    "qwen3-14b",
    "qwen3-1p7b",
    "qwen3-1p7b-fp8-draft",
    "qwen3-1p7b-fp8-draft-131072",
    "qwen3-1p7b-fp8-draft-40960",
    "qwen3-235b-a22b",
    "qwen3-235b-a22b-2507",
    "qwen3-235b-a22b-fp8",
    "qwen3-235b-a22b-fp8-tput",
    "qwen3-235b-a22b-instruct-2507",
    "qwen3-235b-a22b-instruct-2507-maas",
    "qwen3-235b-a22b-instruct-2507-tput",
    "qwen3-235b-a22b-thinking-2507",
    "qwen3-30b-a3b",
    "qwen3-30b-a3b-fp8",
    "qwen3-30b-a3b-instruct-2507",
    "qwen3-30b-a3b-thinking-2507",
    "qwen3-32b",
    "qwen3-32b-fp8",
    "qwen3-4b",
    "qwen3-4b-fp8",
    "qwen3-4b-instruct-2507",
    "qwen3-4b-instruct-2507-gguf",
    "qwen3-8b",
    "qwen3-8b-fp8",
    "qwen3-coder",
    "qwen3-coder-30b-a3b-instruct",
    "qwen3-coder-30b-a3b-instruct-gguf",
    "qwen3-coder-480b-a35b-instruct",
    "qwen3-coder-480b-a35b-instruct-fp8",
    "qwen3-coder-480b-a35b-instruct-maas",
    "qwen3-coder-480b-a35b-instruct-turbo",
    "qwen3-coder-480b-instruct-bf16",
    "qwen3-coder-flash",
    "qwen3-coder-flash-2025-07-28",
    "qwen3-coder-next",
    "qwen3-coder-plus",
    "qwen3-coder-plus-2025-07-22",
    "qwen3-coder:480b-cloud",
    "qwen3-coder:free",
    "qwen3-max",
    "qwen3-max-2026-01-23",
    "qwen3-max-preview",
    "qwen3-max-thinking",
    "qwen3-next-80b-a3b-instruct",
    "qwen3-next-80b-a3b-instruct-maas",
    "qwen3-next-80b-a3b-instruct:free",
    "qwen3-next-80b-a3b-thinking",
    "qwen3-next-80b-a3b-thinking-maas",
    "qwen3-omni-30b-a3b-instruct",
    "qwen3-omni-30b-a3b-thinking",
    "qwen3-vl-235b-a22b-instruct",
    "qwen3-vl-235b-a22b-instruct-fp8",
    "qwen3-vl-235b-a22b-thinking",
    "qwen3-vl-30b-a3b-instruct",
    "qwen3-vl-30b-a3b-thinking",
    "qwen3-vl-32b-instruct",
    "qwen3-vl-32b-thinking",
    "qwen3-vl-8b",
    "qwen3-vl-8b-instruct",
    "qwen3-vl-8b-thinking",
    "qwen3-vl-plus",
    "qwen3.5-122b-a10b",
    "qwen3.5-27b",
    "qwen3.5-35b-a3b",
    "qwen3.5-397b-a17b",
    "qwen3.5-9b",
    "qwen3.5-flash-02-23",
    "qwen3.5-plus",
    "qwen3.5-plus-02-15",
    "qwen3.6-plus-preview:free",
    "qwerky-72b",
    "qwerky-qwq-32b",
    "qwq-32b",
    "qwq-plus",
    "r1v4-lite",
    "reka-core",
    "reka-edge",
    "reka-flash",
    "reka-flash-3",
    "relace-apply-3",
    "relace-search",
    "remm-slerp-l2-13b",
    "rnj-1-instruct",
    "rocinante-12b",
    "rolm-ocr",
    "router",
    "salamandra-7b-instruct-tools-16k",
    "sarvam-m",
    "seed-1.6",
    "seed-1.6-flash",
    "seed-2.0-lite",
    "seed-2.0-mini",
    "skyfall-36b-v2",
    "snorkel-mistral-7b-pairrm-dpo",
    "snowflake-arctic",
    "snowflake-llama-3.1-405b",
    "snowflake-llama-3.3-70b",
    "solar-pro-3",
    "sonar",
    "sonar-deep-research",
    "sonar-medium-chat",
    "sonar-medium-online",
    "sonar-pro",
    "sonar-pro-search",
    "sonar-reasoning",
    "sonar-reasoning-pro",
    "sonar-small-chat",
    "sonar-small-online",
    "spotlight",
    "stablecode-3b",
    "starcoder-16b",
    "starcoder-7b",
    "starcoder2-15b",
    "starcoder2-3b",
    "starcoder2-7b",
    "step-3.5-flash",
    "step-3.5-flash:free",
    "text-bison",
    "text-bison-001",
    "text-bison-safety-off",
    "text-bison-safety-recitation-off",
    "text-unicorn",
    "text-unicorn@001",
    "titan-embed-text-v2",
    "together-ai-21.1b-41b",
    "together-ai-4.1b-8b",
    "together-ai-41.1b-80b",
    "together-ai-8.1b-21b",
    "together-ai-81.1b-110b",
    "together-ai-up-to-4b",
    "tongyi-deepresearch-30b-a3b",
    "toppy-m-7b",
    "trinity-large-preview:free",
    "trinity-large-thinking",
    "trinity-mini",
    "trinity-mini:free",
    "ui-tars-1.5-7b",
    "unslopnemo-12b",
    "us.amazon.nova-2-lite-v1:0",
    "us.amazon.nova-2-pro-preview-20251202-v1:0",
    "us.amazon.nova-lite-v1:0",
    "us.amazon.nova-micro-v1:0",
    "us.amazon.nova-premier-v1:0",
    "us.amazon.nova-pro-v1:0",
    "us.anthropic.claude-3-5-haiku-20241022-v1:0",
    "us.anthropic.claude-3-5-sonnet-20240620-v1:0",
    "us.anthropic.claude-3-5-sonnet-20241022-v2:0",
    "us.anthropic.claude-3-7-sonnet-20250219-v1:0",
    "us.anthropic.claude-3-haiku-20240307-v1:0",
    "us.anthropic.claude-3-opus-20240229-v1:0",
    "us.anthropic.claude-3-sonnet-20240229-v1:0",
    "us.anthropic.claude-haiku-4-5-20251001-v1:0",
    "us.anthropic.claude-opus-4-1-20250805-v1:0",
    "us.anthropic.claude-opus-4-20250514-v1:0",
    "us.anthropic.claude-opus-4-5-20251101-v1:0",
    "us.anthropic.claude-opus-4-6-v1",
    "us.anthropic.claude-sonnet-4-20250514-v1:0",
    "us.anthropic.claude-sonnet-4-5-20250929-v1:0",
    "us.anthropic.claude-sonnet-4-6",
    "us.deepseek.r1-v1:0",
    "us.deepseek.v3.2",
    "us.meta.llama3-1-405b-instruct-v1:0",
    "us.meta.llama3-1-70b-instruct-v1:0",
    "us.meta.llama3-1-8b-instruct-v1:0",
    "us.meta.llama3-2-11b-instruct-v1:0",
    "us.meta.llama3-2-1b-instruct-v1:0",
    "us.meta.llama3-2-3b-instruct-v1:0",
    "us.meta.llama3-2-90b-instruct-v1:0",
    "us.meta.llama3-3-70b-instruct-v1:0",
    "us.meta.llama4-maverick-17b-instruct-v1:0",
    "us.meta.llama4-scout-17b-instruct-v1:0",
    "us.mistral.pixtral-large-2502-v1:0",
    "us.writer.palmyra-x4-v1:0",
    "us.writer.palmyra-x5-v1:0",
    "v0-1.0-md",
    "v0-1.5-lg",
    "v0-1.5-md",
    "vicuna",
    "virtuoso-large",
    "voxtral-small-24b-2507",
    "weaver",
    "wizardlm-2-8x22b",
    "writer.palmyra-x4-v1:0",
    "writer.palmyra-x5-v1:0",
    "xai.grok-3",
    "xai.grok-3-fast",
    "xai.grok-3-mini",
    "xai.grok-3-mini-fast",
    "xai.grok-4",
    "yi-34b",
    "yi-34b-200k-capybara",
    "yi-34b-chat",
    "yi-6b",
    "yi-large",
    "zai-glm-4.6",
    "zai-glm-4.7",
    "zai.glm-4.7",
    "zai.glm-4.7-flash",
    "zephyr-7b-beta",
];

/// Detailed model information entry.
///
/// Integer encoding avoids floating-point in const context.
/// Conversion to f32 happens at lookup time in lib.rs.
pub struct ModelInfoEntry {
    pub name: &'static str,
    pub supports_vision: bool,
    pub supports_audio: bool,
    pub supports_video: bool,
    pub supports_pdf: bool,
    pub max_input_tokens: u32,
    pub max_output_tokens: u32,
    /// Input cost USD per 1M tokens * 1000 (0 = unknown). e.g. 3000 = $3.00/M
    pub cost_input_x1000: u32,
    /// Output cost USD per 1M tokens * 1000 (0 = unknown).
    pub cost_output_x1000: u32,
    /// Arena overall score 0-10000 (two decimal places * 100). 0 = unranked.
    pub arena_overall: u16,
}

/// Sorted by name for binary search lookup.
pub const MODEL_INFO: &[ModelInfoEntry] = &[
    ModelInfoEntry { name: "ai21.j2-mid-v1", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8191, max_output_tokens: 8191, cost_input_x1000: 12500, cost_output_x1000: 12500, arena_overall: 0 },
    ModelInfoEntry { name: "ai21.j2-ultra-v1", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8191, max_output_tokens: 8191, cost_input_x1000: 18800, cost_output_x1000: 18800, arena_overall: 0 },
    ModelInfoEntry { name: "ai21.jamba-1-5-large-v1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 256000, max_output_tokens: 256000, cost_input_x1000: 2000, cost_output_x1000: 8000, arena_overall: 0 },
    ModelInfoEntry { name: "ai21.jamba-1-5-mini-v1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 256000, max_output_tokens: 256000, cost_input_x1000: 200, cost_output_x1000: 400, arena_overall: 0 },
    ModelInfoEntry { name: "ai21.jamba-instruct-v1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 70000, max_output_tokens: 4096, cost_input_x1000: 500, cost_output_x1000: 700, arena_overall: 0 },
    ModelInfoEntry { name: "aion-1.0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 32768, cost_input_x1000: 4000, cost_output_x1000: 8000, arena_overall: 0 },
    ModelInfoEntry { name: "aion-1.0-mini", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 32768, cost_input_x1000: 700, cost_output_x1000: 1400, arena_overall: 0 },
    ModelInfoEntry { name: "aion-2.0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 32768, cost_input_x1000: 800, cost_output_x1000: 1600, arena_overall: 0 },
    ModelInfoEntry { name: "aion-rp-llama-3.1-8b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 800, cost_output_x1000: 1600, arena_overall: 0 },
    ModelInfoEntry { name: "alia-40b-instruct_q8_0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 4096, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "alibaba-qwen3-32b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "allam-1-13b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 1800, cost_output_x1000: 1800, arena_overall: 0 },
    ModelInfoEntry { name: "amazon.nova-2-lite-v1:0", supports_vision: true, supports_audio: false, supports_video: true, supports_pdf: true, max_input_tokens: 1000000, max_output_tokens: 64000, cost_input_x1000: 300, cost_output_x1000: 2500, arena_overall: 0 },
    ModelInfoEntry { name: "amazon.nova-2-pro-preview-20251202-v1:0", supports_vision: true, supports_audio: false, supports_video: true, supports_pdf: true, max_input_tokens: 1000000, max_output_tokens: 64000, cost_input_x1000: 2188, cost_output_x1000: 17500, arena_overall: 0 },
    ModelInfoEntry { name: "amazon.nova-lite-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 300000, max_output_tokens: 10000, cost_input_x1000: 60, cost_output_x1000: 240, arena_overall: 0 },
    ModelInfoEntry { name: "amazon.nova-micro-v1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 10000, cost_input_x1000: 35, cost_output_x1000: 140, arena_overall: 0 },
    ModelInfoEntry { name: "amazon.nova-pro-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 300000, max_output_tokens: 10000, cost_input_x1000: 960, cost_output_x1000: 3840, arena_overall: 0 },
    ModelInfoEntry { name: "amazon.titan-text-express-v1", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 42000, max_output_tokens: 8000, cost_input_x1000: 1300, cost_output_x1000: 1700, arena_overall: 0 },
    ModelInfoEntry { name: "amazon.titan-text-lite-v1", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 42000, max_output_tokens: 4000, cost_input_x1000: 300, cost_output_x1000: 400, arena_overall: 0 },
    ModelInfoEntry { name: "amazon.titan-text-premier-v1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 42000, max_output_tokens: 32000, cost_input_x1000: 500, cost_output_x1000: 1500, arena_overall: 0 },
    ModelInfoEntry { name: "anthropic-claude-3-opus", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 15000, cost_output_x1000: 75000, arena_overall: 0 },
    ModelInfoEntry { name: "anthropic-claude-3.5-haiku", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 800, cost_output_x1000: 4000, arena_overall: 0 },
    ModelInfoEntry { name: "anthropic-claude-3.5-sonnet", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "anthropic-claude-3.7-sonnet", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "anthropic.claude-3-5-haiku-20241022-v1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 8192, cost_input_x1000: 800, cost_output_x1000: 4000, arena_overall: 0 },
    ModelInfoEntry { name: "anthropic.claude-3-5-sonnet-20240620-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 1000000, max_output_tokens: 8192, cost_input_x1000: 3600, cost_output_x1000: 18000, arena_overall: 0 },
    ModelInfoEntry { name: "anthropic.claude-3-5-sonnet-20241022-v2:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 1000000, max_output_tokens: 8192, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "anthropic.claude-3-7-sonnet-20240620-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 8192, cost_input_x1000: 3600, cost_output_x1000: 18000, arena_overall: 0 },
    ModelInfoEntry { name: "anthropic.claude-3-7-sonnet-20250219-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 8192, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "anthropic.claude-3-haiku-20240307-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 4096, cost_input_x1000: 300, cost_output_x1000: 1500, arena_overall: 0 },
    ModelInfoEntry { name: "anthropic.claude-3-opus-20240229-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 4096, cost_input_x1000: 15000, cost_output_x1000: 75000, arena_overall: 0 },
    ModelInfoEntry { name: "anthropic.claude-3-sonnet-20240229-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 4096, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "anthropic.claude-haiku-4-5-20251001-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 64000, cost_input_x1000: 1000, cost_output_x1000: 5000, arena_overall: 0 },
    ModelInfoEntry { name: "anthropic.claude-haiku-4-5@20251001", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 64000, cost_input_x1000: 1000, cost_output_x1000: 5000, arena_overall: 0 },
    ModelInfoEntry { name: "anthropic.claude-instant-v1", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 100000, max_output_tokens: 8191, cost_input_x1000: 800, cost_output_x1000: 2400, arena_overall: 0 },
    ModelInfoEntry { name: "anthropic.claude-opus-4-1-20250805-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 32000, cost_input_x1000: 15000, cost_output_x1000: 75000, arena_overall: 0 },
    ModelInfoEntry { name: "anthropic.claude-opus-4-20250514-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 32000, cost_input_x1000: 15000, cost_output_x1000: 75000, arena_overall: 0 },
    ModelInfoEntry { name: "anthropic.claude-opus-4-5-20251101-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 64000, cost_input_x1000: 5000, cost_output_x1000: 25000, arena_overall: 0 },
    ModelInfoEntry { name: "anthropic.claude-opus-4-6-v1", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 1000000, max_output_tokens: 128000, cost_input_x1000: 5000, cost_output_x1000: 25000, arena_overall: 0 },
    ModelInfoEntry { name: "anthropic.claude-sonnet-4-20250514-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 1000000, max_output_tokens: 64000, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "anthropic.claude-sonnet-4-5-20250929-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 64000, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "anthropic.claude-sonnet-4-6", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 1000000, max_output_tokens: 64000, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "anthropic.claude-v1", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 100000, max_output_tokens: 8191, cost_input_x1000: 8000, cost_output_x1000: 24000, arena_overall: 0 },
    ModelInfoEntry { name: "anthropic.claude-v2:1", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 100000, max_output_tokens: 8191, cost_input_x1000: 8000, cost_output_x1000: 24000, arena_overall: 0 },
    ModelInfoEntry { name: "apac.amazon.nova-2-lite-v1:0", supports_vision: true, supports_audio: false, supports_video: true, supports_pdf: true, max_input_tokens: 1000000, max_output_tokens: 64000, cost_input_x1000: 330, cost_output_x1000: 2750, arena_overall: 0 },
    ModelInfoEntry { name: "apac.amazon.nova-2-pro-preview-20251202-v1:0", supports_vision: true, supports_audio: false, supports_video: true, supports_pdf: true, max_input_tokens: 1000000, max_output_tokens: 64000, cost_input_x1000: 2188, cost_output_x1000: 17500, arena_overall: 0 },
    ModelInfoEntry { name: "apac.amazon.nova-lite-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 300000, max_output_tokens: 10000, cost_input_x1000: 63, cost_output_x1000: 252, arena_overall: 0 },
    ModelInfoEntry { name: "apac.amazon.nova-micro-v1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 10000, cost_input_x1000: 37, cost_output_x1000: 148, arena_overall: 0 },
    ModelInfoEntry { name: "apac.amazon.nova-pro-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 300000, max_output_tokens: 10000, cost_input_x1000: 840, cost_output_x1000: 3360, arena_overall: 0 },
    ModelInfoEntry { name: "apac.anthropic.claude-3-5-sonnet-20240620-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 4096, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "apac.anthropic.claude-3-5-sonnet-20241022-v2:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 8192, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "apac.anthropic.claude-3-haiku-20240307-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 4096, cost_input_x1000: 250, cost_output_x1000: 1250, arena_overall: 0 },
    ModelInfoEntry { name: "apac.anthropic.claude-3-sonnet-20240229-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 4096, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "apac.anthropic.claude-haiku-4-5-20251001-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 64000, cost_input_x1000: 1100, cost_output_x1000: 5500, arena_overall: 0 },
    ModelInfoEntry { name: "apac.anthropic.claude-sonnet-4-20250514-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 1000000, max_output_tokens: 64000, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "apertus-70b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 4096, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "apertus-8b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 4096, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "au.anthropic.claude-haiku-4-5-20251001-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 64000, cost_input_x1000: 1100, cost_output_x1000: 5500, arena_overall: 0 },
    ModelInfoEntry { name: "au.anthropic.claude-opus-4-6-v1", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 1000000, max_output_tokens: 128000, cost_input_x1000: 5500, cost_output_x1000: 27500, arena_overall: 0 },
    ModelInfoEntry { name: "au.anthropic.claude-sonnet-4-5-20250929-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 64000, cost_input_x1000: 3300, cost_output_x1000: 16500, arena_overall: 0 },
    ModelInfoEntry { name: "au.anthropic.claude-sonnet-4-6", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 1000000, max_output_tokens: 64000, cost_input_x1000: 3300, cost_output_x1000: 16500, arena_overall: 0 },
    ModelInfoEntry { name: "auto", supports_vision: true, supports_audio: true, supports_video: true, supports_pdf: false, max_input_tokens: 2000000, max_output_tokens: 0, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "autoglm-phone-9b-multilingual", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 65536, max_output_tokens: 65536, cost_input_x1000: 35, cost_output_x1000: 138, arena_overall: 0 },
    ModelInfoEntry { name: "babbage-002", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 4096, cost_input_x1000: 400, cost_output_x1000: 400, arena_overall: 0 },
    ModelInfoEntry { name: "baichuan-m2-32b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 70, cost_output_x1000: 70, arena_overall: 0 },
    ModelInfoEntry { name: "bodybuilder", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 0, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "chat-bison", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 4096, cost_input_x1000: 125, cost_output_x1000: 125, arena_overall: 0 },
    ModelInfoEntry { name: "chat-bison-001", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 4096, cost_input_x1000: 125, cost_output_x1000: 125, arena_overall: 0 },
    ModelInfoEntry { name: "chatdolphin", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 16384, cost_input_x1000: 500, cost_output_x1000: 500, arena_overall: 0 },
    ModelInfoEntry { name: "chatgpt-4o-latest", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 5000, cost_output_x1000: 15000, arena_overall: 9318 },
    ModelInfoEntry { name: "chronos-hermes-13b-v2", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "claude-3-5-haiku", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 8192, cost_input_x1000: 1000, cost_output_x1000: 5000, arena_overall: 0 },
    ModelInfoEntry { name: "claude-3-5-haiku@20241022", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 8192, cost_input_x1000: 1000, cost_output_x1000: 5000, arena_overall: 0 },
    ModelInfoEntry { name: "claude-3-5-sonnet", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 8192, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "claude-3-5-sonnet-20241022", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 8192, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "claude-3-5-sonnet-latest", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "claude-3-5-sonnet@20240620", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 8192, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "claude-3-7-sonnet", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 64000, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "claude-3-7-sonnet-20250219", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 64000, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "claude-3-7-sonnet-latest", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 200000, cost_input_x1000: 3300, cost_output_x1000: 16500, arena_overall: 0 },
    ModelInfoEntry { name: "claude-3-7-sonnet@20250219", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 8192, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "claude-3-haiku", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 4096, cost_input_x1000: 250, cost_output_x1000: 1250, arena_overall: 5758 },
    ModelInfoEntry { name: "claude-3-haiku-20240307", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 4096, cost_input_x1000: 250, cost_output_x1000: 1250, arena_overall: 0 },
    ModelInfoEntry { name: "claude-3-haiku@20240307", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 4096, cost_input_x1000: 250, cost_output_x1000: 1250, arena_overall: 0 },
    ModelInfoEntry { name: "claude-3-opus", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 4096, cost_input_x1000: 15000, cost_output_x1000: 75000, arena_overall: 6788 },
    ModelInfoEntry { name: "claude-3-opus-20240229", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 4096, cost_input_x1000: 15000, cost_output_x1000: 75000, arena_overall: 0 },
    ModelInfoEntry { name: "claude-3-opus@20240229", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 4096, cost_input_x1000: 15000, cost_output_x1000: 75000, arena_overall: 0 },
    ModelInfoEntry { name: "claude-3-sonnet", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 4096, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 6091 },
    ModelInfoEntry { name: "claude-3-sonnet@20240229", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 4096, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "claude-3.5-haiku", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 8192, cost_input_x1000: 800, cost_output_x1000: 4000, arena_overall: 6667 },
    ModelInfoEntry { name: "claude-3.5-sonnet", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 8192, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 7333 },
    ModelInfoEntry { name: "claude-3.7-sonnet", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 128000, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 7545 },
    ModelInfoEntry { name: "claude-3.7-sonnet:thinking", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 64000, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "claude-4-opus", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 200000, cost_input_x1000: 16500, cost_output_x1000: 82500, arena_overall: 0 },
    ModelInfoEntry { name: "claude-4-opus-20250514", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 32000, cost_input_x1000: 15000, cost_output_x1000: 75000, arena_overall: 0 },
    ModelInfoEntry { name: "claude-4-sonnet", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 200000, cost_input_x1000: 3300, cost_output_x1000: 16500, arena_overall: 0 },
    ModelInfoEntry { name: "claude-4-sonnet-20250514", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 1000000, max_output_tokens: 64000, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "claude-4.5-haiku", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 1000, cost_output_x1000: 5000, arena_overall: 0 },
    ModelInfoEntry { name: "claude-4.5-sonnet", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "claude-haiku-4-5", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 64000, cost_input_x1000: 1000, cost_output_x1000: 5000, arena_overall: 0 },
    ModelInfoEntry { name: "claude-haiku-4-5-20251001", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 64000, cost_input_x1000: 1000, cost_output_x1000: 5000, arena_overall: 0 },
    ModelInfoEntry { name: "claude-haiku-4-5@20251001", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 8192, cost_input_x1000: 1000, cost_output_x1000: 5000, arena_overall: 0 },
    ModelInfoEntry { name: "claude-haiku-4.5", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 200000, cost_input_x1000: 1000, cost_output_x1000: 5000, arena_overall: 0 },
    ModelInfoEntry { name: "claude-opus-4", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 409600, max_output_tokens: 32000, cost_input_x1000: 15000, cost_output_x1000: 75000, arena_overall: 8439 },
    ModelInfoEntry { name: "claude-opus-4-1", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 32000, cost_input_x1000: 15000, cost_output_x1000: 75000, arena_overall: 0 },
    ModelInfoEntry { name: "claude-opus-4-1-20250805", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 32000, cost_input_x1000: 15000, cost_output_x1000: 75000, arena_overall: 0 },
    ModelInfoEntry { name: "claude-opus-4-1@20250805", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 32000, cost_input_x1000: 15000, cost_output_x1000: 75000, arena_overall: 0 },
    ModelInfoEntry { name: "claude-opus-4-20250514", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 32000, cost_input_x1000: 15000, cost_output_x1000: 75000, arena_overall: 0 },
    ModelInfoEntry { name: "claude-opus-4-5", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 64000, cost_input_x1000: 5000, cost_output_x1000: 25000, arena_overall: 0 },
    ModelInfoEntry { name: "claude-opus-4-5-20251101", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 64000, cost_input_x1000: 5000, cost_output_x1000: 25000, arena_overall: 0 },
    ModelInfoEntry { name: "claude-opus-4-5@20251101", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 64000, cost_input_x1000: 5000, cost_output_x1000: 25000, arena_overall: 0 },
    ModelInfoEntry { name: "claude-opus-4-6", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 1000000, max_output_tokens: 128000, cost_input_x1000: 5000, cost_output_x1000: 25000, arena_overall: 0 },
    ModelInfoEntry { name: "claude-opus-4-6-20260205", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 1000000, max_output_tokens: 128000, cost_input_x1000: 5000, cost_output_x1000: 25000, arena_overall: 0 },
    ModelInfoEntry { name: "claude-opus-4-6@default", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 1000000, max_output_tokens: 128000, cost_input_x1000: 5000, cost_output_x1000: 25000, arena_overall: 0 },
    ModelInfoEntry { name: "claude-opus-4.1", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 32000, cost_input_x1000: 15000, cost_output_x1000: 75000, arena_overall: 0 },
    ModelInfoEntry { name: "claude-opus-4.5", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 409600, max_output_tokens: 64000, cost_input_x1000: 5000, cost_output_x1000: 25000, arena_overall: 0 },
    ModelInfoEntry { name: "claude-opus-4.6", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 1000000, max_output_tokens: 128000, cost_input_x1000: 5000, cost_output_x1000: 25000, arena_overall: 0 },
    ModelInfoEntry { name: "claude-opus-4.6-fast", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 16000, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "claude-opus-41", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 80000, max_output_tokens: 16000, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "claude-opus-4@20250514", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 32000, cost_input_x1000: 15000, cost_output_x1000: 75000, arena_overall: 0 },
    ModelInfoEntry { name: "claude-sonnet-4", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 1000000, max_output_tokens: 64000, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 8136 },
    ModelInfoEntry { name: "claude-sonnet-4-20250514", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 1000000, max_output_tokens: 64000, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "claude-sonnet-4-5", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 64000, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "claude-sonnet-4-5-20250929", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 64000, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "claude-sonnet-4-5-20250929-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 64000, cost_input_x1000: 3300, cost_output_x1000: 16500, arena_overall: 0 },
    ModelInfoEntry { name: "claude-sonnet-4-5@20250929", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 64000, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "claude-sonnet-4-6", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 1000000, max_output_tokens: 64000, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "claude-sonnet-4-6@default", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 1000000, max_output_tokens: 64000, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "claude-sonnet-4.5", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 1000000, max_output_tokens: 1000000, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "claude-sonnet-4.6", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 1000000, max_output_tokens: 128000, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "claude-sonnet-4@20250514", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 1000000, max_output_tokens: 64000, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "code-llama-13b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 16384, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "code-llama-13b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 16384, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "code-llama-13b-python", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 16384, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "code-llama-34b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 16384, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "code-llama-34b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 16384, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "code-llama-34b-python", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 16384, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "code-llama-70b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "code-llama-70b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "code-llama-70b-python", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "code-llama-7b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 16384, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "code-llama-7b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 16384, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "code-llama-7b-python", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 16384, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "code-qwen-1p5-7b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 65536, max_output_tokens: 65536, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "codegeex4", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 8192, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "codegemma", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "codegemma-2b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "codegemma-7b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "codellama", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "codellama-34b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 16384, cost_input_x1000: 350, cost_output_x1000: 1400, arena_overall: 3697 },
    ModelInfoEntry { name: "codellama-34b-instruct-hf", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 1000, cost_output_x1000: 1000, arena_overall: 0 },
    ModelInfoEntry { name: "codellama-70b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 16384, cost_input_x1000: 700, cost_output_x1000: 2800, arena_overall: 3667 },
    ModelInfoEntry { name: "codellama-70b-instruct-hf", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 1000, cost_output_x1000: 1000, arena_overall: 0 },
    ModelInfoEntry { name: "codellama-7b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 4096, cost_input_x1000: 60, cost_output_x1000: 120, arena_overall: 0 },
    ModelInfoEntry { name: "codellama-7b-instruct-awq", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 1923, cost_output_x1000: 1923, arena_overall: 0 },
    ModelInfoEntry { name: "codellama-7b-instruct-solidity", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 800, cost_output_x1000: 1200, arena_overall: 0 },
    ModelInfoEntry { name: "coder-large", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 0, cost_input_x1000: 500, cost_output_x1000: 800, arena_overall: 0 },
    ModelInfoEntry { name: "codestral", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 256000, max_output_tokens: 4000, cost_input_x1000: 300, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "codestral-2", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 128000, cost_input_x1000: 300, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "codestral-2405", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32000, max_output_tokens: 8191, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "codestral-2501", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 128000, cost_input_x1000: 200, cost_output_x1000: 600, arena_overall: 0 },
    ModelInfoEntry { name: "codestral-2508", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 256000, max_output_tokens: 256000, cost_input_x1000: 300, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "codestral-2@001", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 128000, cost_input_x1000: 300, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "codestral-embed", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 150, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "codestral-latest", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32000, max_output_tokens: 8191, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "codestral-mamba-latest", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 256000, max_output_tokens: 256000, cost_input_x1000: 250, cost_output_x1000: 250, arena_overall: 0 },
    ModelInfoEntry { name: "codestral@2405", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 128000, cost_input_x1000: 200, cost_output_x1000: 600, arena_overall: 0 },
    ModelInfoEntry { name: "codestral@latest", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 128000, cost_input_x1000: 200, cost_output_x1000: 600, arena_overall: 0 },
    ModelInfoEntry { name: "cogito-671b-v2-p1", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 163840, max_output_tokens: 163840, cost_input_x1000: 1200, cost_output_x1000: 1200, arena_overall: 0 },
    ModelInfoEntry { name: "cogito-v1-preview-llama-3b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "cogito-v1-preview-llama-70b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "cogito-v1-preview-llama-8b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "cogito-v1-preview-qwen-14b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "cogito-v1-preview-qwen-32b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "cogito-v2.1-671b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 0, cost_input_x1000: 1250, cost_output_x1000: 1250, arena_overall: 0 },
    ModelInfoEntry { name: "cohere.command-a-03-2025", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 256000, max_output_tokens: 4000, cost_input_x1000: 1560, cost_output_x1000: 1560, arena_overall: 0 },
    ModelInfoEntry { name: "cohere.command-latest", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4000, cost_input_x1000: 1560, cost_output_x1000: 1560, arena_overall: 0 },
    ModelInfoEntry { name: "cohere.command-light-text-v14", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 300, cost_output_x1000: 600, arena_overall: 0 },
    ModelInfoEntry { name: "cohere.command-plus-latest", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4000, cost_input_x1000: 1560, cost_output_x1000: 1560, arena_overall: 0 },
    ModelInfoEntry { name: "cohere.command-r-plus-v1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "cohere.command-r-v1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 500, cost_output_x1000: 1500, arena_overall: 0 },
    ModelInfoEntry { name: "cohere.command-text-v14", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 1500, cost_output_x1000: 2000, arena_overall: 0 },
    ModelInfoEntry { name: "command", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 1000, cost_output_x1000: 2000, arena_overall: 0 },
    ModelInfoEntry { name: "command-a", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 256000, max_output_tokens: 8192, cost_input_x1000: 2500, cost_output_x1000: 10000, arena_overall: 7773 },
    ModelInfoEntry { name: "command-a-03-2025", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 256000, max_output_tokens: 8000, cost_input_x1000: 2500, cost_output_x1000: 10000, arena_overall: 0 },
    ModelInfoEntry { name: "command-light", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 300, cost_output_x1000: 600, arena_overall: 0 },
    ModelInfoEntry { name: "command-nightly", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 1000, cost_output_x1000: 2000, arena_overall: 0 },
    ModelInfoEntry { name: "command-r", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 150, cost_output_x1000: 600, arena_overall: 5773 },
    ModelInfoEntry { name: "command-r-08-2024", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 150, cost_output_x1000: 600, arena_overall: 0 },
    ModelInfoEntry { name: "command-r-plus", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 2500, cost_output_x1000: 10000, arena_overall: 0 },
    ModelInfoEntry { name: "command-r-plus-08-2024", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 2500, cost_output_x1000: 10000, arena_overall: 0 },
    ModelInfoEntry { name: "command-r7b-12-2024", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 150, cost_output_x1000: 38, arena_overall: 0 },
    ModelInfoEntry { name: "computer-use-preview", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 1024, cost_input_x1000: 3000, cost_output_x1000: 12000, arena_overall: 0 },
    ModelInfoEntry { name: "container", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "cydonia-24b-v4.1", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 300, cost_output_x1000: 500, arena_overall: 0 },
    ModelInfoEntry { name: "databricks-claude-3-7-sonnet", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 128000, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "databricks-claude-haiku-4-5", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 64000, cost_input_x1000: 1000, cost_output_x1000: 5000, arena_overall: 0 },
    ModelInfoEntry { name: "databricks-claude-opus-4", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 32000, cost_input_x1000: 15000, cost_output_x1000: 75000, arena_overall: 0 },
    ModelInfoEntry { name: "databricks-claude-opus-4-1", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 32000, cost_input_x1000: 15000, cost_output_x1000: 75000, arena_overall: 0 },
    ModelInfoEntry { name: "databricks-claude-opus-4-5", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 64000, cost_input_x1000: 5000, cost_output_x1000: 25000, arena_overall: 0 },
    ModelInfoEntry { name: "databricks-claude-sonnet-4", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 64000, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "databricks-claude-sonnet-4-1", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 64000, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "databricks-claude-sonnet-4-5", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 64000, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "databricks-gemini-2-5-flash", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 1048576, max_output_tokens: 65535, cost_input_x1000: 300, cost_output_x1000: 2500, arena_overall: 0 },
    ModelInfoEntry { name: "databricks-gemini-2-5-pro", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 1048576, max_output_tokens: 65536, cost_input_x1000: 1250, cost_output_x1000: 10000, arena_overall: 0 },
    ModelInfoEntry { name: "databricks-gemma-3-12b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 32000, cost_input_x1000: 150, cost_output_x1000: 500, arena_overall: 0 },
    ModelInfoEntry { name: "databricks-gpt-5", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 272000, max_output_tokens: 128000, cost_input_x1000: 1250, cost_output_x1000: 10000, arena_overall: 0 },
    ModelInfoEntry { name: "databricks-gpt-5-1", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 272000, max_output_tokens: 128000, cost_input_x1000: 1250, cost_output_x1000: 10000, arena_overall: 0 },
    ModelInfoEntry { name: "databricks-gpt-5-mini", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 272000, max_output_tokens: 128000, cost_input_x1000: 250, cost_output_x1000: 2000, arena_overall: 0 },
    ModelInfoEntry { name: "databricks-gpt-5-nano", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 272000, max_output_tokens: 128000, cost_input_x1000: 50, cost_output_x1000: 400, arena_overall: 0 },
    ModelInfoEntry { name: "databricks-gpt-oss-120b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 150, cost_output_x1000: 600, arena_overall: 0 },
    ModelInfoEntry { name: "databricks-gpt-oss-20b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 70, cost_output_x1000: 300, arena_overall: 0 },
    ModelInfoEntry { name: "databricks-llama-2-70b-chat", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 500, cost_output_x1000: 1500, arena_overall: 0 },
    ModelInfoEntry { name: "databricks-llama-4-maverick", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 128000, cost_input_x1000: 500, cost_output_x1000: 1500, arena_overall: 0 },
    ModelInfoEntry { name: "databricks-meta-llama-3-1-405b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 128000, cost_input_x1000: 5000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "databricks-meta-llama-3-1-8b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 128000, cost_input_x1000: 150, cost_output_x1000: 450, arena_overall: 0 },
    ModelInfoEntry { name: "databricks-meta-llama-3-3-70b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 128000, cost_input_x1000: 500, cost_output_x1000: 1500, arena_overall: 0 },
    ModelInfoEntry { name: "databricks-meta-llama-3-70b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 128000, cost_input_x1000: 1000, cost_output_x1000: 3000, arena_overall: 0 },
    ModelInfoEntry { name: "databricks-mixtral-8x7b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 500, cost_output_x1000: 1000, arena_overall: 0 },
    ModelInfoEntry { name: "databricks-mpt-30b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 1000, cost_output_x1000: 1000, arena_overall: 0 },
    ModelInfoEntry { name: "databricks-mpt-7b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 500, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "davinci-002", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 4096, cost_input_x1000: 2000, cost_output_x1000: 2000, arena_overall: 0 },
    ModelInfoEntry { name: "dbrx-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 1200, cost_output_x1000: 1200, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-chat", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 163840, max_output_tokens: 163840, cost_input_x1000: 140, cost_output_x1000: 280, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-chat-v3-0324", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 163840, max_output_tokens: 8192, cost_input_x1000: 140, cost_output_x1000: 280, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-chat-v3.1", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 163840, max_output_tokens: 163840, cost_input_x1000: 200, cost_output_x1000: 800, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-coder", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 140, cost_output_x1000: 280, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-coder-1b-base", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 16384, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-coder-33b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 16384, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-coder-6.7b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 4096, cost_input_x1000: 60, cost_output_x1000: 120, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-coder-7b-base", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-coder-7b-base-v1p5", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-coder-7b-instruct-v1p5", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-coder-v2-base", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-coder-v2-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 65536, max_output_tokens: 65536, cost_input_x1000: 1200, cost_output_x1000: 1200, arena_overall: 5742 },
    ModelInfoEntry { name: "deepseek-coder-v2-lite-base", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 163840, max_output_tokens: 163840, cost_input_x1000: 500, cost_output_x1000: 500, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-coder-v2-lite-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 163840, max_output_tokens: 163840, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-llama3.3-70b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 200, cost_output_x1000: 600, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-ocr", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 30, cost_output_x1000: 30, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-prover-v2", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 163840, max_output_tokens: 163840, cost_input_x1000: 1200, cost_output_x1000: 1200, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-prover-v2-671b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 160000, max_output_tokens: 160000, cost_input_x1000: 700, cost_output_x1000: 2500, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-r1", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 163840, max_output_tokens: 163840, cost_input_x1000: 1350, cost_output_x1000: 5400, arena_overall: 8470 },
    ModelInfoEntry { name: "deepseek-r1-0528", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 164000, max_output_tokens: 164000, cost_input_x1000: 500, cost_output_x1000: 2150, arena_overall: 9242 },
    ModelInfoEntry { name: "deepseek-r1-0528-distill-qwen3-8b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-r1-0528-maas", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 65336, max_output_tokens: 8192, cost_input_x1000: 1350, cost_output_x1000: 5400, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-r1-0528-qwen3-8b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 32000, cost_input_x1000: 60, cost_output_x1000: 90, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-r1-0528-tput", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 0, cost_input_x1000: 550, cost_output_x1000: 2190, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-r1-0528-turbo", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 1000, cost_output_x1000: 3000, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-r1-671b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 800, cost_output_x1000: 800, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-r1-7b-qwen", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 16384, cost_input_x1000: 80, cost_output_x1000: 150, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-r1-8b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 65536, max_output_tokens: 16384, cost_input_x1000: 100, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-r1-basic", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 20480, cost_input_x1000: 550, cost_output_x1000: 2190, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-r1-distill-llama-70b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 375, cost_output_x1000: 375, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-r1-distill-llama-8b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-r1-distill-qwen-1.5b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 90, cost_output_x1000: 90, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-r1-distill-qwen-14b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 150, cost_output_x1000: 150, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-r1-distill-qwen-1p5b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-r1-distill-qwen-32b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 300, cost_output_x1000: 300, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-r1-distill-qwen-7b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-r1-turbo", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 64000, max_output_tokens: 40960, cost_input_x1000: 700, cost_output_x1000: 2500, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-r1t2-chimera", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 163840, max_output_tokens: 163840, cost_input_x1000: 300, cost_output_x1000: 1100, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-reasoner", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 65536, cost_input_x1000: 280, cost_output_x1000: 420, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-v2-lite-chat", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 163840, max_output_tokens: 163840, cost_input_x1000: 500, cost_output_x1000: 500, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-v2p5", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 1200, cost_output_x1000: 1200, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-v3", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 163840, max_output_tokens: 163840, cost_input_x1000: 500, cost_output_x1000: 1500, arena_overall: 7879 },
    ModelInfoEntry { name: "deepseek-v3-0324", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 163840, max_output_tokens: 163840, cost_input_x1000: 270, cost_output_x1000: 1120, arena_overall: 8606 },
    ModelInfoEntry { name: "deepseek-v3-2-251201", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 98304, max_output_tokens: 32768, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-v3-turbo", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 64000, max_output_tokens: 16000, cost_input_x1000: 400, cost_output_x1000: 1300, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-v3.1", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 163840, max_output_tokens: 163840, cost_input_x1000: 270, cost_output_x1000: 1000, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-v3.1-maas", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 163840, max_output_tokens: 32768, cost_input_x1000: 1350, cost_output_x1000: 5400, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-v3.1-nex-n1", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 163840, cost_input_x1000: 135, cost_output_x1000: 500, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-v3.1-terminus", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 163840, max_output_tokens: 163840, cost_input_x1000: 270, cost_output_x1000: 1000, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-v3.1:671b-cloud", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 163840, max_output_tokens: 163840, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-v3.2", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 163840, max_output_tokens: 163840, cost_input_x1000: 269, cost_output_x1000: 400, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-v3.2-exp", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 163840, max_output_tokens: 163840, cost_input_x1000: 270, cost_output_x1000: 410, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-v3.2-maas", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 163840, max_output_tokens: 32768, cost_input_x1000: 560, cost_output_x1000: 1680, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-v3.2-speciale", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 163840, max_output_tokens: 163840, cost_input_x1000: 580, cost_output_x1000: 1680, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-v3p1", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 8192, cost_input_x1000: 560, cost_output_x1000: 1680, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-v3p1-terminus", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 8192, cost_input_x1000: 560, cost_output_x1000: 1680, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek-v3p2", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 163840, max_output_tokens: 163840, cost_input_x1000: 560, cost_output_x1000: 1680, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek.v3-v1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 163840, max_output_tokens: 81920, cost_input_x1000: 580, cost_output_x1000: 1680, arena_overall: 0 },
    ModelInfoEntry { name: "deepseek.v3.2", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 163840, max_output_tokens: 163840, cost_input_x1000: 740, cost_output_x1000: 2220, arena_overall: 0 },
    ModelInfoEntry { name: "devstral-2512", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 256000, cost_input_x1000: 150, cost_output_x1000: 600, arena_overall: 0 },
    ModelInfoEntry { name: "devstral-latest", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 256000, max_output_tokens: 256000, cost_input_x1000: 400, cost_output_x1000: 2000, arena_overall: 0 },
    ModelInfoEntry { name: "devstral-medium", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 0, cost_input_x1000: 400, cost_output_x1000: 2000, arena_overall: 0 },
    ModelInfoEntry { name: "devstral-medium-2507", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 128000, cost_input_x1000: 400, cost_output_x1000: 2000, arena_overall: 0 },
    ModelInfoEntry { name: "devstral-medium-latest", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 256000, max_output_tokens: 256000, cost_input_x1000: 400, cost_output_x1000: 2000, arena_overall: 0 },
    ModelInfoEntry { name: "devstral-small", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 128000, cost_input_x1000: 70, cost_output_x1000: 280, arena_overall: 0 },
    ModelInfoEntry { name: "devstral-small-2505", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 100, cost_output_x1000: 300, arena_overall: 0 },
    ModelInfoEntry { name: "devstral-small-2507", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 128000, cost_input_x1000: 100, cost_output_x1000: 300, arena_overall: 0 },
    ModelInfoEntry { name: "devstral-small-latest", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 256000, max_output_tokens: 256000, cost_input_x1000: 100, cost_output_x1000: 300, arena_overall: 0 },
    ModelInfoEntry { name: "dobby-mini-unhinged-plus-llama-3-1-8b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "dobby-unhinged-llama-3-3-70b-new", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "dolphin", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 16384, cost_input_x1000: 500, cost_output_x1000: 500, arena_overall: 0 },
    ModelInfoEntry { name: "dolphin-2-9-2-qwen2-72b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "dolphin-2p6-mixtral-8x7b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 500, cost_output_x1000: 500, arena_overall: 0 },
    ModelInfoEntry { name: "dolphin-mistral-24b-venice-edition:free", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 0, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "dolphin3-8b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 8192, cost_input_x1000: 80, cost_output_x1000: 150, arena_overall: 0 },
    ModelInfoEntry { name: "doubao-seed-2-0-code-preview-260215", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 256000, max_output_tokens: 128000, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "doubao-seed-2-0-lite-260215", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 256000, max_output_tokens: 128000, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "doubao-seed-2-0-mini-260215", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 256000, max_output_tokens: 128000, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "doubao-seed-2-0-pro-260215", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 256000, max_output_tokens: 128000, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "embed-v4.0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 120, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "ernie-4.5-21b-a3b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 120000, max_output_tokens: 8000, cost_input_x1000: 70, cost_output_x1000: 280, arena_overall: 0 },
    ModelInfoEntry { name: "ernie-4.5-21b-a3b-thinking", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 65536, cost_input_x1000: 70, cost_output_x1000: 280, arena_overall: 0 },
    ModelInfoEntry { name: "ernie-4.5-300b-a47b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 123000, max_output_tokens: 12000, cost_input_x1000: 280, cost_output_x1000: 1100, arena_overall: 0 },
    ModelInfoEntry { name: "ernie-4.5-300b-a47b-paddle", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 123000, max_output_tokens: 12000, cost_input_x1000: 280, cost_output_x1000: 1100, arena_overall: 0 },
    ModelInfoEntry { name: "ernie-4.5-vl-28b-a3b", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 30000, max_output_tokens: 8000, cost_input_x1000: 140, cost_output_x1000: 560, arena_overall: 0 },
    ModelInfoEntry { name: "ernie-4.5-vl-28b-a3b-thinking", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 65536, cost_input_x1000: 390, cost_output_x1000: 390, arena_overall: 0 },
    ModelInfoEntry { name: "ernie-4.5-vl-424b-a47b", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 123000, max_output_tokens: 16000, cost_input_x1000: 420, cost_output_x1000: 1250, arena_overall: 0 },
    ModelInfoEntry { name: "ernie-4p5-21b-a3b-pt", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "ernie-4p5-300b-a47b-pt", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "eu.amazon.nova-2-lite-v1:0", supports_vision: true, supports_audio: false, supports_video: true, supports_pdf: true, max_input_tokens: 1000000, max_output_tokens: 64000, cost_input_x1000: 330, cost_output_x1000: 2750, arena_overall: 0 },
    ModelInfoEntry { name: "eu.amazon.nova-2-pro-preview-20251202-v1:0", supports_vision: true, supports_audio: false, supports_video: true, supports_pdf: true, max_input_tokens: 1000000, max_output_tokens: 64000, cost_input_x1000: 2188, cost_output_x1000: 17500, arena_overall: 0 },
    ModelInfoEntry { name: "eu.amazon.nova-lite-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 300000, max_output_tokens: 10000, cost_input_x1000: 78, cost_output_x1000: 312, arena_overall: 0 },
    ModelInfoEntry { name: "eu.amazon.nova-micro-v1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 10000, cost_input_x1000: 46, cost_output_x1000: 184, arena_overall: 0 },
    ModelInfoEntry { name: "eu.amazon.nova-pro-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 300000, max_output_tokens: 10000, cost_input_x1000: 1050, cost_output_x1000: 4200, arena_overall: 0 },
    ModelInfoEntry { name: "eu.anthropic.claude-3-5-haiku-20241022-v1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 8192, cost_input_x1000: 250, cost_output_x1000: 1250, arena_overall: 0 },
    ModelInfoEntry { name: "eu.anthropic.claude-3-5-sonnet-20240620-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 4096, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "eu.anthropic.claude-3-5-sonnet-20241022-v2:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 8192, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "eu.anthropic.claude-3-7-sonnet-20250219-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 8192, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "eu.anthropic.claude-3-haiku-20240307-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 4096, cost_input_x1000: 250, cost_output_x1000: 1250, arena_overall: 0 },
    ModelInfoEntry { name: "eu.anthropic.claude-3-opus-20240229-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 4096, cost_input_x1000: 15000, cost_output_x1000: 75000, arena_overall: 0 },
    ModelInfoEntry { name: "eu.anthropic.claude-3-sonnet-20240229-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 4096, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "eu.anthropic.claude-haiku-4-5-20251001-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 64000, cost_input_x1000: 1100, cost_output_x1000: 5500, arena_overall: 0 },
    ModelInfoEntry { name: "eu.anthropic.claude-opus-4-1-20250805-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 32000, cost_input_x1000: 15000, cost_output_x1000: 75000, arena_overall: 0 },
    ModelInfoEntry { name: "eu.anthropic.claude-opus-4-20250514-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 32000, cost_input_x1000: 15000, cost_output_x1000: 75000, arena_overall: 0 },
    ModelInfoEntry { name: "eu.anthropic.claude-opus-4-5-20251101-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 64000, cost_input_x1000: 5000, cost_output_x1000: 25000, arena_overall: 0 },
    ModelInfoEntry { name: "eu.anthropic.claude-opus-4-6-v1", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 1000000, max_output_tokens: 128000, cost_input_x1000: 5500, cost_output_x1000: 27500, arena_overall: 0 },
    ModelInfoEntry { name: "eu.anthropic.claude-sonnet-4-20250514-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 1000000, max_output_tokens: 64000, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "eu.anthropic.claude-sonnet-4-5-20250929-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 64000, cost_input_x1000: 3300, cost_output_x1000: 16500, arena_overall: 0 },
    ModelInfoEntry { name: "eu.anthropic.claude-sonnet-4-6", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 1000000, max_output_tokens: 64000, cost_input_x1000: 3300, cost_output_x1000: 16500, arena_overall: 0 },
    ModelInfoEntry { name: "eu.deepseek.v3.2", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 163840, max_output_tokens: 163840, cost_input_x1000: 740, cost_output_x1000: 2220, arena_overall: 0 },
    ModelInfoEntry { name: "eu.meta.llama3-2-1b-instruct-v1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 130, cost_output_x1000: 130, arena_overall: 0 },
    ModelInfoEntry { name: "eu.meta.llama3-2-3b-instruct-v1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 190, cost_output_x1000: 190, arena_overall: 0 },
    ModelInfoEntry { name: "eu.mistral.pixtral-large-2502-v1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 2000, cost_output_x1000: 6000, arena_overall: 0 },
    ModelInfoEntry { name: "eu.twelvelabs.pegasus-1-2-v1:0", supports_vision: false, supports_audio: false, supports_video: true, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 0, cost_output_x1000: 7500, arena_overall: 0 },
    ModelInfoEntry { name: "fare-20b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "firefunction-v1", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 500, cost_output_x1000: 500, arena_overall: 0 },
    ModelInfoEntry { name: "firefunction-v2", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "firellava-13b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "firesearch-ocr-v6", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "fireworks-ai-4.1b-to-16b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "fireworks-ai-56b-to-176b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 1200, cost_output_x1000: 1200, arena_overall: 0 },
    ModelInfoEntry { name: "fireworks-ai-above-16b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "fireworks-ai-default", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "fireworks-ai-embedding-150m-to-350m", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 16, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "fireworks-ai-embedding-up-to-150m", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 8, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "fireworks-ai-moe-up-to-56b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 500, cost_output_x1000: 500, arena_overall: 0 },
    ModelInfoEntry { name: "fireworks-ai-up-to-4b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "flan-t5-xl-3b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 600, cost_output_x1000: 600, arena_overall: 0 },
    ModelInfoEntry { name: "flux-1-dev", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "flux-1-dev-controlnet-union", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 1, cost_output_x1000: 1, arena_overall: 0 },
    ModelInfoEntry { name: "flux-1-schnell", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "free", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 0, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "ft:babbage-002", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 4096, cost_input_x1000: 1600, cost_output_x1000: 1600, arena_overall: 0 },
    ModelInfoEntry { name: "ft:davinci-002", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 4096, cost_input_x1000: 12000, cost_output_x1000: 12000, arena_overall: 0 },
    ModelInfoEntry { name: "ft:gpt-3.5-turbo", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16385, max_output_tokens: 4096, cost_input_x1000: 3000, cost_output_x1000: 6000, arena_overall: 0 },
    ModelInfoEntry { name: "ft:gpt-3.5-turbo-0125", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16385, max_output_tokens: 4096, cost_input_x1000: 3000, cost_output_x1000: 6000, arena_overall: 0 },
    ModelInfoEntry { name: "ft:gpt-3.5-turbo-0613", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 3000, cost_output_x1000: 6000, arena_overall: 0 },
    ModelInfoEntry { name: "ft:gpt-3.5-turbo-1106", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16385, max_output_tokens: 4096, cost_input_x1000: 3000, cost_output_x1000: 6000, arena_overall: 0 },
    ModelInfoEntry { name: "ft:gpt-4-0613", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 4096, cost_input_x1000: 30000, cost_output_x1000: 60000, arena_overall: 0 },
    ModelInfoEntry { name: "ft:gpt-4.1-2025-04-14", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 1047576, max_output_tokens: 32768, cost_input_x1000: 3000, cost_output_x1000: 12000, arena_overall: 0 },
    ModelInfoEntry { name: "ft:gpt-4.1-mini-2025-04-14", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 1047576, max_output_tokens: 32768, cost_input_x1000: 800, cost_output_x1000: 3200, arena_overall: 0 },
    ModelInfoEntry { name: "ft:gpt-4.1-nano-2025-04-14", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 1047576, max_output_tokens: 32768, cost_input_x1000: 200, cost_output_x1000: 800, arena_overall: 0 },
    ModelInfoEntry { name: "ft:gpt-4o-2024-08-06", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 128000, max_output_tokens: 16384, cost_input_x1000: 3750, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "ft:gpt-4o-2024-11-20", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 128000, max_output_tokens: 16384, cost_input_x1000: 3750, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "ft:gpt-4o-mini-2024-07-18", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 128000, max_output_tokens: 16384, cost_input_x1000: 300, cost_output_x1000: 1200, arena_overall: 0 },
    ModelInfoEntry { name: "ft:o4-mini-2025-04-16", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 100000, cost_input_x1000: 4000, cost_output_x1000: 16000, arena_overall: 0 },
    ModelInfoEntry { name: "gemini-2.0-flash", supports_vision: true, supports_audio: true, supports_video: false, supports_pdf: false, max_input_tokens: 1048576, max_output_tokens: 8192, cost_input_x1000: 100, cost_output_x1000: 400, arena_overall: 0 },
    ModelInfoEntry { name: "gemini-2.0-flash-001", supports_vision: true, supports_audio: true, supports_video: true, supports_pdf: false, max_input_tokens: 1048576, max_output_tokens: 1000000, cost_input_x1000: 100, cost_output_x1000: 400, arena_overall: 8288 },
    ModelInfoEntry { name: "gemini-2.0-flash-lite", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 1048576, max_output_tokens: 8192, cost_input_x1000: 75, cost_output_x1000: 300, arena_overall: 7788 },
    ModelInfoEntry { name: "gemini-2.0-flash-lite-001", supports_vision: true, supports_audio: true, supports_video: true, supports_pdf: false, max_input_tokens: 1048576, max_output_tokens: 8192, cost_input_x1000: 75, cost_output_x1000: 300, arena_overall: 0 },
    ModelInfoEntry { name: "gemini-2.5-computer-use-preview-10-2025", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 64000, cost_input_x1000: 1250, cost_output_x1000: 10000, arena_overall: 0 },
    ModelInfoEntry { name: "gemini-2.5-flash", supports_vision: true, supports_audio: true, supports_video: true, supports_pdf: true, max_input_tokens: 1048576, max_output_tokens: 1000000, cost_input_x1000: 300, cost_output_x1000: 2500, arena_overall: 9136 },
    ModelInfoEntry { name: "gemini-2.5-flash-image", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 300, cost_output_x1000: 2500, arena_overall: 0 },
    ModelInfoEntry { name: "gemini-2.5-flash-lite", supports_vision: true, supports_audio: true, supports_video: true, supports_pdf: true, max_input_tokens: 1048576, max_output_tokens: 65535, cost_input_x1000: 100, cost_output_x1000: 400, arena_overall: 0 },
    ModelInfoEntry { name: "gemini-2.5-flash-lite-preview-06-17", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 1048576, max_output_tokens: 65535, cost_input_x1000: 100, cost_output_x1000: 400, arena_overall: 0 },
    ModelInfoEntry { name: "gemini-2.5-flash-lite-preview-09-2025", supports_vision: true, supports_audio: true, supports_video: true, supports_pdf: true, max_input_tokens: 1048576, max_output_tokens: 65535, cost_input_x1000: 100, cost_output_x1000: 400, arena_overall: 0 },
    ModelInfoEntry { name: "gemini-2.5-flash-native-audio-latest", supports_vision: false, supports_audio: true, supports_video: false, supports_pdf: false, max_input_tokens: 1048576, max_output_tokens: 8192, cost_input_x1000: 300, cost_output_x1000: 2500, arena_overall: 0 },
    ModelInfoEntry { name: "gemini-2.5-flash-native-audio-preview-09-2025", supports_vision: false, supports_audio: true, supports_video: false, supports_pdf: false, max_input_tokens: 1048576, max_output_tokens: 8192, cost_input_x1000: 300, cost_output_x1000: 2500, arena_overall: 0 },
    ModelInfoEntry { name: "gemini-2.5-flash-native-audio-preview-12-2025", supports_vision: false, supports_audio: true, supports_video: false, supports_pdf: false, max_input_tokens: 1048576, max_output_tokens: 8192, cost_input_x1000: 300, cost_output_x1000: 2500, arena_overall: 0 },
    ModelInfoEntry { name: "gemini-2.5-flash-preview-09-2025", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 1048576, max_output_tokens: 65535, cost_input_x1000: 300, cost_output_x1000: 2500, arena_overall: 0 },
    ModelInfoEntry { name: "gemini-2.5-pro", supports_vision: true, supports_audio: true, supports_video: true, supports_pdf: true, max_input_tokens: 1048576, max_output_tokens: 1000000, cost_input_x1000: 1250, cost_output_x1000: 10000, arena_overall: 10000 },
    ModelInfoEntry { name: "gemini-2.5-pro-preview", supports_vision: true, supports_audio: true, supports_video: false, supports_pdf: false, max_input_tokens: 1048576, max_output_tokens: 65536, cost_input_x1000: 1250, cost_output_x1000: 10000, arena_overall: 0 },
    ModelInfoEntry { name: "gemini-2.5-pro-preview-05-06", supports_vision: true, supports_audio: true, supports_video: true, supports_pdf: false, max_input_tokens: 1048576, max_output_tokens: 65535, cost_input_x1000: 1250, cost_output_x1000: 10000, arena_overall: 9576 },
    ModelInfoEntry { name: "gemini-2.5-pro-preview-tts", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 1048576, max_output_tokens: 65535, cost_input_x1000: 1250, cost_output_x1000: 10000, arena_overall: 0 },
    ModelInfoEntry { name: "gemini-3-flash-preview", supports_vision: true, supports_audio: true, supports_video: true, supports_pdf: true, max_input_tokens: 1048576, max_output_tokens: 65536, cost_input_x1000: 500, cost_output_x1000: 3000, arena_overall: 0 },
    ModelInfoEntry { name: "gemini-3-pro", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 2000, cost_output_x1000: 12000, arena_overall: 0 },
    ModelInfoEntry { name: "gemini-3-pro-image-preview", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 65536, max_output_tokens: 32768, cost_input_x1000: 2000, cost_output_x1000: 12000, arena_overall: 0 },
    ModelInfoEntry { name: "gemini-3-pro-preview", supports_vision: true, supports_audio: true, supports_video: true, supports_pdf: true, max_input_tokens: 1048576, max_output_tokens: 65536, cost_input_x1000: 2000, cost_output_x1000: 12000, arena_overall: 0 },
    ModelInfoEntry { name: "gemini-3.1-flash-image-preview", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 65536, max_output_tokens: 65536, cost_input_x1000: 500, cost_output_x1000: 3000, arena_overall: 0 },
    ModelInfoEntry { name: "gemini-3.1-flash-lite-preview", supports_vision: true, supports_audio: true, supports_video: true, supports_pdf: true, max_input_tokens: 1048576, max_output_tokens: 65536, cost_input_x1000: 250, cost_output_x1000: 1500, arena_overall: 0 },
    ModelInfoEntry { name: "gemini-3.1-flash-live-preview", supports_vision: true, supports_audio: true, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 65536, cost_input_x1000: 750, cost_output_x1000: 4500, arena_overall: 0 },
    ModelInfoEntry { name: "gemini-3.1-pro-preview", supports_vision: true, supports_audio: true, supports_video: true, supports_pdf: true, max_input_tokens: 1048576, max_output_tokens: 65536, cost_input_x1000: 2000, cost_output_x1000: 12000, arena_overall: 0 },
    ModelInfoEntry { name: "gemini-3.1-pro-preview-customtools", supports_vision: true, supports_audio: true, supports_video: true, supports_pdf: true, max_input_tokens: 1048576, max_output_tokens: 65536, cost_input_x1000: 2000, cost_output_x1000: 12000, arena_overall: 0 },
    ModelInfoEntry { name: "gemini-exp-1114", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 1048576, max_output_tokens: 8192, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "gemini-exp-1206", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 2097152, max_output_tokens: 65535, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "gemini-flash-latest", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 1048576, max_output_tokens: 65535, cost_input_x1000: 300, cost_output_x1000: 2500, arena_overall: 0 },
    ModelInfoEntry { name: "gemini-flash-lite-latest", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 1048576, max_output_tokens: 65535, cost_input_x1000: 100, cost_output_x1000: 400, arena_overall: 0 },
    ModelInfoEntry { name: "gemini-gemma-2-27b-it", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 8192, cost_input_x1000: 350, cost_output_x1000: 1050, arena_overall: 0 },
    ModelInfoEntry { name: "gemini-gemma-2-9b-it", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 8192, cost_input_x1000: 350, cost_output_x1000: 1050, arena_overall: 0 },
    ModelInfoEntry { name: "gemini-pro-latest", supports_vision: true, supports_audio: true, supports_video: true, supports_pdf: true, max_input_tokens: 1048576, max_output_tokens: 65535, cost_input_x1000: 1250, cost_output_x1000: 10000, arena_overall: 0 },
    ModelInfoEntry { name: "gemini-robotics-er-1.5-preview", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 1048576, max_output_tokens: 65535, cost_input_x1000: 300, cost_output_x1000: 2500, arena_overall: 0 },
    ModelInfoEntry { name: "gemma-2-27b-it", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 2048, cost_input_x1000: 650, cost_output_x1000: 650, arena_overall: 6379 },
    ModelInfoEntry { name: "gemma-2-9b", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "gemma-2-9b-it", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 0, cost_input_x1000: 30, cost_output_x1000: 90, arena_overall: 5955 },
    ModelInfoEntry { name: "gemma-2b-it", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 2879 },
    ModelInfoEntry { name: "gemma-3-12b-it", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 50, cost_output_x1000: 100, arena_overall: 7924 },
    ModelInfoEntry { name: "gemma-3-12b-it:free", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 8192, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "gemma-3-27b-it", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 60, cost_output_x1000: 200, arena_overall: 8258 },
    ModelInfoEntry { name: "gemma-3-27b-it:free", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 8192, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "gemma-3-4b-it", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 40, cost_output_x1000: 80, arena_overall: 7227 },
    ModelInfoEntry { name: "gemma-3-4b-it-gguf", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 8192, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "gemma-3-4b-it:free", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 8192, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "gemma-3n-e2b-it:free", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 2048, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "gemma-3n-e4b-it", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 0, cost_input_x1000: 20, cost_output_x1000: 40, arena_overall: 7439 },
    ModelInfoEntry { name: "gemma-3n-e4b-it:free", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 2048, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "gemma-7b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "gemma-7b-it", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 3606 },
    ModelInfoEntry { name: "gemma-sea-lion-v4-27b-it", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 4096, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "gemma2-9b-it", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "gemma3-4b", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 8192, cost_input_x1000: 30, cost_output_x1000: 80, arena_overall: 0 },
    ModelInfoEntry { name: "gigachat-2-lite", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 8192, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "gigachat-2-max", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 8192, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "gigachat-2-pro", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 8192, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "glm-4-32b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 0, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "glm-4-32b-0414-128k", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 32000, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "glm-4-7-251222", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 204800, max_output_tokens: 131072, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "glm-4.5", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 600, cost_output_x1000: 2200, arena_overall: 0 },
    ModelInfoEntry { name: "glm-4.5-air", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 98304, cost_input_x1000: 130, cost_output_x1000: 850, arena_overall: 0 },
    ModelInfoEntry { name: "glm-4.5-air-fp8", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 0, cost_input_x1000: 200, cost_output_x1000: 1100, arena_overall: 0 },
    ModelInfoEntry { name: "glm-4.5-air:free", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 96000, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "glm-4.5-airx", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 32000, cost_input_x1000: 1100, cost_output_x1000: 4500, arena_overall: 0 },
    ModelInfoEntry { name: "glm-4.5-flash", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 32000, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "glm-4.5-x", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 32000, cost_input_x1000: 2200, cost_output_x1000: 8900, arena_overall: 0 },
    ModelInfoEntry { name: "glm-4.5v", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 32000, cost_input_x1000: 600, cost_output_x1000: 1800, arena_overall: 0 },
    ModelInfoEntry { name: "glm-4.6", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 204800, max_output_tokens: 204800, cost_input_x1000: 400, cost_output_x1000: 1750, arena_overall: 0 },
    ModelInfoEntry { name: "glm-4.6:exacto", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 202800, max_output_tokens: 131000, cost_input_x1000: 450, cost_output_x1000: 1900, arena_overall: 0 },
    ModelInfoEntry { name: "glm-4.6v", supports_vision: true, supports_audio: false, supports_video: true, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 300, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "glm-4.7", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 204800, max_output_tokens: 200000, cost_input_x1000: 400, cost_output_x1000: 1500, arena_overall: 0 },
    ModelInfoEntry { name: "glm-4.7-flash", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 202752, max_output_tokens: 32000, cost_input_x1000: 70, cost_output_x1000: 400, arena_overall: 0 },
    ModelInfoEntry { name: "glm-4.7-fp8", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 202752, max_output_tokens: 16384, cost_input_x1000: 400, cost_output_x1000: 2000, arena_overall: 0 },
    ModelInfoEntry { name: "glm-4.7-maas", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 128000, cost_input_x1000: 600, cost_output_x1000: 2200, arena_overall: 0 },
    ModelInfoEntry { name: "glm-4p5", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 96000, cost_input_x1000: 550, cost_output_x1000: 2190, arena_overall: 0 },
    ModelInfoEntry { name: "glm-4p5-air", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 96000, cost_input_x1000: 220, cost_output_x1000: 880, arena_overall: 0 },
    ModelInfoEntry { name: "glm-4p5v", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 1200, cost_output_x1000: 1200, arena_overall: 0 },
    ModelInfoEntry { name: "glm-4p6", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 202800, max_output_tokens: 202800, cost_input_x1000: 550, cost_output_x1000: 2190, arena_overall: 0 },
    ModelInfoEntry { name: "glm-4p7", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 202800, max_output_tokens: 202800, cost_input_x1000: 600, cost_output_x1000: 2200, arena_overall: 0 },
    ModelInfoEntry { name: "glm-5", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 202752, max_output_tokens: 131072, cost_input_x1000: 800, cost_output_x1000: 2560, arena_overall: 0 },
    ModelInfoEntry { name: "glm-5-code", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 128000, cost_input_x1000: 1200, cost_output_x1000: 5000, arena_overall: 0 },
    ModelInfoEntry { name: "glm-5-maas", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 128000, cost_input_x1000: 1000, cost_output_x1000: 3200, arena_overall: 0 },
    ModelInfoEntry { name: "glm-5-turbo", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 202752, max_output_tokens: 131072, cost_input_x1000: 1200, cost_output_x1000: 4000, arena_overall: 0 },
    ModelInfoEntry { name: "glm-5v-turbo", supports_vision: true, supports_audio: false, supports_video: true, supports_pdf: false, max_input_tokens: 202752, max_output_tokens: 131072, cost_input_x1000: 1200, cost_output_x1000: 4000, arena_overall: 0 },
    ModelInfoEntry { name: "global.amazon.nova-2-lite-v1:0", supports_vision: true, supports_audio: false, supports_video: true, supports_pdf: true, max_input_tokens: 1000000, max_output_tokens: 64000, cost_input_x1000: 300, cost_output_x1000: 2500, arena_overall: 0 },
    ModelInfoEntry { name: "global.anthropic.claude-haiku-4-5-20251001-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 64000, cost_input_x1000: 1000, cost_output_x1000: 5000, arena_overall: 0 },
    ModelInfoEntry { name: "global.anthropic.claude-opus-4-5-20251101-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 64000, cost_input_x1000: 5000, cost_output_x1000: 25000, arena_overall: 0 },
    ModelInfoEntry { name: "global.anthropic.claude-opus-4-6-v1", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 1000000, max_output_tokens: 128000, cost_input_x1000: 5000, cost_output_x1000: 25000, arena_overall: 0 },
    ModelInfoEntry { name: "global.anthropic.claude-sonnet-4-20250514-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 1000000, max_output_tokens: 64000, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "global.anthropic.claude-sonnet-4-5-20250929-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 64000, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "global.anthropic.claude-sonnet-4-6", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 1000000, max_output_tokens: 64000, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "goliath-120b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 6144, max_output_tokens: 1024, cost_input_x1000: 3750, cost_output_x1000: 7500, arena_overall: 0 },
    ModelInfoEntry { name: "google.gemma-3-12b-it", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 8192, cost_input_x1000: 90, cost_output_x1000: 290, arena_overall: 0 },
    ModelInfoEntry { name: "google.gemma-3-27b-it", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 8192, cost_input_x1000: 230, cost_output_x1000: 380, arena_overall: 0 },
    ModelInfoEntry { name: "google.gemma-3-4b-it", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 8192, cost_input_x1000: 40, cost_output_x1000: 80, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-3.5-turbo", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16385, max_output_tokens: 4096, cost_input_x1000: 1500, cost_output_x1000: 2000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-3.5-turbo-0125", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16385, max_output_tokens: 4096, cost_input_x1000: 500, cost_output_x1000: 1500, arena_overall: 4652 },
    ModelInfoEntry { name: "gpt-3.5-turbo-0613", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 4096, cost_input_x1000: 1000, cost_output_x1000: 2000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-3.5-turbo-1106", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16385, max_output_tokens: 4096, cost_input_x1000: 1000, cost_output_x1000: 2000, arena_overall: 4076 },
    ModelInfoEntry { name: "gpt-3.5-turbo-16k", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16385, max_output_tokens: 4096, cost_input_x1000: 3000, cost_output_x1000: 4000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-3.5-turbo-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 4096, cost_input_x1000: 1500, cost_output_x1000: 2000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-3.5-turbo-instruct-0914", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 4097, cost_input_x1000: 1500, cost_output_x1000: 2000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-35-turbo", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4097, max_output_tokens: 4096, cost_input_x1000: 500, cost_output_x1000: 1500, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-35-turbo-0125", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 4096, cost_input_x1000: 500, cost_output_x1000: 1500, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-35-turbo-1106", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 4096, cost_input_x1000: 1000, cost_output_x1000: 2000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-35-turbo-16k", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16385, max_output_tokens: 4096, cost_input_x1000: 3000, cost_output_x1000: 4000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-35-turbo-16k-0613", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16385, max_output_tokens: 4096, cost_input_x1000: 3000, cost_output_x1000: 4000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-35-turbo-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4097, max_output_tokens: 0, cost_input_x1000: 1500, cost_output_x1000: 2000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-35-turbo-instruct-0914", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4097, max_output_tokens: 0, cost_input_x1000: 1500, cost_output_x1000: 2000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-4", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 4096, cost_input_x1000: 30000, cost_output_x1000: 60000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-4-0125-preview", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 10000, cost_output_x1000: 30000, arena_overall: 6758 },
    ModelInfoEntry { name: "gpt-4-0314", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 4096, cost_input_x1000: 30000, cost_output_x1000: 60000, arena_overall: 5864 },
    ModelInfoEntry { name: "gpt-4-0613", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 4096, cost_input_x1000: 30000, cost_output_x1000: 60000, arena_overall: 5515 },
    ModelInfoEntry { name: "gpt-4-1106-preview", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 10000, cost_output_x1000: 30000, arena_overall: 6833 },
    ModelInfoEntry { name: "gpt-4-32k", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 4096, cost_input_x1000: 60000, cost_output_x1000: 120000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-4-32k-0613", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 4096, cost_input_x1000: 60000, cost_output_x1000: 120000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-4-o-preview", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 64000, max_output_tokens: 4096, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-4-turbo", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 10000, cost_output_x1000: 30000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-4-turbo-2024-04-09", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 10000, cost_output_x1000: 30000, arena_overall: 6924 },
    ModelInfoEntry { name: "gpt-4-turbo-preview", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 10000, cost_output_x1000: 30000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-4-turbo-vision-preview", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 10000, cost_output_x1000: 30000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-4.1", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 1047576, max_output_tokens: 32768, cost_input_x1000: 2000, cost_output_x1000: 8000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-4.1-2025-04-14", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 1047576, max_output_tokens: 32768, cost_input_x1000: 2000, cost_output_x1000: 8000, arena_overall: 8636 },
    ModelInfoEntry { name: "gpt-4.1-mini", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 1047576, max_output_tokens: 32768, cost_input_x1000: 400, cost_output_x1000: 1600, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-4.1-mini-2025-04-14", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 1047576, max_output_tokens: 32768, cost_input_x1000: 400, cost_output_x1000: 1600, arena_overall: 7924 },
    ModelInfoEntry { name: "gpt-4.1-nano", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 1047576, max_output_tokens: 32768, cost_input_x1000: 100, cost_output_x1000: 400, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-4.1-nano-2025-04-14", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 1047576, max_output_tokens: 32768, cost_input_x1000: 100, cost_output_x1000: 400, arena_overall: 7167 },
    ModelInfoEntry { name: "gpt-4.5-preview", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 16384, cost_input_x1000: 75000, cost_output_x1000: 150000, arena_overall: 9076 },
    ModelInfoEntry { name: "gpt-41-copilot", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-4o", supports_vision: true, supports_audio: true, supports_video: false, supports_pdf: true, max_input_tokens: 131072, max_output_tokens: 16384, cost_input_x1000: 2500, cost_output_x1000: 10000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-4o-2024-05-13", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 5000, cost_output_x1000: 15000, arena_overall: 7364 },
    ModelInfoEntry { name: "gpt-4o-2024-08-06", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 128000, max_output_tokens: 16384, cost_input_x1000: 2500, cost_output_x1000: 10000, arena_overall: 7061 },
    ModelInfoEntry { name: "gpt-4o-2024-11-20", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 128000, max_output_tokens: 16384, cost_input_x1000: 2500, cost_output_x1000: 10000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-4o-audio-preview", supports_vision: false, supports_audio: true, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 16384, cost_input_x1000: 2500, cost_output_x1000: 10000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-4o-audio-preview-2024-12-17", supports_vision: false, supports_audio: true, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 16384, cost_input_x1000: 2500, cost_output_x1000: 10000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-4o-audio-preview-2025-06-03", supports_vision: false, supports_audio: true, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 16384, cost_input_x1000: 2500, cost_output_x1000: 10000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-4o-mini", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 131072, max_output_tokens: 16384, cost_input_x1000: 150, cost_output_x1000: 600, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-4o-mini-2024-07-18", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 128000, max_output_tokens: 16384, cost_input_x1000: 150, cost_output_x1000: 600, arena_overall: 7167 },
    ModelInfoEntry { name: "gpt-4o-mini-audio-preview", supports_vision: false, supports_audio: true, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 16384, cost_input_x1000: 150, cost_output_x1000: 600, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-4o-mini-audio-preview-2024-12-17", supports_vision: false, supports_audio: true, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 16384, cost_input_x1000: 150, cost_output_x1000: 600, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-4o-mini-realtime-preview", supports_vision: false, supports_audio: true, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 600, cost_output_x1000: 2400, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-4o-mini-realtime-preview-2024-12-17", supports_vision: false, supports_audio: true, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 660, cost_output_x1000: 2640, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-4o-mini-search-preview", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 128000, max_output_tokens: 16384, cost_input_x1000: 150, cost_output_x1000: 600, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-4o-mini-search-preview-2025-03-11", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 128000, max_output_tokens: 16384, cost_input_x1000: 150, cost_output_x1000: 600, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-4o-realtime-preview", supports_vision: false, supports_audio: true, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 5000, cost_output_x1000: 20000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-4o-realtime-preview-2024-10-01", supports_vision: false, supports_audio: true, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 5500, cost_output_x1000: 22000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-4o-realtime-preview-2024-12-17", supports_vision: false, supports_audio: true, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 5000, cost_output_x1000: 20000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-4o-realtime-preview-2025-06-03", supports_vision: false, supports_audio: true, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 5000, cost_output_x1000: 20000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-4o-search-preview", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 128000, max_output_tokens: 16384, cost_input_x1000: 2500, cost_output_x1000: 10000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-4o-search-preview-2025-03-11", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 128000, max_output_tokens: 16384, cost_input_x1000: 2500, cost_output_x1000: 10000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-4o:extended", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 64000, cost_input_x1000: 6000, cost_output_x1000: 18000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-5", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 409600, max_output_tokens: 128000, cost_input_x1000: 1250, cost_output_x1000: 10000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-5-2025-08-07", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 272000, max_output_tokens: 128000, cost_input_x1000: 1250, cost_output_x1000: 10000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-5-chat", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 128000, max_output_tokens: 16384, cost_input_x1000: 1250, cost_output_x1000: 10000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-5-chat-latest", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 128000, max_output_tokens: 16384, cost_input_x1000: 1250, cost_output_x1000: 10000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-5-codex", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 400000, max_output_tokens: 128000, cost_input_x1000: 1250, cost_output_x1000: 10000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-5-image", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 400000, max_output_tokens: 128000, cost_input_x1000: 10000, cost_output_x1000: 10000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-5-image-mini", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 400000, max_output_tokens: 128000, cost_input_x1000: 2500, cost_output_x1000: 2000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-5-mini", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 400000, max_output_tokens: 128000, cost_input_x1000: 250, cost_output_x1000: 2000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-5-mini-2025-08-07", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 272000, max_output_tokens: 128000, cost_input_x1000: 275, cost_output_x1000: 2200, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-5-nano", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 400000, max_output_tokens: 128000, cost_input_x1000: 50, cost_output_x1000: 400, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-5-nano-2025-08-07", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 272000, max_output_tokens: 128000, cost_input_x1000: 50, cost_output_x1000: 400, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-5-pro", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 400000, max_output_tokens: 128000, cost_input_x1000: 15000, cost_output_x1000: 120000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-5-search-api", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 272000, max_output_tokens: 128000, cost_input_x1000: 1250, cost_output_x1000: 10000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-5-search-api-2025-10-14", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 272000, max_output_tokens: 128000, cost_input_x1000: 1250, cost_output_x1000: 10000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-5.1", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 409600, max_output_tokens: 128000, cost_input_x1000: 1380, cost_output_x1000: 11000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-5.1-2025-11-13", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 272000, max_output_tokens: 128000, cost_input_x1000: 1250, cost_output_x1000: 10000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-5.1-chat", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 128000, max_output_tokens: 128000, cost_input_x1000: 1250, cost_output_x1000: 10000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-5.1-chat-2025-11-13", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 128000, max_output_tokens: 16384, cost_input_x1000: 1250, cost_output_x1000: 10000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-5.1-chat-latest", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 128000, max_output_tokens: 16384, cost_input_x1000: 1250, cost_output_x1000: 10000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-5.1-codex", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 400000, max_output_tokens: 128000, cost_input_x1000: 1250, cost_output_x1000: 10000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-5.1-codex-max", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 400000, max_output_tokens: 128000, cost_input_x1000: 1250, cost_output_x1000: 10000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-5.1-codex-mini", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 400000, max_output_tokens: 100000, cost_input_x1000: 250, cost_output_x1000: 2000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-5.2", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 409600, max_output_tokens: 128000, cost_input_x1000: 1750, cost_output_x1000: 14000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-5.2-2025-12-11", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 272000, max_output_tokens: 128000, cost_input_x1000: 1750, cost_output_x1000: 14000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-5.2-chat", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 128000, max_output_tokens: 16384, cost_input_x1000: 1750, cost_output_x1000: 14000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-5.2-chat-2025-12-11", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 128000, max_output_tokens: 16384, cost_input_x1000: 1750, cost_output_x1000: 14000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-5.2-chat-latest", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 128000, max_output_tokens: 16384, cost_input_x1000: 1750, cost_output_x1000: 14000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-5.2-codex", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 400000, max_output_tokens: 128000, cost_input_x1000: 1750, cost_output_x1000: 14000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-5.2-pro", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 400000, max_output_tokens: 128000, cost_input_x1000: 21000, cost_output_x1000: 168000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-5.3-chat", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 128000, max_output_tokens: 16384, cost_input_x1000: 1750, cost_output_x1000: 14000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-5.3-chat-latest", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 128000, max_output_tokens: 16384, cost_input_x1000: 1750, cost_output_x1000: 14000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-5.3-codex", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 400000, max_output_tokens: 128000, cost_input_x1000: 1750, cost_output_x1000: 14000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-5.4", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 1050000, max_output_tokens: 128000, cost_input_x1000: 2500, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-5.4-2026-03-05", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 1050000, max_output_tokens: 128000, cost_input_x1000: 2500, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-5.4-mini", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 1050000, max_output_tokens: 128000, cost_input_x1000: 750, cost_output_x1000: 4500, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-5.4-nano", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 1050000, max_output_tokens: 128000, cost_input_x1000: 200, cost_output_x1000: 1250, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-5.4-pro", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 1050000, max_output_tokens: 128000, cost_input_x1000: 30000, cost_output_x1000: 180000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-audio", supports_vision: false, supports_audio: true, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 16384, cost_input_x1000: 2500, cost_output_x1000: 10000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-audio-1.5", supports_vision: false, supports_audio: true, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 16384, cost_input_x1000: 2500, cost_output_x1000: 10000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-audio-1.5-2026-02-23", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 16384, cost_input_x1000: 2500, cost_output_x1000: 10000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-audio-2025-08-28", supports_vision: false, supports_audio: true, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 16384, cost_input_x1000: 2500, cost_output_x1000: 10000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-audio-mini", supports_vision: false, supports_audio: true, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 16384, cost_input_x1000: 600, cost_output_x1000: 2400, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-audio-mini-2025-10-06", supports_vision: false, supports_audio: true, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 16384, cost_input_x1000: 600, cost_output_x1000: 2400, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-audio-mini-2025-12-15", supports_vision: false, supports_audio: true, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 16384, cost_input_x1000: 600, cost_output_x1000: 2400, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-oss-120b", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 180, cost_output_x1000: 720, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-oss-120b-maas", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 32768, cost_input_x1000: 150, cost_output_x1000: 600, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-oss-120b-mxfp-gguf", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 32768, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-oss-120b:free", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-oss-20b", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 40, cost_output_x1000: 150, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-oss-20b-maas", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 32768, cost_input_x1000: 75, cost_output_x1000: 300, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-oss-20b-mxfp4-gguf", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 32768, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-oss-20b:free", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-oss-safeguard-120b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 1200, cost_output_x1000: 1200, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-oss-safeguard-20b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 75, cost_output_x1000: 300, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-oss:120b-cloud", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-oss:20b-cloud", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-realtime", supports_vision: false, supports_audio: true, supports_video: false, supports_pdf: false, max_input_tokens: 32000, max_output_tokens: 4096, cost_input_x1000: 4000, cost_output_x1000: 16000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-realtime-1.5", supports_vision: false, supports_audio: true, supports_video: false, supports_pdf: false, max_input_tokens: 32000, max_output_tokens: 4096, cost_input_x1000: 4000, cost_output_x1000: 16000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-realtime-1.5-2026-02-23", supports_vision: false, supports_audio: true, supports_video: false, supports_pdf: false, max_input_tokens: 32000, max_output_tokens: 4096, cost_input_x1000: 4000, cost_output_x1000: 16000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-realtime-2025-08-28", supports_vision: false, supports_audio: true, supports_video: false, supports_pdf: false, max_input_tokens: 32000, max_output_tokens: 4096, cost_input_x1000: 4000, cost_output_x1000: 16000, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-realtime-mini", supports_vision: false, supports_audio: true, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 600, cost_output_x1000: 2400, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-realtime-mini-2025-10-06", supports_vision: false, supports_audio: true, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 600, cost_output_x1000: 2400, arena_overall: 0 },
    ModelInfoEntry { name: "gpt-realtime-mini-2025-12-15", supports_vision: false, supports_audio: true, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 600, cost_output_x1000: 2400, arena_overall: 0 },
    ModelInfoEntry { name: "granite-13b-chat-v2", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 600, cost_output_x1000: 600, arena_overall: 0 },
    ModelInfoEntry { name: "granite-13b-instruct-v2", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 600, cost_output_x1000: 600, arena_overall: 0 },
    ModelInfoEntry { name: "granite-3-3-8b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "granite-3-8b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 1024, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "granite-3.3-8b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 30, cost_output_x1000: 250, arena_overall: 0 },
    ModelInfoEntry { name: "granite-4-h-small", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 20480, max_output_tokens: 20480, cost_input_x1000: 60, cost_output_x1000: 250, arena_overall: 0 },
    ModelInfoEntry { name: "granite-4.0-h-micro", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131000, max_output_tokens: 0, cost_input_x1000: 17, cost_output_x1000: 110, arena_overall: 0 },
    ModelInfoEntry { name: "granite-guardian-3-2-2b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "granite-guardian-3-3-8b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "granite-ttm-1024-96-r2", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 512, max_output_tokens: 512, cost_input_x1000: 380, cost_output_x1000: 380, arena_overall: 0 },
    ModelInfoEntry { name: "granite-ttm-1536-96-r2", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 512, max_output_tokens: 512, cost_input_x1000: 380, cost_output_x1000: 380, arena_overall: 0 },
    ModelInfoEntry { name: "granite-ttm-512-96-r2", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 512, max_output_tokens: 512, cost_input_x1000: 380, cost_output_x1000: 380, arena_overall: 0 },
    ModelInfoEntry { name: "granite-vision-3-2-2b", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "grok-2", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 2000, cost_output_x1000: 10000, arena_overall: 0 },
    ModelInfoEntry { name: "grok-2-1212", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 2000, cost_output_x1000: 10000, arena_overall: 0 },
    ModelInfoEntry { name: "grok-2-latest", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 2000, cost_output_x1000: 10000, arena_overall: 0 },
    ModelInfoEntry { name: "grok-2-vision", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 2000, cost_output_x1000: 10000, arena_overall: 0 },
    ModelInfoEntry { name: "grok-2-vision-1212", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 2000, cost_output_x1000: 10000, arena_overall: 0 },
    ModelInfoEntry { name: "grok-2-vision-latest", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 2000, cost_output_x1000: 10000, arena_overall: 0 },
    ModelInfoEntry { name: "grok-3", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "grok-3-beta", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "grok-3-fast", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 5000, cost_output_x1000: 25000, arena_overall: 0 },
    ModelInfoEntry { name: "grok-3-fast-beta", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 5000, cost_output_x1000: 25000, arena_overall: 0 },
    ModelInfoEntry { name: "grok-3-fast-latest", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 5000, cost_output_x1000: 25000, arena_overall: 0 },
    ModelInfoEntry { name: "grok-3-latest", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "grok-3-mini", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 300, cost_output_x1000: 500, arena_overall: 0 },
    ModelInfoEntry { name: "grok-3-mini-beta", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 300, cost_output_x1000: 500, arena_overall: 8227 },
    ModelInfoEntry { name: "grok-3-mini-fast", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 600, cost_output_x1000: 4000, arena_overall: 0 },
    ModelInfoEntry { name: "grok-3-mini-fast-beta", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 600, cost_output_x1000: 4000, arena_overall: 0 },
    ModelInfoEntry { name: "grok-3-mini-fast-latest", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 600, cost_output_x1000: 4000, arena_overall: 0 },
    ModelInfoEntry { name: "grok-3-mini-latest", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 300, cost_output_x1000: 500, arena_overall: 0 },
    ModelInfoEntry { name: "grok-4", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 256000, max_output_tokens: 256000, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "grok-4-0709", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 256000, max_output_tokens: 256000, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 9530 },
    ModelInfoEntry { name: "grok-4-1-fast-non-reasoning", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 200, cost_output_x1000: 500, arena_overall: 0 },
    ModelInfoEntry { name: "grok-4-1-fast-reasoning", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 200, cost_output_x1000: 500, arena_overall: 0 },
    ModelInfoEntry { name: "grok-4-fast", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 2000000, max_output_tokens: 30000, cost_input_x1000: 200, cost_output_x1000: 500, arena_overall: 0 },
    ModelInfoEntry { name: "grok-4-fast-non-reasoning", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 200, cost_output_x1000: 500, arena_overall: 0 },
    ModelInfoEntry { name: "grok-4-fast-reasoning", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 200, cost_output_x1000: 500, arena_overall: 0 },
    ModelInfoEntry { name: "grok-4-latest", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 256000, max_output_tokens: 256000, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "grok-4.1-fast", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 2000000, max_output_tokens: 30000, cost_input_x1000: 200, cost_output_x1000: 500, arena_overall: 0 },
    ModelInfoEntry { name: "grok-4.20", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 2000000, max_output_tokens: 0, cost_input_x1000: 2000, cost_output_x1000: 6000, arena_overall: 0 },
    ModelInfoEntry { name: "grok-4.20-beta-0309-non-reasoning", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 2000000, max_output_tokens: 2000000, cost_input_x1000: 2000, cost_output_x1000: 6000, arena_overall: 0 },
    ModelInfoEntry { name: "grok-4.20-beta-0309-reasoning", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 2000000, max_output_tokens: 2000000, cost_input_x1000: 2000, cost_output_x1000: 6000, arena_overall: 0 },
    ModelInfoEntry { name: "grok-4.20-multi-agent", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 2000000, max_output_tokens: 0, cost_input_x1000: 2000, cost_output_x1000: 6000, arena_overall: 0 },
    ModelInfoEntry { name: "grok-4.20-multi-agent-beta-0309", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 2000000, max_output_tokens: 2000000, cost_input_x1000: 2000, cost_output_x1000: 6000, arena_overall: 0 },
    ModelInfoEntry { name: "grok-beta", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 5000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "grok-code-fast", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 256000, max_output_tokens: 256000, cost_input_x1000: 200, cost_output_x1000: 1500, arena_overall: 0 },
    ModelInfoEntry { name: "grok-code-fast-1", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 256000, max_output_tokens: 256000, cost_input_x1000: 200, cost_output_x1000: 1500, arena_overall: 0 },
    ModelInfoEntry { name: "grok-code-fast-1-0825", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 256000, max_output_tokens: 256000, cost_input_x1000: 200, cost_output_x1000: 1500, arena_overall: 0 },
    ModelInfoEntry { name: "grok-vision-beta", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 5000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "hermes-2-pro-llama-3-8b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 140, cost_output_x1000: 140, arena_overall: 0 },
    ModelInfoEntry { name: "hermes-2-pro-mistral-7b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "hermes-3-llama-3.1-405b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 1000, cost_output_x1000: 3000, arena_overall: 0 },
    ModelInfoEntry { name: "hermes-3-llama-3.1-405b:free", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 0, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "hermes-3-llama-3.1-70b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 120, cost_output_x1000: 300, arena_overall: 0 },
    ModelInfoEntry { name: "hermes-4-405b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 0, cost_input_x1000: 1000, cost_output_x1000: 3000, arena_overall: 0 },
    ModelInfoEntry { name: "hermes-4-70b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 0, cost_input_x1000: 130, cost_output_x1000: 400, arena_overall: 0 },
    ModelInfoEntry { name: "hermes3-405b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 800, cost_output_x1000: 800, arena_overall: 0 },
    ModelInfoEntry { name: "hermes3-70b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 120, cost_output_x1000: 300, arena_overall: 0 },
    ModelInfoEntry { name: "hermes3-8b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 25, cost_output_x1000: 40, arena_overall: 0 },
    ModelInfoEntry { name: "hunyuan-a13b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 140, cost_output_x1000: 570, arena_overall: 0 },
    ModelInfoEntry { name: "inflection-3-pi", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8000, max_output_tokens: 1024, cost_input_x1000: 2500, cost_output_x1000: 10000, arena_overall: 0 },
    ModelInfoEntry { name: "inflection-3-productivity", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8000, max_output_tokens: 1024, cost_input_x1000: 2500, cost_output_x1000: 10000, arena_overall: 0 },
    ModelInfoEntry { name: "intellect-3", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 200, cost_output_x1000: 1100, arena_overall: 0 },
    ModelInfoEntry { name: "internlm2_5-20b-chat", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 8192, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "internvl3-38b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 16384, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "internvl3-78b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 16384, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "internvl3-8b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 16384, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "j2-light", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 3000, cost_output_x1000: 3000, arena_overall: 0 },
    ModelInfoEntry { name: "j2-mid", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 10000, cost_output_x1000: 10000, arena_overall: 0 },
    ModelInfoEntry { name: "j2-ultra", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 15000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "jais-13b-chat", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 500000, cost_output_x1000: 2000000, arena_overall: 0 },
    ModelInfoEntry { name: "jais-30b-chat", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 3200000, cost_output_x1000: 9710000, arena_overall: 0 },
    ModelInfoEntry { name: "jamba-1.5", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 256000, max_output_tokens: 256000, cost_input_x1000: 200, cost_output_x1000: 400, arena_overall: 0 },
    ModelInfoEntry { name: "jamba-1.5-large", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 256000, max_output_tokens: 256000, cost_input_x1000: 2000, cost_output_x1000: 8000, arena_overall: 6409 },
    ModelInfoEntry { name: "jamba-1.5-large@001", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 256000, max_output_tokens: 256000, cost_input_x1000: 2000, cost_output_x1000: 8000, arena_overall: 0 },
    ModelInfoEntry { name: "jamba-1.5-mini", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 256000, max_output_tokens: 256000, cost_input_x1000: 200, cost_output_x1000: 400, arena_overall: 5712 },
    ModelInfoEntry { name: "jamba-1.5-mini@001", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 256000, max_output_tokens: 256000, cost_input_x1000: 200, cost_output_x1000: 400, arena_overall: 0 },
    ModelInfoEntry { name: "jamba-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 256000, max_output_tokens: 8192, cost_input_x1000: 500, cost_output_x1000: 700, arena_overall: 0 },
    ModelInfoEntry { name: "jamba-large-1.6", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 256000, max_output_tokens: 256000, cost_input_x1000: 2000, cost_output_x1000: 8000, arena_overall: 0 },
    ModelInfoEntry { name: "jamba-large-1.7", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 256000, max_output_tokens: 256000, cost_input_x1000: 2000, cost_output_x1000: 8000, arena_overall: 0 },
    ModelInfoEntry { name: "jamba-mini-1.6", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 256000, max_output_tokens: 256000, cost_input_x1000: 200, cost_output_x1000: 400, arena_overall: 0 },
    ModelInfoEntry { name: "jamba-mini-1.7", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 256000, max_output_tokens: 256000, cost_input_x1000: 200, cost_output_x1000: 400, arena_overall: 0 },
    ModelInfoEntry { name: "jp.anthropic.claude-haiku-4-5-20251001-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 64000, cost_input_x1000: 1100, cost_output_x1000: 5500, arena_overall: 0 },
    ModelInfoEntry { name: "jp.anthropic.claude-sonnet-4-5-20250929-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 64000, cost_input_x1000: 3300, cost_output_x1000: 16500, arena_overall: 0 },
    ModelInfoEntry { name: "kat-coder", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 262144, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "kat-coder-pro", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 256000, max_output_tokens: 128000, cost_input_x1000: 300, cost_output_x1000: 1200, arena_overall: 0 },
    ModelInfoEntry { name: "kat-coder-pro-v2", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 256000, max_output_tokens: 80000, cost_input_x1000: 300, cost_output_x1000: 1200, arena_overall: 0 },
    ModelInfoEntry { name: "kat-dev-32b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "kat-dev-72b-exp", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "kimi-k2", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 550, cost_output_x1000: 2200, arena_overall: 0 },
    ModelInfoEntry { name: "kimi-k2-0711-preview", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 600, cost_output_x1000: 2500, arena_overall: 8485 },
    ModelInfoEntry { name: "kimi-k2-0905", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 262144, cost_input_x1000: 600, cost_output_x1000: 2500, arena_overall: 0 },
    ModelInfoEntry { name: "kimi-k2-0905-preview", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 262144, cost_input_x1000: 600, cost_output_x1000: 2500, arena_overall: 0 },
    ModelInfoEntry { name: "kimi-k2-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 1000, cost_output_x1000: 3000, arena_overall: 0 },
    ModelInfoEntry { name: "kimi-k2-instruct-0905", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 262144, cost_input_x1000: 1000, cost_output_x1000: 3000, arena_overall: 0 },
    ModelInfoEntry { name: "kimi-k2-thinking", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 262144, cost_input_x1000: 600, cost_output_x1000: 2500, arena_overall: 0 },
    ModelInfoEntry { name: "kimi-k2-thinking-251104", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 229376, max_output_tokens: 32768, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "kimi-k2-thinking-maas", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 256000, max_output_tokens: 256000, cost_input_x1000: 600, cost_output_x1000: 2500, arena_overall: 0 },
    ModelInfoEntry { name: "kimi-k2-thinking-turbo", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 262144, cost_input_x1000: 1150, cost_output_x1000: 8000, arena_overall: 0 },
    ModelInfoEntry { name: "kimi-k2-turbo-preview", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 262144, cost_input_x1000: 1150, cost_output_x1000: 8000, arena_overall: 0 },
    ModelInfoEntry { name: "kimi-k2.5", supports_vision: true, supports_audio: false, supports_video: true, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 262144, cost_input_x1000: 600, cost_output_x1000: 3000, arena_overall: 0 },
    ModelInfoEntry { name: "kimi-k2p5", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 262144, cost_input_x1000: 600, cost_output_x1000: 3000, arena_overall: 0 },
    ModelInfoEntry { name: "kimi-latest", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 2000, cost_output_x1000: 5000, arena_overall: 0 },
    ModelInfoEntry { name: "kimi-latest-128k", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 2000, cost_output_x1000: 5000, arena_overall: 0 },
    ModelInfoEntry { name: "kimi-latest-32k", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 1000, cost_output_x1000: 3000, arena_overall: 0 },
    ModelInfoEntry { name: "kimi-latest-8k", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 200, cost_output_x1000: 2000, arena_overall: 0 },
    ModelInfoEntry { name: "kimi-thinking-preview", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 600, cost_output_x1000: 2500, arena_overall: 0 },
    ModelInfoEntry { name: "l3-70b-euryale-v2.1", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 1480, cost_output_x1000: 1480, arena_overall: 0 },
    ModelInfoEntry { name: "l3-8b-lunaris", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 50, cost_output_x1000: 50, arena_overall: 0 },
    ModelInfoEntry { name: "l3-8b-lunaris-v1-turbo", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 40, cost_output_x1000: 50, arena_overall: 0 },
    ModelInfoEntry { name: "l3-8b-stheno-v3.2", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 32000, cost_input_x1000: 50, cost_output_x1000: 50, arena_overall: 0 },
    ModelInfoEntry { name: "l3-euryale-70b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 1480, cost_output_x1000: 1480, arena_overall: 0 },
    ModelInfoEntry { name: "l3-lunaris-8b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 0, cost_input_x1000: 40, cost_output_x1000: 50, arena_overall: 0 },
    ModelInfoEntry { name: "l3.1-70b-euryale-v2.2", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 650, cost_output_x1000: 750, arena_overall: 0 },
    ModelInfoEntry { name: "l3.1-70b-hanami-x1", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16000, max_output_tokens: 0, cost_input_x1000: 3000, cost_output_x1000: 3000, arena_overall: 0 },
    ModelInfoEntry { name: "l3.1-euryale-70b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 16384, cost_input_x1000: 850, cost_output_x1000: 850, arena_overall: 0 },
    ModelInfoEntry { name: "l3.3-70b-euryale-v2.3", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 650, cost_output_x1000: 750, arena_overall: 0 },
    ModelInfoEntry { name: "l3.3-euryale-70b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 16384, cost_input_x1000: 650, cost_output_x1000: 750, arena_overall: 0 },
    ModelInfoEntry { name: "l31-70b-euryale-v2.2", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 1480, cost_output_x1000: 1480, arena_overall: 0 },
    ModelInfoEntry { name: "labs-devstral-small-2512", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 256000, max_output_tokens: 256000, cost_input_x1000: 100, cost_output_x1000: 300, arena_overall: 0 },
    ModelInfoEntry { name: "learnlm-1.5-pro-experimental", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32767, max_output_tokens: 8192, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "lfm-2-24b-a2b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 0, cost_input_x1000: 30, cost_output_x1000: 120, arena_overall: 0 },
    ModelInfoEntry { name: "lfm-2.2-6b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 0, cost_input_x1000: 10, cost_output_x1000: 20, arena_overall: 0 },
    ModelInfoEntry { name: "lfm-2.5-1.2b-instruct:free", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 0, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "lfm-2.5-1.2b-thinking:free", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 0, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "lfm-40b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 100, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "lfm-7b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 25, cost_output_x1000: 40, arena_overall: 0 },
    ModelInfoEntry { name: "lfm2-8b-a1b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 0, cost_input_x1000: 10, cost_output_x1000: 20, arena_overall: 0 },
    ModelInfoEntry { name: "llama-2-13b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 100, cost_output_x1000: 500, arena_overall: 0 },
    ModelInfoEntry { name: "llama-2-13b-chat", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 100, cost_output_x1000: 500, arena_overall: 4000 },
    ModelInfoEntry { name: "llama-2-13b-chat-hf", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 250, cost_output_x1000: 250, arena_overall: 0 },
    ModelInfoEntry { name: "llama-2-70b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 650, cost_output_x1000: 2750, arena_overall: 0 },
    ModelInfoEntry { name: "llama-2-70b-chat", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 700, cost_output_x1000: 2800, arena_overall: 4455 },
    ModelInfoEntry { name: "llama-2-70b-chat-hf", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 1000, cost_output_x1000: 1000, arena_overall: 0 },
    ModelInfoEntry { name: "llama-2-7b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 50, cost_output_x1000: 250, arena_overall: 0 },
    ModelInfoEntry { name: "llama-2-7b-chat", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 50, cost_output_x1000: 250, arena_overall: 3606 },
    ModelInfoEntry { name: "llama-2-7b-chat-fp16", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 3072, max_output_tokens: 3072, cost_input_x1000: 1923, cost_output_x1000: 1923, arena_overall: 0 },
    ModelInfoEntry { name: "llama-2-7b-chat-hf", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 150, cost_output_x1000: 150, arena_overall: 0 },
    ModelInfoEntry { name: "llama-2-7b-chat-int8", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 2048, max_output_tokens: 2048, cost_input_x1000: 1923, cost_output_x1000: 1923, arena_overall: 0 },
    ModelInfoEntry { name: "llama-3-2-11b-vision-instruct", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 128000, cost_input_x1000: 350, cost_output_x1000: 350, arena_overall: 0 },
    ModelInfoEntry { name: "llama-3-2-1b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 128000, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "llama-3-2-3b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 128000, cost_input_x1000: 150, cost_output_x1000: 150, arena_overall: 0 },
    ModelInfoEntry { name: "llama-3-2-90b-vision-instruct", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 128000, cost_input_x1000: 2000, cost_output_x1000: 2000, arena_overall: 0 },
    ModelInfoEntry { name: "llama-3-3-70b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 128000, cost_input_x1000: 710, cost_output_x1000: 710, arena_overall: 0 },
    ModelInfoEntry { name: "llama-3-70b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 590, cost_output_x1000: 790, arena_overall: 0 },
    ModelInfoEntry { name: "llama-3-70b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 510, cost_output_x1000: 740, arena_overall: 6182 },
    ModelInfoEntry { name: "llama-3-8b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 50, cost_output_x1000: 250, arena_overall: 0 },
    ModelInfoEntry { name: "llama-3-8b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 16384, cost_input_x1000: 50, cost_output_x1000: 250, arena_overall: 5348 },
    ModelInfoEntry { name: "llama-3.1-405b-instruct-maas", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 2048, cost_input_x1000: 5000, cost_output_x1000: 16000, arena_overall: 0 },
    ModelInfoEntry { name: "llama-3.1-70b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 8192, cost_input_x1000: 720, cost_output_x1000: 720, arena_overall: 0 },
    ModelInfoEntry { name: "llama-3.1-70b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 1000, cost_output_x1000: 1000, arena_overall: 0 },
    ModelInfoEntry { name: "llama-3.1-70b-instruct-maas", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 2048, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "llama-3.1-8b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 30, cost_output_x1000: 50, arena_overall: 0 },
    ModelInfoEntry { name: "llama-3.1-8b-instant", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 8192, cost_input_x1000: 50, cost_output_x1000: 80, arena_overall: 0 },
    ModelInfoEntry { name: "llama-3.1-8b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "llama-3.1-8b-instruct-maas", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 2048, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "llama-3.1-nemotron-70b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 600, cost_output_x1000: 600, arena_overall: 7121 },
    ModelInfoEntry { name: "llama-3.1-nemotron-ultra-253b-v1", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 128000, cost_input_x1000: 600, cost_output_x1000: 1800, arena_overall: 7682 },
    ModelInfoEntry { name: "llama-3.2-11b", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 8192, cost_input_x1000: 160, cost_output_x1000: 160, arena_overall: 0 },
    ModelInfoEntry { name: "llama-3.2-11b-vision-instruct", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 49, cost_output_x1000: 49, arena_overall: 0 },
    ModelInfoEntry { name: "llama-3.2-1b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 8192, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "llama-3.2-1b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 60000, max_output_tokens: 0, cost_input_x1000: 27, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "llama-3.2-3b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 8192, cost_input_x1000: 40, cost_output_x1000: 80, arena_overall: 0 },
    ModelInfoEntry { name: "llama-3.2-3b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 120, cost_output_x1000: 300, arena_overall: 0 },
    ModelInfoEntry { name: "llama-3.2-3b-instruct-turbo", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "llama-3.2-3b-instruct:free", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 0, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "llama-3.2-90b", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 8192, cost_input_x1000: 720, cost_output_x1000: 720, arena_overall: 0 },
    ModelInfoEntry { name: "llama-3.2-90b-vision-instruct", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 2048, cost_input_x1000: 2040, cost_output_x1000: 2040, arena_overall: 0 },
    ModelInfoEntry { name: "llama-3.2-90b-vision-instruct-maas", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 2048, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "llama-3.3-70b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 128000, cost_input_x1000: 850, cost_output_x1000: 1200, arena_overall: 0 },
    ModelInfoEntry { name: "llama-3.3-70b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 6955 },
    ModelInfoEntry { name: "llama-3.3-70b-instruct-turbo", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 130, cost_output_x1000: 390, arena_overall: 0 },
    ModelInfoEntry { name: "llama-3.3-70b-instruct-turbo-free", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "llama-3.3-70b-instruct:free", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 65536, max_output_tokens: 0, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "llama-3.3-70b-versatile", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 32768, cost_input_x1000: 590, cost_output_x1000: 790, arena_overall: 0 },
    ModelInfoEntry { name: "llama-3.3-8b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4028, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "llama-3.3-nemotron-super-49b-v1", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 100, cost_output_x1000: 400, arena_overall: 7545 },
    ModelInfoEntry { name: "llama-3.3-nemotron-super-49b-v1.5", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 100, cost_output_x1000: 400, arena_overall: 0 },
    ModelInfoEntry { name: "llama-4-maverick", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 1048576, max_output_tokens: 16384, cost_input_x1000: 200, cost_output_x1000: 600, arena_overall: 0 },
    ModelInfoEntry { name: "llama-4-maverick-17b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 128000, cost_input_x1000: 350, cost_output_x1000: 1400, arena_overall: 0 },
    ModelInfoEntry { name: "llama-4-maverick-17b-128e-instruct", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 630, cost_output_x1000: 1800, arena_overall: 7242 },
    ModelInfoEntry { name: "llama-4-maverick-17b-128e-instruct-fp8", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 1048576, max_output_tokens: 1048576, cost_input_x1000: 1410, cost_output_x1000: 350, arena_overall: 0 },
    ModelInfoEntry { name: "llama-4-maverick-17b-128e-instruct-maas", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 1000000, max_output_tokens: 1000000, cost_input_x1000: 350, cost_output_x1000: 1150, arena_overall: 0 },
    ModelInfoEntry { name: "llama-4-maverick-17b-16e-instruct-maas", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 1000000, max_output_tokens: 1000000, cost_input_x1000: 350, cost_output_x1000: 1150, arena_overall: 0 },
    ModelInfoEntry { name: "llama-4-scout", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 327680, max_output_tokens: 16384, cost_input_x1000: 100, cost_output_x1000: 300, arena_overall: 0 },
    ModelInfoEntry { name: "llama-4-scout-17b-128e-instruct-maas", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 10000000, max_output_tokens: 10000000, cost_input_x1000: 250, cost_output_x1000: 700, arena_overall: 0 },
    ModelInfoEntry { name: "llama-4-scout-17b-16e-instruct", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 10000000, max_output_tokens: 327680, cost_input_x1000: 400, cost_output_x1000: 700, arena_overall: 7045 },
    ModelInfoEntry { name: "llama-4-scout-17b-16e-instruct-fp8", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 10000000, max_output_tokens: 4028, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "llama-4-scout-17b-16e-instruct-maas", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 10000000, max_output_tokens: 10000000, cost_input_x1000: 250, cost_output_x1000: 700, arena_overall: 0 },
    ModelInfoEntry { name: "llama-guard-2-8b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "llama-guard-3-11b-vision", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 128000, cost_input_x1000: 350, cost_output_x1000: 350, arena_overall: 0 },
    ModelInfoEntry { name: "llama-guard-3-1b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "llama-guard-3-8b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 55, cost_output_x1000: 55, arena_overall: 0 },
    ModelInfoEntry { name: "llama-guard-4-12b", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 163840, max_output_tokens: 163840, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "llama-v2-13b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "llama-v2-13b-chat", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "llama-v2-70b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "llama-v2-70b-chat", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 2048, max_output_tokens: 2048, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "llama-v2-7b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "llama-v2-7b-chat", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "llama-v3-70b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "llama-v3-70b-instruct-hf", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "llama-v3-8b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "llama-v3-8b-instruct-hf", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "llama-v3p1-405b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 16384, cost_input_x1000: 3000, cost_output_x1000: 3000, arena_overall: 0 },
    ModelInfoEntry { name: "llama-v3p1-405b-instruct-long", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "llama-v3p1-70b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "llama-v3p1-70b-instruct-1b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "llama-v3p1-8b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 16384, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "llama-v3p1-nemotron-70b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "llama-v3p2-11b-vision-instruct", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 16384, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "llama-v3p2-1b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "llama-v3p2-1b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 16384, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "llama-v3p2-3b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "llama-v3p2-3b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 16384, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "llama-v3p2-90b-vision-instruct", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 16384, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "llama-v3p3-70b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "llama2", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "llama2-70b-chat", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 8192, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "llama2-uncensored", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "llama2:13b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "llama2:70b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "llama2:7b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "llama3", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "llama3-405b-instruct-maas", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32000, max_output_tokens: 32000, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "llama3-70b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8000, max_output_tokens: 8192, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "llama3-70b-instruct-maas", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32000, max_output_tokens: 32000, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "llama3-8b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8000, max_output_tokens: 8192, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "llama3-8b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "llama3-8b-instruct-maas", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32000, max_output_tokens: 32000, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "llama3.1", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "llama3.1-405b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 8192, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "llama3.1-405b-instruct-fp8", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 800, cost_output_x1000: 800, arena_overall: 0 },
    ModelInfoEntry { name: "llama3.1-70b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 128000, cost_input_x1000: 600, cost_output_x1000: 600, arena_overall: 0 },
    ModelInfoEntry { name: "llama3.1-70b-instruct-fp8", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 120, cost_output_x1000: 300, arena_overall: 0 },
    ModelInfoEntry { name: "llama3.1-8b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 128000, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "llama3.1-8b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 25, cost_output_x1000: 40, arena_overall: 0 },
    ModelInfoEntry { name: "llama3.1-nemotron-70b-instruct-fp8", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 120, cost_output_x1000: 300, arena_overall: 0 },
    ModelInfoEntry { name: "llama3.2-11b-vision-instruct", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 15, cost_output_x1000: 25, arena_overall: 0 },
    ModelInfoEntry { name: "llama3.2-1b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 8192, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "llama3.2-3b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 8192, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "llama3.2-3b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 15, cost_output_x1000: 25, arena_overall: 0 },
    ModelInfoEntry { name: "llama3.3-70b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 8192, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "llama3.3-70b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 650, cost_output_x1000: 650, arena_overall: 0 },
    ModelInfoEntry { name: "llama3.3-70b-instruct-fp8", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 120, cost_output_x1000: 300, arena_overall: 0 },
    ModelInfoEntry { name: "llama3:70b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "llama3:8b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "llama4-maverick-instruct-basic", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 220, cost_output_x1000: 880, arena_overall: 0 },
    ModelInfoEntry { name: "llama4-scout-instruct-basic", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 150, cost_output_x1000: 600, arena_overall: 0 },
    ModelInfoEntry { name: "llamaguard-7b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "llava-7b", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 2048, cost_input_x1000: 100, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "llava-v1.6-mistral-7b-hf", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32000, max_output_tokens: 32000, cost_input_x1000: 290, cost_output_x1000: 290, arena_overall: 0 },
    ModelInfoEntry { name: "llava-yi-34b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "llemma_7b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 800, cost_output_x1000: 1200, arena_overall: 0 },
    ModelInfoEntry { name: "longcat-flash-chat", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 200, cost_output_x1000: 800, arena_overall: 0 },
    ModelInfoEntry { name: "luminous-base", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 30000, cost_output_x1000: 33000, arena_overall: 0 },
    ModelInfoEntry { name: "luminous-base-control", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 37500, cost_output_x1000: 41250, arena_overall: 0 },
    ModelInfoEntry { name: "luminous-extended", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 45000, cost_output_x1000: 49500, arena_overall: 0 },
    ModelInfoEntry { name: "luminous-extended-control", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 56250, cost_output_x1000: 61875, arena_overall: 0 },
    ModelInfoEntry { name: "luminous-supreme", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 175000, cost_output_x1000: 192500, arena_overall: 0 },
    ModelInfoEntry { name: "luminous-supreme-control", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 218750, cost_output_x1000: 240625, arena_overall: 0 },
    ModelInfoEntry { name: "lyria-3-clip-preview", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 1048576, max_output_tokens: 65536, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "lyria-3-pro-preview", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 1048576, max_output_tokens: 65536, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "maestro-reasoning", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 32000, cost_input_x1000: 900, cost_output_x1000: 3300, arena_overall: 0 },
    ModelInfoEntry { name: "magistral-medium", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 64000, cost_input_x1000: 2000, cost_output_x1000: 5000, arena_overall: 0 },
    ModelInfoEntry { name: "magistral-medium-1-2-2509", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 40000, max_output_tokens: 40000, cost_input_x1000: 2000, cost_output_x1000: 5000, arena_overall: 0 },
    ModelInfoEntry { name: "magistral-medium-2506", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 40000, max_output_tokens: 40000, cost_input_x1000: 2000, cost_output_x1000: 5000, arena_overall: 6652 },
    ModelInfoEntry { name: "magistral-medium-2509", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 40000, max_output_tokens: 40000, cost_input_x1000: 2000, cost_output_x1000: 5000, arena_overall: 0 },
    ModelInfoEntry { name: "magistral-medium-latest", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 40000, max_output_tokens: 40000, cost_input_x1000: 2000, cost_output_x1000: 5000, arena_overall: 0 },
    ModelInfoEntry { name: "magistral-small", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 64000, cost_input_x1000: 500, cost_output_x1000: 1500, arena_overall: 0 },
    ModelInfoEntry { name: "magistral-small-1-2-2509", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 40000, max_output_tokens: 40000, cost_input_x1000: 500, cost_output_x1000: 1500, arena_overall: 0 },
    ModelInfoEntry { name: "magistral-small-2506", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 40000, max_output_tokens: 40000, cost_input_x1000: 500, cost_output_x1000: 1500, arena_overall: 0 },
    ModelInfoEntry { name: "magistral-small-latest", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 40000, max_output_tokens: 40000, cost_input_x1000: 500, cost_output_x1000: 1500, arena_overall: 0 },
    ModelInfoEntry { name: "magnum-v4-72b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 2048, cost_input_x1000: 3000, cost_output_x1000: 5000, arena_overall: 0 },
    ModelInfoEntry { name: "mai-ds-r1", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 8192, cost_input_x1000: 1350, cost_output_x1000: 5400, arena_overall: 0 },
    ModelInfoEntry { name: "mamba-codestral-7b-v0.1", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 256000, max_output_tokens: 256000, cost_input_x1000: 190, cost_output_x1000: 190, arena_overall: 0 },
    ModelInfoEntry { name: "medlm-large", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 1024, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "medlm-medium", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 8192, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "mercury", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 32000, cost_input_x1000: 250, cost_output_x1000: 750, arena_overall: 0 },
    ModelInfoEntry { name: "mercury-2", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 50000, cost_input_x1000: 250, cost_output_x1000: 750, arena_overall: 0 },
    ModelInfoEntry { name: "mercury-coder", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 32000, cost_input_x1000: 250, cost_output_x1000: 750, arena_overall: 0 },
    ModelInfoEntry { name: "mercury-coder-small", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32000, max_output_tokens: 16384, cost_input_x1000: 250, cost_output_x1000: 1000, arena_overall: 0 },
    ModelInfoEntry { name: "meta-llama-3-70b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 120, cost_output_x1000: 300, arena_overall: 0 },
    ModelInfoEntry { name: "meta-llama-3-8b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 150, cost_output_x1000: 150, arena_overall: 0 },
    ModelInfoEntry { name: "meta-llama-3.1-405b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 128000, cost_input_x1000: 5000, cost_output_x1000: 10000, arena_overall: 0 },
    ModelInfoEntry { name: "meta-llama-3.1-405b-instruct-turbo", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 3500, cost_output_x1000: 3500, arena_overall: 0 },
    ModelInfoEntry { name: "meta-llama-3.1-70b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 2680, cost_output_x1000: 3540, arena_overall: 6803 },
    ModelInfoEntry { name: "meta-llama-3.1-70b-instruct-turbo", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 100, cost_output_x1000: 280, arena_overall: 0 },
    ModelInfoEntry { name: "meta-llama-3.1-8b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 100, cost_output_x1000: 200, arena_overall: 5712 },
    ModelInfoEntry { name: "meta-llama-3.1-8b-instruct-turbo", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 180, cost_output_x1000: 180, arena_overall: 0 },
    ModelInfoEntry { name: "meta-llama-3.2-1b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 16384, cost_input_x1000: 40, cost_output_x1000: 80, arena_overall: 3864 },
    ModelInfoEntry { name: "meta-llama-3.2-3b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 80, cost_output_x1000: 160, arena_overall: 4606 },
    ModelInfoEntry { name: "meta-llama-3.3-70b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 600, cost_output_x1000: 1200, arena_overall: 0 },
    ModelInfoEntry { name: "meta-llama-3_1-70b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131000, max_output_tokens: 131000, cost_input_x1000: 670, cost_output_x1000: 670, arena_overall: 0 },
    ModelInfoEntry { name: "meta-llama-3_3-70b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131000, max_output_tokens: 131000, cost_input_x1000: 670, cost_output_x1000: 670, arena_overall: 0 },
    ModelInfoEntry { name: "meta-llama-guard-3-8b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 16384, cost_input_x1000: 300, cost_output_x1000: 300, arena_overall: 0 },
    ModelInfoEntry { name: "meta-textgeneration-llama-2-13b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "meta-textgeneration-llama-2-13b-f", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "meta-textgeneration-llama-2-70b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "meta-textgeneration-llama-2-70b-b-f", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "meta-textgeneration-llama-2-7b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "meta-textgeneration-llama-2-7b-f", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "meta.llama-3.1-405b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4000, cost_input_x1000: 10680, cost_output_x1000: 10680, arena_overall: 0 },
    ModelInfoEntry { name: "meta.llama-3.2-90b-vision-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4000, cost_input_x1000: 2000, cost_output_x1000: 2000, arena_overall: 0 },
    ModelInfoEntry { name: "meta.llama-3.3-70b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4000, cost_input_x1000: 720, cost_output_x1000: 720, arena_overall: 0 },
    ModelInfoEntry { name: "meta.llama-4-maverick-17b-128e-instruct-fp8", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 512000, max_output_tokens: 4000, cost_input_x1000: 720, cost_output_x1000: 720, arena_overall: 0 },
    ModelInfoEntry { name: "meta.llama-4-scout-17b-16e-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 192000, max_output_tokens: 4000, cost_input_x1000: 720, cost_output_x1000: 720, arena_overall: 0 },
    ModelInfoEntry { name: "meta.llama2-13b-chat-v1", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 750, cost_output_x1000: 1000, arena_overall: 0 },
    ModelInfoEntry { name: "meta.llama2-70b-chat-v1", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 1950, cost_output_x1000: 2560, arena_overall: 0 },
    ModelInfoEntry { name: "meta.llama3-1-405b-instruct-v1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 5320, cost_output_x1000: 16000, arena_overall: 0 },
    ModelInfoEntry { name: "meta.llama3-1-70b-instruct-v1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 2048, cost_input_x1000: 990, cost_output_x1000: 990, arena_overall: 0 },
    ModelInfoEntry { name: "meta.llama3-1-8b-instruct-v1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 2048, cost_input_x1000: 220, cost_output_x1000: 220, arena_overall: 0 },
    ModelInfoEntry { name: "meta.llama3-2-11b-instruct-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 350, cost_output_x1000: 350, arena_overall: 0 },
    ModelInfoEntry { name: "meta.llama3-2-1b-instruct-v1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "meta.llama3-2-3b-instruct-v1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 150, cost_output_x1000: 150, arena_overall: 0 },
    ModelInfoEntry { name: "meta.llama3-2-90b-instruct-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 2000, cost_output_x1000: 2000, arena_overall: 0 },
    ModelInfoEntry { name: "meta.llama3-3-70b-instruct-v1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 720, cost_output_x1000: 720, arena_overall: 0 },
    ModelInfoEntry { name: "meta.llama3-70b-instruct-v1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 2650, cost_output_x1000: 3500, arena_overall: 0 },
    ModelInfoEntry { name: "meta.llama3-8b-instruct-v1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 300, cost_output_x1000: 2650, arena_overall: 0 },
    ModelInfoEntry { name: "meta.llama4-maverick-17b-instruct-v1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 240, cost_output_x1000: 970, arena_overall: 0 },
    ModelInfoEntry { name: "meta.llama4-scout-17b-instruct-v1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 170, cost_output_x1000: 660, arena_overall: 0 },
    ModelInfoEntry { name: "mimo-v2-flash", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 65536, cost_input_x1000: 90, cost_output_x1000: 290, arena_overall: 0 },
    ModelInfoEntry { name: "mimo-v2-omni", supports_vision: true, supports_audio: true, supports_video: true, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 65536, cost_input_x1000: 400, cost_output_x1000: 2000, arena_overall: 0 },
    ModelInfoEntry { name: "mimo-v2-pro", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 1048576, max_output_tokens: 131072, cost_input_x1000: 1000, cost_output_x1000: 3000, arena_overall: 0 },
    ModelInfoEntry { name: "minimax-01", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 1000192, max_output_tokens: 1000192, cost_input_x1000: 200, cost_output_x1000: 1100, arena_overall: 0 },
    ModelInfoEntry { name: "minimax-m1", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 1000000, max_output_tokens: 40000, cost_input_x1000: 400, cost_output_x1000: 2200, arena_overall: 8333 },
    ModelInfoEntry { name: "minimax-m1-80k", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 1000000, max_output_tokens: 40000, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "minimax-m2", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 204800, max_output_tokens: 204800, cost_input_x1000: 300, cost_output_x1000: 1200, arena_overall: 0 },
    ModelInfoEntry { name: "minimax-m2-her", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 65536, max_output_tokens: 2048, cost_input_x1000: 300, cost_output_x1000: 1200, arena_overall: 0 },
    ModelInfoEntry { name: "minimax-m2-maas", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 196608, max_output_tokens: 196608, cost_input_x1000: 300, cost_output_x1000: 1200, arena_overall: 0 },
    ModelInfoEntry { name: "minimax-m2.1", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 1000000, max_output_tokens: 131072, cost_input_x1000: 300, cost_output_x1000: 1200, arena_overall: 0 },
    ModelInfoEntry { name: "minimax-m2.1-lightning", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 1000000, max_output_tokens: 8192, cost_input_x1000: 300, cost_output_x1000: 2400, arena_overall: 0 },
    ModelInfoEntry { name: "minimax-m2.5", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 1000000, max_output_tokens: 65536, cost_input_x1000: 300, cost_output_x1000: 1100, arena_overall: 0 },
    ModelInfoEntry { name: "minimax-m2.5-lightning", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 1000000, max_output_tokens: 8192, cost_input_x1000: 300, cost_output_x1000: 2400, arena_overall: 0 },
    ModelInfoEntry { name: "minimax-m2.5:free", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 196608, max_output_tokens: 196608, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "minimax-m2.7", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 204800, max_output_tokens: 131072, cost_input_x1000: 300, cost_output_x1000: 1200, arena_overall: 0 },
    ModelInfoEntry { name: "minimax-m2p1", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 204800, max_output_tokens: 204800, cost_input_x1000: 300, cost_output_x1000: 1200, arena_overall: 0 },
    ModelInfoEntry { name: "minimax.minimax-m2", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 8192, cost_input_x1000: 300, cost_output_x1000: 1200, arena_overall: 0 },
    ModelInfoEntry { name: "minimax.minimax-m2.1", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 196000, max_output_tokens: 8192, cost_input_x1000: 300, cost_output_x1000: 1200, arena_overall: 0 },
    ModelInfoEntry { name: "ministral-14b-2512", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 262144, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "ministral-3-14b-2512", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 262144, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "ministral-3-14b-instruct-2512", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 256000, max_output_tokens: 256000, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "ministral-3-3b-2512", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "ministral-3-3b-instruct-2512", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 256000, max_output_tokens: 256000, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "ministral-3-8b-2512", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 262144, cost_input_x1000: 150, cost_output_x1000: 150, arena_overall: 0 },
    ModelInfoEntry { name: "ministral-3-8b-instruct-2512", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 256000, max_output_tokens: 256000, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "ministral-3b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 40, cost_output_x1000: 40, arena_overall: 0 },
    ModelInfoEntry { name: "ministral-3b-2512", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "ministral-8b", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4000, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "ministral-8b-2512", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 262144, cost_input_x1000: 150, cost_output_x1000: 150, arena_overall: 0 },
    ModelInfoEntry { name: "mistral", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "mistral-7b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "mistral-7b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 70, cost_output_x1000: 280, arena_overall: 0 },
    ModelInfoEntry { name: "mistral-7b-instruct-4k", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "mistral-7b-instruct-v0.1", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 16384, cost_input_x1000: 150, cost_output_x1000: 150, arena_overall: 3167 },
    ModelInfoEntry { name: "mistral-7b-instruct-v0.2", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 50, cost_output_x1000: 250, arena_overall: 4136 },
    ModelInfoEntry { name: "mistral-7b-instruct-v0.3", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 127000, max_output_tokens: 127000, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "mistral-7b-instruct-v0p2", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "mistral-7b-instruct-v3", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "mistral-7b-v0.1", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 50, cost_output_x1000: 250, arena_overall: 0 },
    ModelInfoEntry { name: "mistral-7b-v0.3", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 8192, cost_input_x1000: 100, cost_output_x1000: 150, arena_overall: 0 },
    ModelInfoEntry { name: "mistral-7b-v0p2", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "mistral-embed", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 100, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "mistral-large", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 16384, cost_input_x1000: 8000, cost_output_x1000: 24000, arena_overall: 0 },
    ModelInfoEntry { name: "mistral-large-2402", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32000, max_output_tokens: 8191, cost_input_x1000: 4000, cost_output_x1000: 12000, arena_overall: 5424 },
    ModelInfoEntry { name: "mistral-large-2407", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 128000, cost_input_x1000: 2000, cost_output_x1000: 6000, arena_overall: 6864 },
    ModelInfoEntry { name: "mistral-large-2411", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 128000, cost_input_x1000: 2000, cost_output_x1000: 6000, arena_overall: 6818 },
    ModelInfoEntry { name: "mistral-large-2512", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 262144, cost_input_x1000: 500, cost_output_x1000: 1500, arena_overall: 0 },
    ModelInfoEntry { name: "mistral-large-3", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 262144, cost_input_x1000: 500, cost_output_x1000: 1500, arena_overall: 0 },
    ModelInfoEntry { name: "mistral-large-3-fp8", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 256000, max_output_tokens: 256000, cost_input_x1000: 1200, cost_output_x1000: 1200, arena_overall: 0 },
    ModelInfoEntry { name: "mistral-large-instruct-2407", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 65536, max_output_tokens: 8192, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "mistral-large-latest", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 262144, cost_input_x1000: 2000, cost_output_x1000: 6000, arena_overall: 0 },
    ModelInfoEntry { name: "mistral-large2", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 8192, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "mistral-large@2407", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 8191, cost_input_x1000: 2000, cost_output_x1000: 6000, arena_overall: 0 },
    ModelInfoEntry { name: "mistral-large@2411-001", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 8191, cost_input_x1000: 2000, cost_output_x1000: 6000, arena_overall: 0 },
    ModelInfoEntry { name: "mistral-large@latest", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 8191, cost_input_x1000: 2000, cost_output_x1000: 6000, arena_overall: 0 },
    ModelInfoEntry { name: "mistral-medium", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32000, max_output_tokens: 8191, cost_input_x1000: 2700, cost_output_x1000: 8100, arena_overall: 5288 },
    ModelInfoEntry { name: "mistral-medium-2312", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32000, max_output_tokens: 8191, cost_input_x1000: 2700, cost_output_x1000: 8100, arena_overall: 0 },
    ModelInfoEntry { name: "mistral-medium-2505", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 128000, cost_input_x1000: 400, cost_output_x1000: 2000, arena_overall: 0 },
    ModelInfoEntry { name: "mistral-medium-3", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 8191, cost_input_x1000: 400, cost_output_x1000: 2000, arena_overall: 8455 },
    ModelInfoEntry { name: "mistral-medium-3-1-2508", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 400, cost_output_x1000: 2000, arena_overall: 0 },
    ModelInfoEntry { name: "mistral-medium-3.1", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 0, cost_input_x1000: 400, cost_output_x1000: 2000, arena_overall: 0 },
    ModelInfoEntry { name: "mistral-medium-3@001", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 8191, cost_input_x1000: 400, cost_output_x1000: 2000, arena_overall: 0 },
    ModelInfoEntry { name: "mistral-medium-latest", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 400, cost_output_x1000: 2000, arena_overall: 0 },
    ModelInfoEntry { name: "mistral-nemo", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 16384, cost_input_x1000: 150, cost_output_x1000: 150, arena_overall: 0 },
    ModelInfoEntry { name: "mistral-nemo-base-2407", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 128000, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "mistral-nemo-instruct-2407", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 20, cost_output_x1000: 40, arena_overall: 0 },
    ModelInfoEntry { name: "mistral-nemo@2407", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 128000, cost_input_x1000: 3000, cost_output_x1000: 3000, arena_overall: 0 },
    ModelInfoEntry { name: "mistral-nemo@latest", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 128000, cost_input_x1000: 150, cost_output_x1000: 150, arena_overall: 0 },
    ModelInfoEntry { name: "mistral-saba", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 0, cost_input_x1000: 200, cost_output_x1000: 600, arena_overall: 0 },
    ModelInfoEntry { name: "mistral-saba-24b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 790, cost_output_x1000: 790, arena_overall: 0 },
    ModelInfoEntry { name: "mistral-small", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32000, max_output_tokens: 8191, cost_input_x1000: 100, cost_output_x1000: 300, arena_overall: 0 },
    ModelInfoEntry { name: "mistral-small-24b-instruct-2501", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 6348 },
    ModelInfoEntry { name: "mistral-small-2503", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 128000, cost_input_x1000: 100, cost_output_x1000: 300, arena_overall: 0 },
    ModelInfoEntry { name: "mistral-small-2503@001", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32000, max_output_tokens: 8191, cost_input_x1000: 1000, cost_output_x1000: 3000, arena_overall: 0 },
    ModelInfoEntry { name: "mistral-small-2603", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 0, cost_input_x1000: 150, cost_output_x1000: 600, arena_overall: 0 },
    ModelInfoEntry { name: "mistral-small-3-1-24b-instruct-2503", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32000, max_output_tokens: 32000, cost_input_x1000: 100, cost_output_x1000: 300, arena_overall: 0 },
    ModelInfoEntry { name: "mistral-small-3-2-2506", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 60, cost_output_x1000: 180, arena_overall: 0 },
    ModelInfoEntry { name: "mistral-small-3.1-24b-instruct", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 100, cost_output_x1000: 300, arena_overall: 0 },
    ModelInfoEntry { name: "mistral-small-3.2-24b-instruct", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 0, cost_input_x1000: 100, cost_output_x1000: 300, arena_overall: 0 },
    ModelInfoEntry { name: "mistral-small-3.2-24b-instruct-2506", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 128000, cost_input_x1000: 75, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "mistral-small-creative", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 0, cost_input_x1000: 100, cost_output_x1000: 300, arena_overall: 0 },
    ModelInfoEntry { name: "mistral-small-latest", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 60, cost_output_x1000: 180, arena_overall: 0 },
    ModelInfoEntry { name: "mistral-tiny", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32000, max_output_tokens: 8191, cost_input_x1000: 250, cost_output_x1000: 250, arena_overall: 0 },
    ModelInfoEntry { name: "mistral.devstral-2-123b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 256000, max_output_tokens: 8192, cost_input_x1000: 400, cost_output_x1000: 2000, arena_overall: 0 },
    ModelInfoEntry { name: "mistral.magistral-small-2509", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 8192, cost_input_x1000: 500, cost_output_x1000: 1500, arena_overall: 0 },
    ModelInfoEntry { name: "mistral.ministral-3-14b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 8192, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "mistral.ministral-3-3b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 8192, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "mistral.ministral-3-8b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 8192, cost_input_x1000: 150, cost_output_x1000: 150, arena_overall: 0 },
    ModelInfoEntry { name: "mistral.mistral-7b-instruct-v0:2", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32000, max_output_tokens: 8191, cost_input_x1000: 150, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "mistral.mistral-large-2402-v1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32000, max_output_tokens: 8191, cost_input_x1000: 8000, cost_output_x1000: 24000, arena_overall: 0 },
    ModelInfoEntry { name: "mistral.mistral-large-2407-v1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 8191, cost_input_x1000: 3000, cost_output_x1000: 9000, arena_overall: 0 },
    ModelInfoEntry { name: "mistral.mistral-large-3-675b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 8192, cost_input_x1000: 500, cost_output_x1000: 1500, arena_overall: 0 },
    ModelInfoEntry { name: "mistral.mistral-small-2402-v1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32000, max_output_tokens: 8191, cost_input_x1000: 1000, cost_output_x1000: 3000, arena_overall: 0 },
    ModelInfoEntry { name: "mistral.mixtral-8x7b-instruct-v0:1", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32000, max_output_tokens: 8191, cost_input_x1000: 450, cost_output_x1000: 700, arena_overall: 0 },
    ModelInfoEntry { name: "mistral.voxtral-mini-3b-2507", supports_vision: false, supports_audio: true, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 8192, cost_input_x1000: 40, cost_output_x1000: 40, arena_overall: 0 },
    ModelInfoEntry { name: "mistral.voxtral-small-24b-2507", supports_vision: false, supports_audio: true, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 8192, cost_input_x1000: 100, cost_output_x1000: 300, arena_overall: 0 },
    ModelInfoEntry { name: "mixtral-8x22b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 65536, max_output_tokens: 65536, cost_input_x1000: 1200, cost_output_x1000: 1200, arena_overall: 0 },
    ModelInfoEntry { name: "mixtral-8x22b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 65536, max_output_tokens: 65536, cost_input_x1000: 650, cost_output_x1000: 650, arena_overall: 0 },
    ModelInfoEntry { name: "mixtral-8x22b-instruct-hf", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 65536, max_output_tokens: 65536, cost_input_x1000: 1200, cost_output_x1000: 1200, arena_overall: 0 },
    ModelInfoEntry { name: "mixtral-8x22b-instruct-v0.1", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 65536, max_output_tokens: 65536, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 5288 },
    ModelInfoEntry { name: "mixtral-8x7b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 500, cost_output_x1000: 500, arena_overall: 0 },
    ModelInfoEntry { name: "mixtral-8x7b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 500, cost_output_x1000: 500, arena_overall: 0 },
    ModelInfoEntry { name: "mixtral-8x7b-instruct-hf", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 500, cost_output_x1000: 500, arena_overall: 0 },
    ModelInfoEntry { name: "mixtral-8x7b-instruct-v0.1", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 600, cost_output_x1000: 600, arena_overall: 4773 },
    ModelInfoEntry { name: "model_router", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 140, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "moonshot-v1-128k", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 2000, cost_output_x1000: 5000, arena_overall: 0 },
    ModelInfoEntry { name: "moonshot-v1-128k-0430", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 2000, cost_output_x1000: 5000, arena_overall: 0 },
    ModelInfoEntry { name: "moonshot-v1-128k-vision-preview", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 2000, cost_output_x1000: 5000, arena_overall: 0 },
    ModelInfoEntry { name: "moonshot-v1-32k", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 1000, cost_output_x1000: 3000, arena_overall: 0 },
    ModelInfoEntry { name: "moonshot-v1-32k-0430", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 1000, cost_output_x1000: 3000, arena_overall: 0 },
    ModelInfoEntry { name: "moonshot-v1-32k-vision-preview", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 1000, cost_output_x1000: 3000, arena_overall: 0 },
    ModelInfoEntry { name: "moonshot-v1-8k", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 200, cost_output_x1000: 2000, arena_overall: 0 },
    ModelInfoEntry { name: "moonshot-v1-8k-0430", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 200, cost_output_x1000: 2000, arena_overall: 0 },
    ModelInfoEntry { name: "moonshot-v1-8k-vision-preview", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 200, cost_output_x1000: 2000, arena_overall: 0 },
    ModelInfoEntry { name: "moonshot-v1-auto", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 2000, cost_output_x1000: 5000, arena_overall: 0 },
    ModelInfoEntry { name: "moonshot.kimi-k2-thinking", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 8192, cost_input_x1000: 600, cost_output_x1000: 2500, arena_overall: 0 },
    ModelInfoEntry { name: "moonshotai.kimi-k2-thinking", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 262144, cost_input_x1000: 730, cost_output_x1000: 3030, arena_overall: 0 },
    ModelInfoEntry { name: "moonshotai.kimi-k2.5", supports_vision: true, supports_audio: false, supports_video: true, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 262144, cost_input_x1000: 720, cost_output_x1000: 3600, arena_overall: 0 },
    ModelInfoEntry { name: "morph-v3-fast", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 81920, max_output_tokens: 38000, cost_input_x1000: 800, cost_output_x1000: 1200, arena_overall: 0 },
    ModelInfoEntry { name: "morph-v3-large", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 131072, cost_input_x1000: 900, cost_output_x1000: 1900, arena_overall: 0 },
    ModelInfoEntry { name: "mt0-xxl-13b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 500000, cost_output_x1000: 2000000, arena_overall: 0 },
    ModelInfoEntry { name: "mythomax-l2-13b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 90, cost_output_x1000: 90, arena_overall: 0 },
    ModelInfoEntry { name: "nemotron-3-nano-30b-a3b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 0, cost_input_x1000: 50, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "nemotron-3-nano-30b-a3b:free", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 256000, max_output_tokens: 0, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "nemotron-3-super-120b-a12b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 0, cost_input_x1000: 100, cost_output_x1000: 500, arena_overall: 0 },
    ModelInfoEntry { name: "nemotron-3-super-120b-a12b:free", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 262144, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "nemotron-nano-12b-v2-vl", supports_vision: true, supports_audio: false, supports_video: true, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 0, cost_input_x1000: 200, cost_output_x1000: 600, arena_overall: 0 },
    ModelInfoEntry { name: "nemotron-nano-12b-v2-vl:free", supports_vision: true, supports_audio: false, supports_video: true, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 128000, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "nemotron-nano-9b-v2", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 0, cost_input_x1000: 40, cost_output_x1000: 160, arena_overall: 0 },
    ModelInfoEntry { name: "nemotron-nano-9b-v2:free", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 0, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "nemotron-nano-v2-12b-vl", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "nous-capybara-7b-v1p9", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "nous-hermes-2-mixtral-8x7b-dpo", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 500, cost_output_x1000: 500, arena_overall: 4318 },
    ModelInfoEntry { name: "nous-hermes-2-yi-34b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "nous-hermes-llama2-13b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "nous-hermes-llama2-70b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "nous-hermes-llama2-7b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "nova-2-lite-v1", supports_vision: true, supports_audio: false, supports_video: true, supports_pdf: false, max_input_tokens: 1000000, max_output_tokens: 65535, cost_input_x1000: 300, cost_output_x1000: 2500, arena_overall: 0 },
    ModelInfoEntry { name: "nova-lite", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 300000, max_output_tokens: 8192, cost_input_x1000: 60, cost_output_x1000: 240, arena_overall: 0 },
    ModelInfoEntry { name: "nova-lite-v1", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 300000, max_output_tokens: 10000, cost_input_x1000: 60, cost_output_x1000: 240, arena_overall: 0 },
    ModelInfoEntry { name: "nova-micro", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 8192, cost_input_x1000: 35, cost_output_x1000: 140, arena_overall: 0 },
    ModelInfoEntry { name: "nova-micro-v1", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 10000, cost_input_x1000: 35, cost_output_x1000: 140, arena_overall: 0 },
    ModelInfoEntry { name: "nova-premier-v1", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 1000000, max_output_tokens: 32000, cost_input_x1000: 2500, cost_output_x1000: 12500, arena_overall: 0 },
    ModelInfoEntry { name: "nova-pro", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 300000, max_output_tokens: 8192, cost_input_x1000: 800, cost_output_x1000: 3200, arena_overall: 0 },
    ModelInfoEntry { name: "nova-pro-v1", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 300000, max_output_tokens: 10000, cost_input_x1000: 800, cost_output_x1000: 3200, arena_overall: 0 },
    ModelInfoEntry { name: "nvidia-nemotron-nano-12b-v2", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "nvidia-nemotron-nano-9b-v2", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "nvidia.nemotron-nano-12b-v2", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 8192, cost_input_x1000: 200, cost_output_x1000: 600, arena_overall: 0 },
    ModelInfoEntry { name: "nvidia.nemotron-nano-3-30b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 8192, cost_input_x1000: 60, cost_output_x1000: 240, arena_overall: 0 },
    ModelInfoEntry { name: "nvidia.nemotron-nano-9b-v2", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 8192, cost_input_x1000: 60, cost_output_x1000: 230, arena_overall: 0 },
    ModelInfoEntry { name: "o1", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 100000, cost_input_x1000: 15000, cost_output_x1000: 60000, arena_overall: 0 },
    ModelInfoEntry { name: "o1-2024-12-17", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 100000, cost_input_x1000: 15000, cost_output_x1000: 60000, arena_overall: 8348 },
    ModelInfoEntry { name: "o1-mini", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 65536, cost_input_x1000: 1210, cost_output_x1000: 4840, arena_overall: 7652 },
    ModelInfoEntry { name: "o1-mini-2024-09-12", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 65536, cost_input_x1000: 1100, cost_output_x1000: 4400, arena_overall: 0 },
    ModelInfoEntry { name: "o1-preview", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 32768, cost_input_x1000: 15000, cost_output_x1000: 60000, arena_overall: 8121 },
    ModelInfoEntry { name: "o1-preview-2024-09-12", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 128000, max_output_tokens: 32768, cost_input_x1000: 16500, cost_output_x1000: 66000, arena_overall: 0 },
    ModelInfoEntry { name: "o1-pro", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 100000, cost_input_x1000: 150000, cost_output_x1000: 600000, arena_overall: 0 },
    ModelInfoEntry { name: "o3", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 100000, cost_input_x1000: 2000, cost_output_x1000: 8000, arena_overall: 0 },
    ModelInfoEntry { name: "o3-2025-04-16", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 100000, cost_input_x1000: 2200, cost_output_x1000: 8800, arena_overall: 9303 },
    ModelInfoEntry { name: "o3-deep-research", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 100000, cost_input_x1000: 10000, cost_output_x1000: 40000, arena_overall: 0 },
    ModelInfoEntry { name: "o3-mini", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 100000, cost_input_x1000: 1100, cost_output_x1000: 4400, arena_overall: 7636 },
    ModelInfoEntry { name: "o3-mini-2025-01-31", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 100000, cost_input_x1000: 1100, cost_output_x1000: 4400, arena_overall: 0 },
    ModelInfoEntry { name: "o3-mini-high", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 100000, cost_input_x1000: 1100, cost_output_x1000: 4400, arena_overall: 7970 },
    ModelInfoEntry { name: "o3-pro", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 100000, cost_input_x1000: 20000, cost_output_x1000: 80000, arena_overall: 0 },
    ModelInfoEntry { name: "o4-mini", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 100000, cost_input_x1000: 1100, cost_output_x1000: 4400, arena_overall: 0 },
    ModelInfoEntry { name: "o4-mini-2025-04-16", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 100000, cost_input_x1000: 1100, cost_output_x1000: 4400, arena_overall: 8318 },
    ModelInfoEntry { name: "o4-mini-deep-research", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 100000, cost_input_x1000: 2000, cost_output_x1000: 8000, arena_overall: 0 },
    ModelInfoEntry { name: "o4-mini-high", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 100000, cost_input_x1000: 1100, cost_output_x1000: 4400, arena_overall: 0 },
    ModelInfoEntry { name: "olmo-2-0325-32b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 0, cost_input_x1000: 50, cost_output_x1000: 200, arena_overall: 6182 },
    ModelInfoEntry { name: "olmo-3-32b-think", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 65536, max_output_tokens: 65536, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "olmo-3-7b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 4096, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "olmo-3-7b-think", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 4096, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "olmo-3.1-32b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 65536, max_output_tokens: 0, cost_input_x1000: 200, cost_output_x1000: 600, arena_overall: 0 },
    ModelInfoEntry { name: "olmo-3.1-32b-think", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 65536, max_output_tokens: 65536, cost_input_x1000: 150, cost_output_x1000: 500, arena_overall: 0 },
    ModelInfoEntry { name: "olmocr-7b-0725-fp8", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 16384, cost_input_x1000: 270, cost_output_x1000: 1500, arena_overall: 0 },
    ModelInfoEntry { name: "open-codestral-mamba", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 256000, max_output_tokens: 256000, cost_input_x1000: 250, cost_output_x1000: 250, arena_overall: 0 },
    ModelInfoEntry { name: "open-mistral-7b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32000, max_output_tokens: 8191, cost_input_x1000: 250, cost_output_x1000: 250, arena_overall: 0 },
    ModelInfoEntry { name: "open-mistral-nemo", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 128000, cost_input_x1000: 300, cost_output_x1000: 300, arena_overall: 0 },
    ModelInfoEntry { name: "open-mistral-nemo-2407", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 128000, cost_input_x1000: 300, cost_output_x1000: 300, arena_overall: 0 },
    ModelInfoEntry { name: "open-mixtral-8x22b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 65336, max_output_tokens: 8191, cost_input_x1000: 2000, cost_output_x1000: 6000, arena_overall: 0 },
    ModelInfoEntry { name: "open-mixtral-8x7b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32000, max_output_tokens: 8191, cost_input_x1000: 700, cost_output_x1000: 700, arena_overall: 0 },
    ModelInfoEntry { name: "openai-gpt-4o", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "openai-gpt-4o-mini", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "openai-o3", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 2000, cost_output_x1000: 8000, arena_overall: 0 },
    ModelInfoEntry { name: "openai-o3-mini", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 1100, cost_output_x1000: 4400, arena_overall: 0 },
    ModelInfoEntry { name: "openai.gpt-oss-120b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 32768, cost_input_x1000: 150, cost_output_x1000: 600, arena_overall: 0 },
    ModelInfoEntry { name: "openai.gpt-oss-120b-1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 128000, cost_input_x1000: 150, cost_output_x1000: 600, arena_overall: 0 },
    ModelInfoEntry { name: "openai.gpt-oss-20b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 32768, cost_input_x1000: 75, cost_output_x1000: 300, arena_overall: 0 },
    ModelInfoEntry { name: "openai.gpt-oss-20b-1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 128000, cost_input_x1000: 70, cost_output_x1000: 300, arena_overall: 0 },
    ModelInfoEntry { name: "openai.gpt-oss-safeguard-120b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 65536, cost_input_x1000: 150, cost_output_x1000: 600, arena_overall: 0 },
    ModelInfoEntry { name: "openai.gpt-oss-safeguard-20b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 65536, cost_input_x1000: 70, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "openchat-3p5-0106-7b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "openhermes-2-mistral-7b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "openhermes-2p5-mistral-7b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "openorca-7b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "openthinker-7b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 8192, cost_input_x1000: 80, cost_output_x1000: 150, arena_overall: 0 },
    ModelInfoEntry { name: "orca-mini", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "paddleocr-vl", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 16384, cost_input_x1000: 20, cost_output_x1000: 20, arena_overall: 0 },
    ModelInfoEntry { name: "palmyra-x5", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 1040000, max_output_tokens: 8192, cost_input_x1000: 600, cost_output_x1000: 6000, arena_overall: 0 },
    ModelInfoEntry { name: "phi-2-3b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 2048, max_output_tokens: 2048, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "phi-3-medium-128k-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 170, cost_output_x1000: 680, arena_overall: 0 },
    ModelInfoEntry { name: "phi-3-medium-4k-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 170, cost_output_x1000: 680, arena_overall: 4909 },
    ModelInfoEntry { name: "phi-3-mini-128k-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 3606 },
    ModelInfoEntry { name: "phi-3-mini-4k-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 130, cost_output_x1000: 520, arena_overall: 4045 },
    ModelInfoEntry { name: "phi-3-small-128k-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 150, cost_output_x1000: 600, arena_overall: 0 },
    ModelInfoEntry { name: "phi-3-small-8k-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 4096, cost_input_x1000: 150, cost_output_x1000: 600, arena_overall: 4591 },
    ModelInfoEntry { name: "phi-3-vision-128k-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32064, max_output_tokens: 32064, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "phi-3.5-mini-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 130, cost_output_x1000: 520, arena_overall: 0 },
    ModelInfoEntry { name: "phi-3.5-moe-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 160, cost_output_x1000: 640, arena_overall: 0 },
    ModelInfoEntry { name: "phi-3.5-vision-instruct", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 130, cost_output_x1000: 520, arena_overall: 0 },
    ModelInfoEntry { name: "phi-4", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 16384, cost_input_x1000: 70, cost_output_x1000: 140, arena_overall: 6167 },
    ModelInfoEntry { name: "phi-4-mini-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 128000, cost_input_x1000: 75, cost_output_x1000: 300, arena_overall: 0 },
    ModelInfoEntry { name: "phi-4-mini-reasoning", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 4096, cost_input_x1000: 80, cost_output_x1000: 320, arena_overall: 0 },
    ModelInfoEntry { name: "phi-4-multimodal-instruct", supports_vision: true, supports_audio: true, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 4096, cost_input_x1000: 80, cost_output_x1000: 320, arena_overall: 0 },
    ModelInfoEntry { name: "phi-4-reasoning", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 4096, cost_input_x1000: 125, cost_output_x1000: 500, arena_overall: 0 },
    ModelInfoEntry { name: "phind-code-llama-34b-python-v1", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 16384, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "phind-code-llama-34b-v1", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 16384, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "phind-code-llama-34b-v2", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 16384, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "pixtral-12b", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4000, cost_input_x1000: 150, cost_output_x1000: 150, arena_overall: 0 },
    ModelInfoEntry { name: "pixtral-12b-2409", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 128000, cost_input_x1000: 150, cost_output_x1000: 150, arena_overall: 0 },
    ModelInfoEntry { name: "pixtral-large", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4000, cost_input_x1000: 2000, cost_output_x1000: 6000, arena_overall: 0 },
    ModelInfoEntry { name: "pixtral-large-2411", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 128000, cost_input_x1000: 2000, cost_output_x1000: 6000, arena_overall: 0 },
    ModelInfoEntry { name: "pixtral-large-latest", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 128000, cost_input_x1000: 2000, cost_output_x1000: 6000, arena_overall: 0 },
    ModelInfoEntry { name: "pplx-70b-chat", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 700, cost_output_x1000: 2800, arena_overall: 0 },
    ModelInfoEntry { name: "pplx-70b-online", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 0, cost_output_x1000: 2800, arena_overall: 0 },
    ModelInfoEntry { name: "pplx-7b-chat", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 70, cost_output_x1000: 280, arena_overall: 0 },
    ModelInfoEntry { name: "pplx-7b-online", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 0, cost_output_x1000: 280, arena_overall: 0 },
    ModelInfoEntry { name: "pythia-12b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 2048, max_output_tokens: 2048, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "qwen-2.5-72b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 16384, cost_input_x1000: 380, cost_output_x1000: 400, arena_overall: 0 },
    ModelInfoEntry { name: "qwen-2.5-7b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 40, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "qwen-2.5-coder-32b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 33792, max_output_tokens: 33792, cost_input_x1000: 180, cost_output_x1000: 180, arena_overall: 0 },
    ModelInfoEntry { name: "qwen-3-14b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 40960, max_output_tokens: 16384, cost_input_x1000: 80, cost_output_x1000: 240, arena_overall: 0 },
    ModelInfoEntry { name: "qwen-3-235b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 40960, max_output_tokens: 16384, cost_input_x1000: 200, cost_output_x1000: 600, arena_overall: 0 },
    ModelInfoEntry { name: "qwen-3-30b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 40960, max_output_tokens: 16384, cost_input_x1000: 100, cost_output_x1000: 300, arena_overall: 0 },
    ModelInfoEntry { name: "qwen-3-32b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 128000, cost_input_x1000: 400, cost_output_x1000: 800, arena_overall: 0 },
    ModelInfoEntry { name: "qwen-coder", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 1000000, max_output_tokens: 16384, cost_input_x1000: 300, cost_output_x1000: 1500, arena_overall: 0 },
    ModelInfoEntry { name: "qwen-flash", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 997952, max_output_tokens: 32768, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "qwen-flash-2025-07-28", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 997952, max_output_tokens: 32768, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "qwen-max", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 8192, cost_input_x1000: 1600, cost_output_x1000: 6400, arena_overall: 0 },
    ModelInfoEntry { name: "qwen-mt-plus", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 8192, cost_input_x1000: 250, cost_output_x1000: 750, arena_overall: 0 },
    ModelInfoEntry { name: "qwen-plus", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 1000000, max_output_tokens: 32768, cost_input_x1000: 400, cost_output_x1000: 1200, arena_overall: 0 },
    ModelInfoEntry { name: "qwen-plus-2025-01-25", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 129024, max_output_tokens: 8192, cost_input_x1000: 400, cost_output_x1000: 1200, arena_overall: 0 },
    ModelInfoEntry { name: "qwen-plus-2025-04-28", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 129024, max_output_tokens: 16384, cost_input_x1000: 400, cost_output_x1000: 1200, arena_overall: 0 },
    ModelInfoEntry { name: "qwen-plus-2025-07-14", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 129024, max_output_tokens: 16384, cost_input_x1000: 400, cost_output_x1000: 1200, arena_overall: 0 },
    ModelInfoEntry { name: "qwen-plus-2025-07-28", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 1000000, max_output_tokens: 32768, cost_input_x1000: 260, cost_output_x1000: 780, arena_overall: 0 },
    ModelInfoEntry { name: "qwen-plus-2025-07-28:thinking", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 1000000, max_output_tokens: 32768, cost_input_x1000: 260, cost_output_x1000: 780, arena_overall: 0 },
    ModelInfoEntry { name: "qwen-plus-2025-09-11", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 997952, max_output_tokens: 32768, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "qwen-plus-latest", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 997952, max_output_tokens: 32768, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "qwen-qwq-32b-preview", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "qwen-sea-lion-v4-32b-it", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 4096, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "qwen-turbo", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 16384, cost_input_x1000: 50, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "qwen-turbo-2024-11-01", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 1000000, max_output_tokens: 8192, cost_input_x1000: 50, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "qwen-turbo-2025-04-28", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 1000000, max_output_tokens: 16384, cost_input_x1000: 50, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "qwen-turbo-latest", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 1000000, max_output_tokens: 16384, cost_input_x1000: 50, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "qwen-v2p5-14b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "qwen-v2p5-7b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "qwen-vl-max", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 32768, cost_input_x1000: 520, cost_output_x1000: 2080, arena_overall: 0 },
    ModelInfoEntry { name: "qwen-vl-plus", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 8192, cost_input_x1000: 210, cost_output_x1000: 630, arena_overall: 0 },
    ModelInfoEntry { name: "qwen.qwen3-235b-a22b-2507-v1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 131072, cost_input_x1000: 220, cost_output_x1000: 880, arena_overall: 0 },
    ModelInfoEntry { name: "qwen.qwen3-32b-v1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 16384, cost_input_x1000: 150, cost_output_x1000: 600, arena_overall: 0 },
    ModelInfoEntry { name: "qwen.qwen3-coder-30b-a3b-v1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 131072, cost_input_x1000: 150, cost_output_x1000: 600, arena_overall: 0 },
    ModelInfoEntry { name: "qwen.qwen3-coder-480b-a35b-v1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262000, max_output_tokens: 65536, cost_input_x1000: 220, cost_output_x1000: 1800, arena_overall: 0 },
    ModelInfoEntry { name: "qwen.qwen3-coder-next", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 8192, cost_input_x1000: 600, cost_output_x1000: 1440, arena_overall: 0 },
    ModelInfoEntry { name: "qwen.qwen3-next-80b-a3b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 8192, cost_input_x1000: 150, cost_output_x1000: 1200, arena_overall: 0 },
    ModelInfoEntry { name: "qwen.qwen3-vl-235b-a22b", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 8192, cost_input_x1000: 530, cost_output_x1000: 2660, arena_overall: 0 },
    ModelInfoEntry { name: "qwen1p5-72b-chat", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "qwen2-72b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 5879 },
    ModelInfoEntry { name: "qwen2-7b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "qwen2-audio-7b-instruct", supports_vision: false, supports_audio: true, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 500, cost_output_x1000: 100000, arena_overall: 0 },
    ModelInfoEntry { name: "qwen2-vl-2b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "qwen2-vl-72b-instruct", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "qwen2-vl-7b-instruct", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "qwen2.5-32b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 128000, cost_input_x1000: 60, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "qwen2.5-72b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 130, cost_output_x1000: 400, arena_overall: 6939 },
    ModelInfoEntry { name: "qwen2.5-72b-instruct-turbo", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "qwen2.5-7b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 70, cost_output_x1000: 70, arena_overall: 0 },
    ModelInfoEntry { name: "qwen2.5-7b-instruct-turbo", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "qwen2.5-coder-32b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 120, cost_output_x1000: 300, arena_overall: 6333 },
    ModelInfoEntry { name: "qwen2.5-coder-3b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 10, cost_output_x1000: 30, arena_overall: 0 },
    ModelInfoEntry { name: "qwen2.5-coder-7b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 60, cost_output_x1000: 120, arena_overall: 0 },
    ModelInfoEntry { name: "qwen2.5-coder-7b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 0, cost_input_x1000: 10, cost_output_x1000: 30, arena_overall: 0 },
    ModelInfoEntry { name: "qwen2.5-vl-32b-instruct", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 128000, cost_input_x1000: 200, cost_output_x1000: 600, arena_overall: 0 },
    ModelInfoEntry { name: "qwen2.5-vl-72b-instruct", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 910, cost_output_x1000: 910, arena_overall: 0 },
    ModelInfoEntry { name: "qwen25-coder-32b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 50, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "qwen2p5-0p5b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "qwen2p5-14b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "qwen2p5-1p5b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "qwen2p5-32b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "qwen2p5-32b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "qwen2p5-72b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "qwen2p5-72b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "qwen2p5-7b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "qwen2p5-coder-0p5b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "qwen2p5-coder-0p5b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "qwen2p5-coder-14b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "qwen2p5-coder-14b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "qwen2p5-coder-1p5b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "qwen2p5-coder-1p5b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "qwen2p5-coder-32b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "qwen2p5-coder-32b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "qwen2p5-coder-32b-instruct-128k", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "qwen2p5-coder-32b-instruct-32k-rope", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "qwen2p5-coder-32b-instruct-64k", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 65536, max_output_tokens: 65536, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "qwen2p5-coder-3b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "qwen2p5-coder-3b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "qwen2p5-coder-7b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "qwen2p5-coder-7b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "qwen2p5-math-72b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "qwen2p5-vl-32b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 128000, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "qwen2p5-vl-3b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 128000, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "qwen2p5-vl-72b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 128000, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "qwen2p5-vl-7b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 128000, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-0p6b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 40960, max_output_tokens: 40960, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-14b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 40960, max_output_tokens: 40960, cost_input_x1000: 60, cost_output_x1000: 240, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-1p7b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-1p7b-fp8-draft", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 262144, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-1p7b-fp8-draft-131072", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-1p7b-fp8-draft-40960", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 40960, max_output_tokens: 40960, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-235b-a22b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 262144, cost_input_x1000: 200, cost_output_x1000: 600, arena_overall: 8379 },
    ModelInfoEntry { name: "qwen3-235b-a22b-2507", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 262144, cost_input_x1000: 71, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-235b-a22b-fp8", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 40960, max_output_tokens: 20000, cost_input_x1000: 200, cost_output_x1000: 800, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-235b-a22b-fp8-tput", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 40000, max_output_tokens: 0, cost_input_x1000: 200, cost_output_x1000: 600, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-235b-a22b-instruct-2507", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 262144, cost_input_x1000: 90, cost_output_x1000: 600, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-235b-a22b-instruct-2507-maas", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 16384, cost_input_x1000: 250, cost_output_x1000: 1000, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-235b-a22b-instruct-2507-tput", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262000, max_output_tokens: 0, cost_input_x1000: 200, cost_output_x1000: 6000, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-235b-a22b-thinking-2507", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 262144, cost_input_x1000: 650, cost_output_x1000: 3000, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-30b-a3b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 100, cost_output_x1000: 300, arena_overall: 7682 },
    ModelInfoEntry { name: "qwen3-30b-a3b-fp8", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 40960, max_output_tokens: 20000, cost_input_x1000: 90, cost_output_x1000: 450, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-30b-a3b-instruct-2507", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 262144, cost_input_x1000: 500, cost_output_x1000: 500, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-30b-a3b-thinking-2507", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 262144, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-32b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 100, cost_output_x1000: 280, arena_overall: 8030 },
    ModelInfoEntry { name: "qwen3-32b-fp8", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 50, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-4b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 40960, max_output_tokens: 40960, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-4b-fp8", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 20000, cost_input_x1000: 30, cost_output_x1000: 30, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-4b-instruct-2507", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 262144, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-4b-instruct-2507-gguf", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 32768, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-8b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 40960, max_output_tokens: 40960, cost_input_x1000: 40, cost_output_x1000: 140, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-8b-fp8", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 20000, cost_input_x1000: 35, cost_output_x1000: 138, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-coder", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 262100, cost_input_x1000: 220, cost_output_x1000: 950, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-coder-30b-a3b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 262144, cost_input_x1000: 150, cost_output_x1000: 600, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-coder-30b-a3b-instruct-gguf", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 32768, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-coder-480b-a35b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 262144, cost_input_x1000: 100000000, cost_output_x1000: 150000000, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-coder-480b-a35b-instruct-fp8", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 256000, max_output_tokens: 0, cost_input_x1000: 2000, cost_output_x1000: 2000, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-coder-480b-a35b-instruct-maas", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 32768, cost_input_x1000: 1000, cost_output_x1000: 4000, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-coder-480b-a35b-instruct-turbo", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 262144, cost_input_x1000: 290, cost_output_x1000: 1200, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-coder-480b-instruct-bf16", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-coder-flash", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 1000000, max_output_tokens: 65536, cost_input_x1000: 195, cost_output_x1000: 975, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-coder-flash-2025-07-28", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 997952, max_output_tokens: 65536, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-coder-next", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 65536, cost_input_x1000: 120, cost_output_x1000: 750, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-coder-plus", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 1000000, max_output_tokens: 65536, cost_input_x1000: 1000, cost_output_x1000: 5000, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-coder-plus-2025-07-22", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 997952, max_output_tokens: 65536, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-coder:480b-cloud", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 262144, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-coder:free", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262000, max_output_tokens: 262000, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-max", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 65536, cost_input_x1000: 2110, cost_output_x1000: 8450, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-max-2026-01-23", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 258048, max_output_tokens: 65536, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-max-preview", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 258048, max_output_tokens: 65536, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-max-thinking", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 32768, cost_input_x1000: 780, cost_output_x1000: 3900, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-next-80b-a3b-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 262144, cost_input_x1000: 150, cost_output_x1000: 1500, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-next-80b-a3b-instruct-maas", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 262144, cost_input_x1000: 150, cost_output_x1000: 1200, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-next-80b-a3b-instruct:free", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 0, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-next-80b-a3b-thinking", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 262144, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-next-80b-a3b-thinking-maas", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 262144, cost_input_x1000: 150, cost_output_x1000: 1200, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-omni-30b-a3b-instruct", supports_vision: true, supports_audio: true, supports_video: false, supports_pdf: false, max_input_tokens: 65536, max_output_tokens: 16384, cost_input_x1000: 250, cost_output_x1000: 970, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-omni-30b-a3b-thinking", supports_vision: true, supports_audio: true, supports_video: false, supports_pdf: false, max_input_tokens: 65536, max_output_tokens: 16384, cost_input_x1000: 250, cost_output_x1000: 970, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-vl-235b-a22b-instruct", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 262144, cost_input_x1000: 220, cost_output_x1000: 880, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-vl-235b-a22b-instruct-fp8", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 16384, cost_input_x1000: 300, cost_output_x1000: 1400, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-vl-235b-a22b-thinking", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 262144, cost_input_x1000: 980, cost_output_x1000: 3950, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-vl-30b-a3b-instruct", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 262144, cost_input_x1000: 200, cost_output_x1000: 700, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-vl-30b-a3b-thinking", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 262144, cost_input_x1000: 200, cost_output_x1000: 1000, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-vl-32b-instruct", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 32768, cost_input_x1000: 160, cost_output_x1000: 640, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-vl-32b-thinking", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 32768, cost_input_x1000: 160, cost_output_x1000: 2870, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-vl-8b", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 8192, cost_input_x1000: 150, cost_output_x1000: 550, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-vl-8b-instruct", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 32768, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-vl-8b-thinking", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 32768, cost_input_x1000: 117, cost_output_x1000: 1365, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3-vl-plus", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 260096, max_output_tokens: 32768, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3.5-122b-a10b", supports_vision: true, supports_audio: false, supports_video: true, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 65536, cost_input_x1000: 400, cost_output_x1000: 2000, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3.5-27b", supports_vision: true, supports_audio: false, supports_video: true, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 65536, cost_input_x1000: 300, cost_output_x1000: 2400, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3.5-35b-a3b", supports_vision: true, supports_audio: false, supports_video: true, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 65536, cost_input_x1000: 250, cost_output_x1000: 2000, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3.5-397b-a17b", supports_vision: true, supports_audio: false, supports_video: true, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 65536, cost_input_x1000: 600, cost_output_x1000: 3600, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3.5-9b", supports_vision: true, supports_audio: false, supports_video: true, supports_pdf: false, max_input_tokens: 256000, max_output_tokens: 32768, cost_input_x1000: 50, cost_output_x1000: 150, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3.5-flash-02-23", supports_vision: true, supports_audio: false, supports_video: true, supports_pdf: false, max_input_tokens: 1000000, max_output_tokens: 65536, cost_input_x1000: 100, cost_output_x1000: 400, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3.5-plus", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 991808, max_output_tokens: 65536, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3.5-plus-02-15", supports_vision: true, supports_audio: false, supports_video: true, supports_pdf: false, max_input_tokens: 1000000, max_output_tokens: 65536, cost_input_x1000: 400, cost_output_x1000: 2400, arena_overall: 0 },
    ModelInfoEntry { name: "qwen3.6-plus-preview:free", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 1000000, max_output_tokens: 32000, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "qwerky-72b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 4096, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "qwerky-qwq-32b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 4096, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "qwq-32b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 150, cost_output_x1000: 400, arena_overall: 7848 },
    ModelInfoEntry { name: "qwq-plus", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 98304, max_output_tokens: 8192, cost_input_x1000: 800, cost_output_x1000: 2400, arena_overall: 0 },
    ModelInfoEntry { name: "r1v4-lite", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 65536, cost_input_x1000: 200, cost_output_x1000: 600, arena_overall: 0 },
    ModelInfoEntry { name: "reka-core", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32000, max_output_tokens: 8192, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "reka-edge", supports_vision: true, supports_audio: false, supports_video: true, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 16384, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "reka-flash", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 100000, max_output_tokens: 8192, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "reka-flash-3", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 65536, max_output_tokens: 65536, cost_input_x1000: 100, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "relace-apply-3", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 256000, max_output_tokens: 128000, cost_input_x1000: 850, cost_output_x1000: 1250, arena_overall: 0 },
    ModelInfoEntry { name: "relace-search", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 256000, max_output_tokens: 128000, cost_input_x1000: 1000, cost_output_x1000: 3000, arena_overall: 0 },
    ModelInfoEntry { name: "remm-slerp-l2-13b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 6144, max_output_tokens: 4096, cost_input_x1000: 1875, cost_output_x1000: 1875, arena_overall: 0 },
    ModelInfoEntry { name: "rnj-1-instruct", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 0, cost_input_x1000: 150, cost_output_x1000: 150, arena_overall: 0 },
    ModelInfoEntry { name: "rocinante-12b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 170, cost_output_x1000: 430, arena_overall: 0 },
    ModelInfoEntry { name: "rolm-ocr", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 128000, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "router", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 850, cost_output_x1000: 3400, arena_overall: 0 },
    ModelInfoEntry { name: "salamandra-7b-instruct-tools-16k", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 4096, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "sarvam-m", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 32000, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "seed-1.6", supports_vision: true, supports_audio: false, supports_video: true, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 32768, cost_input_x1000: 250, cost_output_x1000: 2000, arena_overall: 0 },
    ModelInfoEntry { name: "seed-1.6-flash", supports_vision: true, supports_audio: false, supports_video: true, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 32768, cost_input_x1000: 75, cost_output_x1000: 300, arena_overall: 0 },
    ModelInfoEntry { name: "seed-2.0-lite", supports_vision: true, supports_audio: false, supports_video: true, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 131072, cost_input_x1000: 250, cost_output_x1000: 2000, arena_overall: 0 },
    ModelInfoEntry { name: "seed-2.0-mini", supports_vision: true, supports_audio: false, supports_video: true, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 131072, cost_input_x1000: 100, cost_output_x1000: 400, arena_overall: 0 },
    ModelInfoEntry { name: "skyfall-36b-v2", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 550, cost_output_x1000: 800, arena_overall: 0 },
    ModelInfoEntry { name: "snorkel-mistral-7b-pairrm-dpo", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "snowflake-arctic", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 8192, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "snowflake-llama-3.1-405b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8000, max_output_tokens: 8192, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "snowflake-llama-3.3-70b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8000, max_output_tokens: 8192, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "solar-pro-3", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 0, cost_input_x1000: 150, cost_output_x1000: 600, arena_overall: 0 },
    ModelInfoEntry { name: "sonar", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 8000, cost_input_x1000: 1000, cost_output_x1000: 1000, arena_overall: 0 },
    ModelInfoEntry { name: "sonar-deep-research", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 0, cost_input_x1000: 2000, cost_output_x1000: 8000, arena_overall: 0 },
    ModelInfoEntry { name: "sonar-medium-chat", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 16384, cost_input_x1000: 600, cost_output_x1000: 1800, arena_overall: 0 },
    ModelInfoEntry { name: "sonar-medium-online", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 12000, max_output_tokens: 12000, cost_input_x1000: 0, cost_output_x1000: 1800, arena_overall: 0 },
    ModelInfoEntry { name: "sonar-pro", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 8000, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "sonar-pro-search", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 8000, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "sonar-reasoning", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 8000, cost_input_x1000: 1000, cost_output_x1000: 5000, arena_overall: 0 },
    ModelInfoEntry { name: "sonar-reasoning-pro", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 8000, cost_input_x1000: 2000, cost_output_x1000: 8000, arena_overall: 0 },
    ModelInfoEntry { name: "sonar-small-chat", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 16384, cost_input_x1000: 70, cost_output_x1000: 280, arena_overall: 0 },
    ModelInfoEntry { name: "sonar-small-online", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 12000, max_output_tokens: 12000, cost_input_x1000: 0, cost_output_x1000: 280, arena_overall: 0 },
    ModelInfoEntry { name: "spotlight", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 65537, cost_input_x1000: 180, cost_output_x1000: 180, arena_overall: 0 },
    ModelInfoEntry { name: "stablecode-3b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "starcoder-16b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "starcoder-7b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 8192, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "starcoder2-15b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 16384, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "starcoder2-3b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 16384, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "starcoder2-7b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 16384, max_output_tokens: 16384, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "step-3.5-flash", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 65536, cost_input_x1000: 100, cost_output_x1000: 300, arena_overall: 0 },
    ModelInfoEntry { name: "step-3.5-flash:free", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 256000, max_output_tokens: 256000, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "text-bison", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 1024, cost_input_x1000: 125, cost_output_x1000: 125, arena_overall: 0 },
    ModelInfoEntry { name: "text-bison-001", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 1024, cost_input_x1000: 125, cost_output_x1000: 125, arena_overall: 0 },
    ModelInfoEntry { name: "text-bison-safety-off", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 1024, cost_input_x1000: 125, cost_output_x1000: 125, arena_overall: 0 },
    ModelInfoEntry { name: "text-bison-safety-recitation-off", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 1024, cost_input_x1000: 125, cost_output_x1000: 125, arena_overall: 0 },
    ModelInfoEntry { name: "text-unicorn", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 1024, cost_input_x1000: 10000, cost_output_x1000: 28000, arena_overall: 0 },
    ModelInfoEntry { name: "text-unicorn@001", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8192, max_output_tokens: 1024, cost_input_x1000: 10000, cost_output_x1000: 28000, arena_overall: 0 },
    ModelInfoEntry { name: "titan-embed-text-v2", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 20, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "together-ai-21.1b-41b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 800, cost_output_x1000: 800, arena_overall: 0 },
    ModelInfoEntry { name: "together-ai-4.1b-8b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "together-ai-41.1b-80b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "together-ai-8.1b-21b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 300, cost_output_x1000: 300, arena_overall: 0 },
    ModelInfoEntry { name: "together-ai-81.1b-110b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 1800, cost_output_x1000: 1800, arena_overall: 0 },
    ModelInfoEntry { name: "together-ai-up-to-4b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "tongyi-deepresearch-30b-a3b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 90, cost_output_x1000: 450, arena_overall: 0 },
    ModelInfoEntry { name: "toppy-m-7b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "trinity-large-preview:free", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131000, max_output_tokens: 0, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "trinity-large-thinking", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 262144, max_output_tokens: 80000, cost_input_x1000: 250, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "trinity-mini", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 45, cost_output_x1000: 150, arena_overall: 0 },
    ModelInfoEntry { name: "trinity-mini:free", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 0, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "twelvelabs.pegasus-1-2-v1:0", supports_vision: false, supports_audio: false, supports_video: true, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 0, cost_output_x1000: 7500, arena_overall: 0 },
    ModelInfoEntry { name: "ui-tars-1.5-7b", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 2048, cost_input_x1000: 100, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "unslopnemo-12b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 400, cost_output_x1000: 400, arena_overall: 0 },
    ModelInfoEntry { name: "us.amazon.nova-2-lite-v1:0", supports_vision: true, supports_audio: false, supports_video: true, supports_pdf: true, max_input_tokens: 1000000, max_output_tokens: 64000, cost_input_x1000: 330, cost_output_x1000: 2750, arena_overall: 0 },
    ModelInfoEntry { name: "us.amazon.nova-2-pro-preview-20251202-v1:0", supports_vision: true, supports_audio: false, supports_video: true, supports_pdf: true, max_input_tokens: 1000000, max_output_tokens: 64000, cost_input_x1000: 2188, cost_output_x1000: 17500, arena_overall: 0 },
    ModelInfoEntry { name: "us.amazon.nova-lite-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 300000, max_output_tokens: 10000, cost_input_x1000: 60, cost_output_x1000: 240, arena_overall: 0 },
    ModelInfoEntry { name: "us.amazon.nova-micro-v1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 10000, cost_input_x1000: 35, cost_output_x1000: 140, arena_overall: 0 },
    ModelInfoEntry { name: "us.amazon.nova-premier-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 1000000, max_output_tokens: 10000, cost_input_x1000: 2500, cost_output_x1000: 12500, arena_overall: 0 },
    ModelInfoEntry { name: "us.amazon.nova-pro-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 300000, max_output_tokens: 10000, cost_input_x1000: 800, cost_output_x1000: 3200, arena_overall: 0 },
    ModelInfoEntry { name: "us.anthropic.claude-3-5-haiku-20241022-v1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 8192, cost_input_x1000: 800, cost_output_x1000: 4000, arena_overall: 0 },
    ModelInfoEntry { name: "us.anthropic.claude-3-5-sonnet-20240620-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 4096, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "us.anthropic.claude-3-5-sonnet-20241022-v2:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 8192, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "us.anthropic.claude-3-7-sonnet-20250219-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 8192, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "us.anthropic.claude-3-haiku-20240307-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 4096, cost_input_x1000: 250, cost_output_x1000: 1250, arena_overall: 0 },
    ModelInfoEntry { name: "us.anthropic.claude-3-opus-20240229-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 4096, cost_input_x1000: 15000, cost_output_x1000: 75000, arena_overall: 0 },
    ModelInfoEntry { name: "us.anthropic.claude-3-sonnet-20240229-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 4096, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "us.anthropic.claude-haiku-4-5-20251001-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 64000, cost_input_x1000: 1100, cost_output_x1000: 5500, arena_overall: 0 },
    ModelInfoEntry { name: "us.anthropic.claude-opus-4-1-20250805-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 32000, cost_input_x1000: 15000, cost_output_x1000: 75000, arena_overall: 0 },
    ModelInfoEntry { name: "us.anthropic.claude-opus-4-20250514-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 32000, cost_input_x1000: 15000, cost_output_x1000: 75000, arena_overall: 0 },
    ModelInfoEntry { name: "us.anthropic.claude-opus-4-5-20251101-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 64000, cost_input_x1000: 5500, cost_output_x1000: 27500, arena_overall: 0 },
    ModelInfoEntry { name: "us.anthropic.claude-opus-4-6-v1", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 1000000, max_output_tokens: 128000, cost_input_x1000: 5500, cost_output_x1000: 27500, arena_overall: 0 },
    ModelInfoEntry { name: "us.anthropic.claude-sonnet-4-20250514-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 1000000, max_output_tokens: 64000, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "us.anthropic.claude-sonnet-4-5-20250929-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 200000, max_output_tokens: 64000, cost_input_x1000: 3300, cost_output_x1000: 16500, arena_overall: 0 },
    ModelInfoEntry { name: "us.anthropic.claude-sonnet-4-6", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 1000000, max_output_tokens: 64000, cost_input_x1000: 3300, cost_output_x1000: 16500, arena_overall: 0 },
    ModelInfoEntry { name: "us.deepseek.r1-v1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 1350, cost_output_x1000: 5400, arena_overall: 0 },
    ModelInfoEntry { name: "us.deepseek.v3.2", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 163840, max_output_tokens: 163840, cost_input_x1000: 620, cost_output_x1000: 1850, arena_overall: 0 },
    ModelInfoEntry { name: "us.meta.llama3-1-405b-instruct-v1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 5320, cost_output_x1000: 16000, arena_overall: 0 },
    ModelInfoEntry { name: "us.meta.llama3-1-70b-instruct-v1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 2048, cost_input_x1000: 990, cost_output_x1000: 990, arena_overall: 0 },
    ModelInfoEntry { name: "us.meta.llama3-1-8b-instruct-v1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 2048, cost_input_x1000: 220, cost_output_x1000: 220, arena_overall: 0 },
    ModelInfoEntry { name: "us.meta.llama3-2-11b-instruct-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 350, cost_output_x1000: 350, arena_overall: 0 },
    ModelInfoEntry { name: "us.meta.llama3-2-1b-instruct-v1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 100, cost_output_x1000: 100, arena_overall: 0 },
    ModelInfoEntry { name: "us.meta.llama3-2-3b-instruct-v1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 150, cost_output_x1000: 150, arena_overall: 0 },
    ModelInfoEntry { name: "us.meta.llama3-2-90b-instruct-v1:0", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 2000, cost_output_x1000: 2000, arena_overall: 0 },
    ModelInfoEntry { name: "us.meta.llama3-3-70b-instruct-v1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 720, cost_output_x1000: 720, arena_overall: 0 },
    ModelInfoEntry { name: "us.meta.llama4-maverick-17b-instruct-v1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 240, cost_output_x1000: 970, arena_overall: 0 },
    ModelInfoEntry { name: "us.meta.llama4-scout-17b-instruct-v1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 170, cost_output_x1000: 660, arena_overall: 0 },
    ModelInfoEntry { name: "us.mistral.pixtral-large-2502-v1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 4096, cost_input_x1000: 2000, cost_output_x1000: 6000, arena_overall: 0 },
    ModelInfoEntry { name: "us.twelvelabs.pegasus-1-2-v1:0", supports_vision: false, supports_audio: false, supports_video: true, supports_pdf: false, max_input_tokens: 0, max_output_tokens: 0, cost_input_x1000: 0, cost_output_x1000: 7500, arena_overall: 0 },
    ModelInfoEntry { name: "us.writer.palmyra-x4-v1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 128000, max_output_tokens: 8192, cost_input_x1000: 2500, cost_output_x1000: 10000, arena_overall: 0 },
    ModelInfoEntry { name: "us.writer.palmyra-x5-v1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 1000000, max_output_tokens: 8192, cost_input_x1000: 600, cost_output_x1000: 6000, arena_overall: 0 },
    ModelInfoEntry { name: "v0-1.0-md", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 128000, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "v0-1.5-lg", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 512000, max_output_tokens: 512000, cost_input_x1000: 15000, cost_output_x1000: 75000, arena_overall: 0 },
    ModelInfoEntry { name: "v0-1.5-md", supports_vision: true, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 128000, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "vicuna", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 2048, max_output_tokens: 2048, cost_input_x1000: 0, cost_output_x1000: 0, arena_overall: 0 },
    ModelInfoEntry { name: "virtuoso-large", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 64000, cost_input_x1000: 750, cost_output_x1000: 1200, arena_overall: 0 },
    ModelInfoEntry { name: "voxtral-small-24b-2507", supports_vision: false, supports_audio: true, supports_video: false, supports_pdf: false, max_input_tokens: 32000, max_output_tokens: 0, cost_input_x1000: 100, cost_output_x1000: 300, arena_overall: 0 },
    ModelInfoEntry { name: "weaver", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 8000, max_output_tokens: 2000, cost_input_x1000: 5625, cost_output_x1000: 5625, arena_overall: 0 },
    ModelInfoEntry { name: "wizardlm-2-8x22b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 65536, max_output_tokens: 65536, cost_input_x1000: 620, cost_output_x1000: 620, arena_overall: 0 },
    ModelInfoEntry { name: "writer.palmyra-x4-v1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 128000, max_output_tokens: 8192, cost_input_x1000: 2500, cost_output_x1000: 10000, arena_overall: 0 },
    ModelInfoEntry { name: "writer.palmyra-x5-v1:0", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: true, max_input_tokens: 1000000, max_output_tokens: 8192, cost_input_x1000: 600, cost_output_x1000: 6000, arena_overall: 0 },
    ModelInfoEntry { name: "xai.grok-3", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "xai.grok-3-fast", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 5000, cost_output_x1000: 25000, arena_overall: 0 },
    ModelInfoEntry { name: "xai.grok-3-mini", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 300, cost_output_x1000: 500, arena_overall: 0 },
    ModelInfoEntry { name: "xai.grok-3-mini-fast", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 131072, max_output_tokens: 131072, cost_input_x1000: 600, cost_output_x1000: 4000, arena_overall: 0 },
    ModelInfoEntry { name: "xai.grok-4", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 128000, cost_input_x1000: 3000, cost_output_x1000: 15000, arena_overall: 0 },
    ModelInfoEntry { name: "yi-34b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "yi-34b-200k-capybara", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 200000, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 0 },
    ModelInfoEntry { name: "yi-34b-chat", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 900, cost_output_x1000: 900, arena_overall: 4727 },
    ModelInfoEntry { name: "yi-6b", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 4096, max_output_tokens: 4096, cost_input_x1000: 200, cost_output_x1000: 200, arena_overall: 0 },
    ModelInfoEntry { name: "yi-large", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 3000, cost_output_x1000: 3000, arena_overall: 0 },
    ModelInfoEntry { name: "zai-glm-4.6", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 128000, cost_input_x1000: 2250, cost_output_x1000: 2750, arena_overall: 0 },
    ModelInfoEntry { name: "zai-glm-4.7", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 128000, max_output_tokens: 128000, cost_input_x1000: 2250, cost_output_x1000: 2750, arena_overall: 0 },
    ModelInfoEntry { name: "zai.glm-4.7", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 128000, cost_input_x1000: 600, cost_output_x1000: 2200, arena_overall: 0 },
    ModelInfoEntry { name: "zai.glm-4.7-flash", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 200000, max_output_tokens: 128000, cost_input_x1000: 70, cost_output_x1000: 400, arena_overall: 0 },
    ModelInfoEntry { name: "zephyr-7b-beta", supports_vision: false, supports_audio: false, supports_video: false, supports_pdf: false, max_input_tokens: 32768, max_output_tokens: 32768, cost_input_x1000: 150, cost_output_x1000: 150, arena_overall: 3848 },
];