@ottocode/sdk 0.1.298 → 0.1.299
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/src/core/src/providers/resolver.ts +5 -0
- package/src/core/src/tools/builtin/fs/read.ts +15 -3
- package/src/core/src/tools/builtin/fs/read.txt +2 -0
- package/src/core/src/tools/builtin/patch/repair.ts +22 -7
- package/src/core/src/tools/builtin/patch.ts +15 -2
- package/src/core/src/tools/builtin/ripgrep.ts +80 -25
- package/src/core/src/tools/builtin/ripgrep.txt +2 -0
- package/src/core/src/tools/builtin/shell.ts +116 -11
- package/src/core/src/tools/builtin/shell.txt +4 -2
- package/src/index.ts +6 -1
- package/src/providers/src/catalog-manual.ts +55 -0
- package/src/providers/src/catalog.ts +265 -2823
- package/src/providers/src/index.ts +6 -1
- package/src/providers/src/model-catalog-cache.ts +5 -0
- package/src/providers/src/oauth-models.ts +13 -1
- package/src/providers/src/utils.ts +3 -0
- package/src/providers/src/validate.ts +5 -1
- package/src/providers/src/xai-client.ts +50 -3
- package/src/types/src/provider.ts +7 -0
|
@@ -10,52 +10,6 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
10
10
|
openai: {
|
|
11
11
|
id: 'openai',
|
|
12
12
|
models: [
|
|
13
|
-
{
|
|
14
|
-
id: 'chatgpt-image-latest',
|
|
15
|
-
ownedBy: 'openai',
|
|
16
|
-
label: 'chatgpt-image-latest',
|
|
17
|
-
modalities: {
|
|
18
|
-
input: ['text', 'image'],
|
|
19
|
-
output: ['text', 'image'],
|
|
20
|
-
},
|
|
21
|
-
toolCall: false,
|
|
22
|
-
reasoningText: false,
|
|
23
|
-
attachment: true,
|
|
24
|
-
temperature: false,
|
|
25
|
-
releaseDate: '2025-12-16',
|
|
26
|
-
lastUpdated: '2025-12-16',
|
|
27
|
-
openWeights: false,
|
|
28
|
-
limit: {
|
|
29
|
-
context: 0,
|
|
30
|
-
output: 0,
|
|
31
|
-
},
|
|
32
|
-
},
|
|
33
|
-
{
|
|
34
|
-
id: 'gpt-3.5-turbo',
|
|
35
|
-
ownedBy: 'openai',
|
|
36
|
-
label: 'GPT-3.5-turbo',
|
|
37
|
-
modalities: {
|
|
38
|
-
input: ['text'],
|
|
39
|
-
output: ['text'],
|
|
40
|
-
},
|
|
41
|
-
toolCall: false,
|
|
42
|
-
reasoningText: false,
|
|
43
|
-
attachment: false,
|
|
44
|
-
temperature: true,
|
|
45
|
-
knowledge: '2021-09-01',
|
|
46
|
-
releaseDate: '2023-03-01',
|
|
47
|
-
lastUpdated: '2023-11-06',
|
|
48
|
-
openWeights: false,
|
|
49
|
-
cost: {
|
|
50
|
-
input: 0.5,
|
|
51
|
-
output: 1.5,
|
|
52
|
-
cacheRead: 0,
|
|
53
|
-
},
|
|
54
|
-
limit: {
|
|
55
|
-
context: 16385,
|
|
56
|
-
output: 4096,
|
|
57
|
-
},
|
|
58
|
-
},
|
|
59
13
|
{
|
|
60
14
|
id: 'gpt-4',
|
|
61
15
|
ownedBy: 'openai',
|
|
@@ -339,32 +293,6 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
339
293
|
output: 128000,
|
|
340
294
|
},
|
|
341
295
|
},
|
|
342
|
-
{
|
|
343
|
-
id: 'gpt-5-chat-latest',
|
|
344
|
-
ownedBy: 'openai',
|
|
345
|
-
label: 'GPT-5 Chat (latest)',
|
|
346
|
-
modalities: {
|
|
347
|
-
input: ['text', 'image'],
|
|
348
|
-
output: ['text'],
|
|
349
|
-
},
|
|
350
|
-
toolCall: false,
|
|
351
|
-
reasoningText: true,
|
|
352
|
-
attachment: true,
|
|
353
|
-
temperature: true,
|
|
354
|
-
knowledge: '2024-09-30',
|
|
355
|
-
releaseDate: '2025-08-07',
|
|
356
|
-
lastUpdated: '2025-08-07',
|
|
357
|
-
openWeights: false,
|
|
358
|
-
cost: {
|
|
359
|
-
input: 1.25,
|
|
360
|
-
output: 10,
|
|
361
|
-
cacheRead: 0.125,
|
|
362
|
-
},
|
|
363
|
-
limit: {
|
|
364
|
-
context: 400000,
|
|
365
|
-
output: 128000,
|
|
366
|
-
},
|
|
367
|
-
},
|
|
368
296
|
{
|
|
369
297
|
id: 'gpt-5-codex',
|
|
370
298
|
ownedBy: 'openai',
|
|
@@ -933,66 +861,6 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
933
861
|
output: 128000,
|
|
934
862
|
},
|
|
935
863
|
},
|
|
936
|
-
{
|
|
937
|
-
id: 'gpt-image-1',
|
|
938
|
-
ownedBy: 'openai',
|
|
939
|
-
label: 'gpt-image-1',
|
|
940
|
-
modalities: {
|
|
941
|
-
input: ['text', 'image'],
|
|
942
|
-
output: ['image'],
|
|
943
|
-
},
|
|
944
|
-
toolCall: false,
|
|
945
|
-
reasoningText: false,
|
|
946
|
-
attachment: true,
|
|
947
|
-
temperature: false,
|
|
948
|
-
releaseDate: '2025-04-24',
|
|
949
|
-
lastUpdated: '2025-04-24',
|
|
950
|
-
openWeights: false,
|
|
951
|
-
limit: {
|
|
952
|
-
context: 0,
|
|
953
|
-
output: 0,
|
|
954
|
-
},
|
|
955
|
-
},
|
|
956
|
-
{
|
|
957
|
-
id: 'gpt-image-1-mini',
|
|
958
|
-
ownedBy: 'openai',
|
|
959
|
-
label: 'gpt-image-1-mini',
|
|
960
|
-
modalities: {
|
|
961
|
-
input: ['text', 'image'],
|
|
962
|
-
output: ['text', 'image'],
|
|
963
|
-
},
|
|
964
|
-
toolCall: false,
|
|
965
|
-
reasoningText: false,
|
|
966
|
-
attachment: true,
|
|
967
|
-
temperature: false,
|
|
968
|
-
releaseDate: '2025-09-26',
|
|
969
|
-
lastUpdated: '2025-09-26',
|
|
970
|
-
openWeights: false,
|
|
971
|
-
limit: {
|
|
972
|
-
context: 0,
|
|
973
|
-
output: 0,
|
|
974
|
-
},
|
|
975
|
-
},
|
|
976
|
-
{
|
|
977
|
-
id: 'gpt-image-1.5',
|
|
978
|
-
ownedBy: 'openai',
|
|
979
|
-
label: 'gpt-image-1.5',
|
|
980
|
-
modalities: {
|
|
981
|
-
input: ['text', 'image'],
|
|
982
|
-
output: ['text', 'image'],
|
|
983
|
-
},
|
|
984
|
-
toolCall: false,
|
|
985
|
-
reasoningText: false,
|
|
986
|
-
attachment: true,
|
|
987
|
-
temperature: false,
|
|
988
|
-
releaseDate: '2025-11-25',
|
|
989
|
-
lastUpdated: '2025-11-25',
|
|
990
|
-
openWeights: false,
|
|
991
|
-
limit: {
|
|
992
|
-
context: 0,
|
|
993
|
-
output: 0,
|
|
994
|
-
},
|
|
995
|
-
},
|
|
996
864
|
{
|
|
997
865
|
id: 'o1',
|
|
998
866
|
ownedBy: 'openai',
|
|
@@ -1019,58 +887,6 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
1019
887
|
output: 100000,
|
|
1020
888
|
},
|
|
1021
889
|
},
|
|
1022
|
-
{
|
|
1023
|
-
id: 'o1-mini',
|
|
1024
|
-
ownedBy: 'openai',
|
|
1025
|
-
label: 'o1-mini',
|
|
1026
|
-
modalities: {
|
|
1027
|
-
input: ['text'],
|
|
1028
|
-
output: ['text'],
|
|
1029
|
-
},
|
|
1030
|
-
toolCall: false,
|
|
1031
|
-
reasoningText: true,
|
|
1032
|
-
attachment: false,
|
|
1033
|
-
temperature: false,
|
|
1034
|
-
knowledge: '2023-09',
|
|
1035
|
-
releaseDate: '2024-09-12',
|
|
1036
|
-
lastUpdated: '2024-09-12',
|
|
1037
|
-
openWeights: false,
|
|
1038
|
-
cost: {
|
|
1039
|
-
input: 1.1,
|
|
1040
|
-
output: 4.4,
|
|
1041
|
-
cacheRead: 0.55,
|
|
1042
|
-
},
|
|
1043
|
-
limit: {
|
|
1044
|
-
context: 128000,
|
|
1045
|
-
output: 65536,
|
|
1046
|
-
},
|
|
1047
|
-
},
|
|
1048
|
-
{
|
|
1049
|
-
id: 'o1-preview',
|
|
1050
|
-
ownedBy: 'openai',
|
|
1051
|
-
label: 'o1-preview',
|
|
1052
|
-
modalities: {
|
|
1053
|
-
input: ['text'],
|
|
1054
|
-
output: ['text'],
|
|
1055
|
-
},
|
|
1056
|
-
toolCall: false,
|
|
1057
|
-
reasoningText: true,
|
|
1058
|
-
attachment: false,
|
|
1059
|
-
temperature: true,
|
|
1060
|
-
knowledge: '2023-09',
|
|
1061
|
-
releaseDate: '2024-09-12',
|
|
1062
|
-
lastUpdated: '2024-09-12',
|
|
1063
|
-
openWeights: false,
|
|
1064
|
-
cost: {
|
|
1065
|
-
input: 15,
|
|
1066
|
-
output: 60,
|
|
1067
|
-
cacheRead: 7.5,
|
|
1068
|
-
},
|
|
1069
|
-
limit: {
|
|
1070
|
-
context: 128000,
|
|
1071
|
-
output: 32768,
|
|
1072
|
-
},
|
|
1073
|
-
},
|
|
1074
890
|
{
|
|
1075
891
|
id: 'o1-pro',
|
|
1076
892
|
ownedBy: 'openai',
|
|
@@ -1251,81 +1067,6 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
1251
1067
|
output: 100000,
|
|
1252
1068
|
},
|
|
1253
1069
|
},
|
|
1254
|
-
{
|
|
1255
|
-
id: 'text-embedding-3-large',
|
|
1256
|
-
ownedBy: 'openai',
|
|
1257
|
-
label: 'text-embedding-3-large',
|
|
1258
|
-
modalities: {
|
|
1259
|
-
input: ['text'],
|
|
1260
|
-
output: ['text'],
|
|
1261
|
-
},
|
|
1262
|
-
toolCall: false,
|
|
1263
|
-
reasoningText: false,
|
|
1264
|
-
attachment: false,
|
|
1265
|
-
temperature: false,
|
|
1266
|
-
knowledge: '2024-01',
|
|
1267
|
-
releaseDate: '2024-01-25',
|
|
1268
|
-
lastUpdated: '2024-01-25',
|
|
1269
|
-
openWeights: false,
|
|
1270
|
-
cost: {
|
|
1271
|
-
input: 0.13,
|
|
1272
|
-
output: 0,
|
|
1273
|
-
},
|
|
1274
|
-
limit: {
|
|
1275
|
-
context: 8191,
|
|
1276
|
-
output: 3072,
|
|
1277
|
-
},
|
|
1278
|
-
},
|
|
1279
|
-
{
|
|
1280
|
-
id: 'text-embedding-3-small',
|
|
1281
|
-
ownedBy: 'openai',
|
|
1282
|
-
label: 'text-embedding-3-small',
|
|
1283
|
-
modalities: {
|
|
1284
|
-
input: ['text'],
|
|
1285
|
-
output: ['text'],
|
|
1286
|
-
},
|
|
1287
|
-
toolCall: false,
|
|
1288
|
-
reasoningText: false,
|
|
1289
|
-
attachment: false,
|
|
1290
|
-
temperature: false,
|
|
1291
|
-
knowledge: '2024-01',
|
|
1292
|
-
releaseDate: '2024-01-25',
|
|
1293
|
-
lastUpdated: '2024-01-25',
|
|
1294
|
-
openWeights: false,
|
|
1295
|
-
cost: {
|
|
1296
|
-
input: 0.02,
|
|
1297
|
-
output: 0,
|
|
1298
|
-
},
|
|
1299
|
-
limit: {
|
|
1300
|
-
context: 8191,
|
|
1301
|
-
output: 1536,
|
|
1302
|
-
},
|
|
1303
|
-
},
|
|
1304
|
-
{
|
|
1305
|
-
id: 'text-embedding-ada-002',
|
|
1306
|
-
ownedBy: 'openai',
|
|
1307
|
-
label: 'text-embedding-ada-002',
|
|
1308
|
-
modalities: {
|
|
1309
|
-
input: ['text'],
|
|
1310
|
-
output: ['text'],
|
|
1311
|
-
},
|
|
1312
|
-
toolCall: false,
|
|
1313
|
-
reasoningText: false,
|
|
1314
|
-
attachment: false,
|
|
1315
|
-
temperature: false,
|
|
1316
|
-
knowledge: '2022-12',
|
|
1317
|
-
releaseDate: '2022-12-15',
|
|
1318
|
-
lastUpdated: '2022-12-15',
|
|
1319
|
-
openWeights: false,
|
|
1320
|
-
cost: {
|
|
1321
|
-
input: 0.1,
|
|
1322
|
-
output: 0,
|
|
1323
|
-
},
|
|
1324
|
-
limit: {
|
|
1325
|
-
context: 8192,
|
|
1326
|
-
output: 1536,
|
|
1327
|
-
},
|
|
1328
|
-
},
|
|
1329
1070
|
],
|
|
1330
1071
|
label: 'OpenAI',
|
|
1331
1072
|
env: ['OPENAI_API_KEY'],
|
|
@@ -2068,32 +1809,6 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
2068
1809
|
output: 65536,
|
|
2069
1810
|
},
|
|
2070
1811
|
},
|
|
2071
|
-
{
|
|
2072
|
-
id: 'gemini-2.5-flash-image',
|
|
2073
|
-
ownedBy: 'google',
|
|
2074
|
-
label: 'Nano Banana',
|
|
2075
|
-
modalities: {
|
|
2076
|
-
input: ['text', 'image'],
|
|
2077
|
-
output: ['text', 'image'],
|
|
2078
|
-
},
|
|
2079
|
-
toolCall: false,
|
|
2080
|
-
reasoningText: true,
|
|
2081
|
-
attachment: true,
|
|
2082
|
-
temperature: true,
|
|
2083
|
-
knowledge: '2025-06',
|
|
2084
|
-
releaseDate: '2025-08-26',
|
|
2085
|
-
lastUpdated: '2025-08-26',
|
|
2086
|
-
openWeights: false,
|
|
2087
|
-
cost: {
|
|
2088
|
-
input: 0.3,
|
|
2089
|
-
output: 30,
|
|
2090
|
-
cacheRead: 0.075,
|
|
2091
|
-
},
|
|
2092
|
-
limit: {
|
|
2093
|
-
context: 32768,
|
|
2094
|
-
output: 32768,
|
|
2095
|
-
},
|
|
2096
|
-
},
|
|
2097
1812
|
{
|
|
2098
1813
|
id: 'gemini-2.5-flash-lite',
|
|
2099
1814
|
ownedBy: 'google',
|
|
@@ -2120,31 +1835,6 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
2120
1835
|
output: 65536,
|
|
2121
1836
|
},
|
|
2122
1837
|
},
|
|
2123
|
-
{
|
|
2124
|
-
id: 'gemini-2.5-flash-preview-tts',
|
|
2125
|
-
ownedBy: 'google',
|
|
2126
|
-
label: 'Gemini 2.5 Flash Preview TTS',
|
|
2127
|
-
modalities: {
|
|
2128
|
-
input: ['text'],
|
|
2129
|
-
output: ['audio'],
|
|
2130
|
-
},
|
|
2131
|
-
toolCall: false,
|
|
2132
|
-
reasoningText: false,
|
|
2133
|
-
attachment: false,
|
|
2134
|
-
temperature: true,
|
|
2135
|
-
knowledge: '2025-01',
|
|
2136
|
-
releaseDate: '2025-05-01',
|
|
2137
|
-
lastUpdated: '2025-05-01',
|
|
2138
|
-
openWeights: false,
|
|
2139
|
-
cost: {
|
|
2140
|
-
input: 0.5,
|
|
2141
|
-
output: 10,
|
|
2142
|
-
},
|
|
2143
|
-
limit: {
|
|
2144
|
-
context: 8192,
|
|
2145
|
-
output: 16384,
|
|
2146
|
-
},
|
|
2147
|
-
},
|
|
2148
1838
|
{
|
|
2149
1839
|
id: 'gemini-2.5-pro',
|
|
2150
1840
|
ownedBy: 'google',
|
|
@@ -2172,45 +1862,20 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
2172
1862
|
},
|
|
2173
1863
|
},
|
|
2174
1864
|
{
|
|
2175
|
-
id: 'gemini-
|
|
1865
|
+
id: 'gemini-3-flash-preview',
|
|
2176
1866
|
ownedBy: 'google',
|
|
2177
|
-
label: 'Gemini
|
|
1867
|
+
label: 'Gemini 3 Flash Preview',
|
|
2178
1868
|
modalities: {
|
|
2179
|
-
input: ['text'],
|
|
2180
|
-
output: ['
|
|
1869
|
+
input: ['text', 'image', 'video', 'audio', 'pdf'],
|
|
1870
|
+
output: ['text'],
|
|
2181
1871
|
},
|
|
2182
|
-
toolCall:
|
|
2183
|
-
reasoningText:
|
|
2184
|
-
attachment:
|
|
1872
|
+
toolCall: true,
|
|
1873
|
+
reasoningText: true,
|
|
1874
|
+
attachment: true,
|
|
2185
1875
|
temperature: true,
|
|
2186
1876
|
knowledge: '2025-01',
|
|
2187
|
-
releaseDate: '2025-
|
|
2188
|
-
lastUpdated: '2025-
|
|
2189
|
-
openWeights: false,
|
|
2190
|
-
cost: {
|
|
2191
|
-
input: 1,
|
|
2192
|
-
output: 20,
|
|
2193
|
-
},
|
|
2194
|
-
limit: {
|
|
2195
|
-
context: 8192,
|
|
2196
|
-
output: 16384,
|
|
2197
|
-
},
|
|
2198
|
-
},
|
|
2199
|
-
{
|
|
2200
|
-
id: 'gemini-3-flash-preview',
|
|
2201
|
-
ownedBy: 'google',
|
|
2202
|
-
label: 'Gemini 3 Flash Preview',
|
|
2203
|
-
modalities: {
|
|
2204
|
-
input: ['text', 'image', 'video', 'audio', 'pdf'],
|
|
2205
|
-
output: ['text'],
|
|
2206
|
-
},
|
|
2207
|
-
toolCall: true,
|
|
2208
|
-
reasoningText: true,
|
|
2209
|
-
attachment: true,
|
|
2210
|
-
temperature: true,
|
|
2211
|
-
knowledge: '2025-01',
|
|
2212
|
-
releaseDate: '2025-12-17',
|
|
2213
|
-
lastUpdated: '2025-12-17',
|
|
1877
|
+
releaseDate: '2025-12-17',
|
|
1878
|
+
lastUpdated: '2025-12-17',
|
|
2214
1879
|
openWeights: false,
|
|
2215
1880
|
cost: {
|
|
2216
1881
|
input: 0.5,
|
|
@@ -2248,31 +1913,6 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
2248
1913
|
output: 65536,
|
|
2249
1914
|
},
|
|
2250
1915
|
},
|
|
2251
|
-
{
|
|
2252
|
-
id: 'gemini-3.1-flash-image-preview',
|
|
2253
|
-
ownedBy: 'google',
|
|
2254
|
-
label: 'Nano Banana 2',
|
|
2255
|
-
modalities: {
|
|
2256
|
-
input: ['text', 'image', 'pdf'],
|
|
2257
|
-
output: ['text', 'image'],
|
|
2258
|
-
},
|
|
2259
|
-
toolCall: false,
|
|
2260
|
-
reasoningText: true,
|
|
2261
|
-
attachment: true,
|
|
2262
|
-
temperature: true,
|
|
2263
|
-
knowledge: '2025-01',
|
|
2264
|
-
releaseDate: '2026-02-26',
|
|
2265
|
-
lastUpdated: '2026-02-26',
|
|
2266
|
-
openWeights: false,
|
|
2267
|
-
cost: {
|
|
2268
|
-
input: 0.5,
|
|
2269
|
-
output: 60,
|
|
2270
|
-
},
|
|
2271
|
-
limit: {
|
|
2272
|
-
context: 65536,
|
|
2273
|
-
output: 65536,
|
|
2274
|
-
},
|
|
2275
|
-
},
|
|
2276
1916
|
{
|
|
2277
1917
|
id: 'gemini-3.1-flash-lite',
|
|
2278
1918
|
ownedBy: 'google',
|
|
@@ -2403,31 +2043,6 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
2403
2043
|
output: 65536,
|
|
2404
2044
|
},
|
|
2405
2045
|
},
|
|
2406
|
-
{
|
|
2407
|
-
id: 'gemini-embedding-001',
|
|
2408
|
-
ownedBy: 'google',
|
|
2409
|
-
label: 'Gemini Embedding 001',
|
|
2410
|
-
modalities: {
|
|
2411
|
-
input: ['text'],
|
|
2412
|
-
output: ['text'],
|
|
2413
|
-
},
|
|
2414
|
-
toolCall: false,
|
|
2415
|
-
reasoningText: false,
|
|
2416
|
-
attachment: false,
|
|
2417
|
-
temperature: false,
|
|
2418
|
-
knowledge: '2025-05',
|
|
2419
|
-
releaseDate: '2025-05-20',
|
|
2420
|
-
lastUpdated: '2025-05-20',
|
|
2421
|
-
openWeights: false,
|
|
2422
|
-
cost: {
|
|
2423
|
-
input: 0.15,
|
|
2424
|
-
output: 0,
|
|
2425
|
-
},
|
|
2426
|
-
limit: {
|
|
2427
|
-
context: 2048,
|
|
2428
|
-
output: 1,
|
|
2429
|
-
},
|
|
2430
|
-
},
|
|
2431
2046
|
{
|
|
2432
2047
|
id: 'gemini-flash-latest',
|
|
2433
2048
|
ownedBy: 'google',
|
|
@@ -2761,123 +2376,6 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
2761
2376
|
output: 4096,
|
|
2762
2377
|
},
|
|
2763
2378
|
},
|
|
2764
|
-
{
|
|
2765
|
-
id: 'aion-labs/aion-1.0',
|
|
2766
|
-
label: 'Aion-1.0',
|
|
2767
|
-
modalities: {
|
|
2768
|
-
input: ['text'],
|
|
2769
|
-
output: ['text'],
|
|
2770
|
-
},
|
|
2771
|
-
toolCall: false,
|
|
2772
|
-
reasoningText: true,
|
|
2773
|
-
attachment: false,
|
|
2774
|
-
temperature: true,
|
|
2775
|
-
releaseDate: '2025-02-04',
|
|
2776
|
-
lastUpdated: '2025-02-04',
|
|
2777
|
-
openWeights: false,
|
|
2778
|
-
cost: {
|
|
2779
|
-
input: 4,
|
|
2780
|
-
output: 8,
|
|
2781
|
-
},
|
|
2782
|
-
limit: {
|
|
2783
|
-
context: 131072,
|
|
2784
|
-
output: 32768,
|
|
2785
|
-
},
|
|
2786
|
-
},
|
|
2787
|
-
{
|
|
2788
|
-
id: 'aion-labs/aion-1.0-mini',
|
|
2789
|
-
label: 'Aion-1.0-Mini',
|
|
2790
|
-
modalities: {
|
|
2791
|
-
input: ['text'],
|
|
2792
|
-
output: ['text'],
|
|
2793
|
-
},
|
|
2794
|
-
toolCall: false,
|
|
2795
|
-
reasoningText: true,
|
|
2796
|
-
attachment: false,
|
|
2797
|
-
temperature: true,
|
|
2798
|
-
releaseDate: '2025-02-04',
|
|
2799
|
-
lastUpdated: '2025-02-04',
|
|
2800
|
-
openWeights: true,
|
|
2801
|
-
cost: {
|
|
2802
|
-
input: 0.7,
|
|
2803
|
-
output: 1.4,
|
|
2804
|
-
},
|
|
2805
|
-
limit: {
|
|
2806
|
-
context: 131072,
|
|
2807
|
-
output: 32768,
|
|
2808
|
-
},
|
|
2809
|
-
},
|
|
2810
|
-
{
|
|
2811
|
-
id: 'aion-labs/aion-2.0',
|
|
2812
|
-
label: 'Aion-2.0',
|
|
2813
|
-
modalities: {
|
|
2814
|
-
input: ['text'],
|
|
2815
|
-
output: ['text'],
|
|
2816
|
-
},
|
|
2817
|
-
toolCall: false,
|
|
2818
|
-
reasoningText: true,
|
|
2819
|
-
attachment: false,
|
|
2820
|
-
temperature: true,
|
|
2821
|
-
releaseDate: '2026-02-23',
|
|
2822
|
-
lastUpdated: '2026-02-23',
|
|
2823
|
-
openWeights: false,
|
|
2824
|
-
cost: {
|
|
2825
|
-
input: 0.8,
|
|
2826
|
-
output: 1.6,
|
|
2827
|
-
cacheRead: 0.2,
|
|
2828
|
-
},
|
|
2829
|
-
limit: {
|
|
2830
|
-
context: 131072,
|
|
2831
|
-
output: 32768,
|
|
2832
|
-
},
|
|
2833
|
-
},
|
|
2834
|
-
{
|
|
2835
|
-
id: 'aion-labs/aion-rp-llama-3.1-8b',
|
|
2836
|
-
label: 'Aion-RP 1.0 (8B)',
|
|
2837
|
-
modalities: {
|
|
2838
|
-
input: ['text'],
|
|
2839
|
-
output: ['text'],
|
|
2840
|
-
},
|
|
2841
|
-
toolCall: false,
|
|
2842
|
-
reasoningText: false,
|
|
2843
|
-
attachment: false,
|
|
2844
|
-
temperature: true,
|
|
2845
|
-
knowledge: '2023-12-31',
|
|
2846
|
-
releaseDate: '2025-02-04',
|
|
2847
|
-
lastUpdated: '2025-02-04',
|
|
2848
|
-
openWeights: false,
|
|
2849
|
-
cost: {
|
|
2850
|
-
input: 0.8,
|
|
2851
|
-
output: 1.6,
|
|
2852
|
-
},
|
|
2853
|
-
limit: {
|
|
2854
|
-
context: 32768,
|
|
2855
|
-
output: 32768,
|
|
2856
|
-
},
|
|
2857
|
-
},
|
|
2858
|
-
{
|
|
2859
|
-
id: 'allenai/olmo-3-32b-think',
|
|
2860
|
-
label: 'Olmo 3 32B Think',
|
|
2861
|
-
modalities: {
|
|
2862
|
-
input: ['text'],
|
|
2863
|
-
output: ['text'],
|
|
2864
|
-
},
|
|
2865
|
-
toolCall: false,
|
|
2866
|
-
reasoningText: true,
|
|
2867
|
-
attachment: false,
|
|
2868
|
-
temperature: true,
|
|
2869
|
-
releaseDate: '2025-11-21',
|
|
2870
|
-
lastUpdated: '2025-11-21',
|
|
2871
|
-
openWeights: true,
|
|
2872
|
-
cost: {
|
|
2873
|
-
input: 0.15,
|
|
2874
|
-
output: 0.5,
|
|
2875
|
-
},
|
|
2876
|
-
limit: {
|
|
2877
|
-
context: 65536,
|
|
2878
|
-
output: 65536,
|
|
2879
|
-
},
|
|
2880
|
-
},
|
|
2881
2379
|
{
|
|
2882
2380
|
id: 'amazon/nova-2-lite-v1',
|
|
2883
2381
|
label: 'Nova 2 Lite',
|
|
@@ -2997,30 +2495,6 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
2997
2495
|
output: 5120,
|
|
2998
2496
|
},
|
|
2999
2497
|
},
|
|
3000
|
-
{
|
|
3001
|
-
id: 'anthracite-org/magnum-v4-72b',
|
|
3002
|
-
label: 'Magnum v4 72B',
|
|
3003
|
-
modalities: {
|
|
3004
|
-
input: ['text'],
|
|
3005
|
-
output: ['text'],
|
|
3006
|
-
},
|
|
3007
|
-
toolCall: false,
|
|
3008
|
-
reasoningText: false,
|
|
3009
|
-
attachment: false,
|
|
3010
|
-
temperature: true,
|
|
3011
|
-
knowledge: '2024-06-30',
|
|
3012
|
-
releaseDate: '2024-10-22',
|
|
3013
|
-
lastUpdated: '2024-10-22',
|
|
3014
|
-
openWeights: true,
|
|
3015
|
-
cost: {
|
|
3016
|
-
input: 3,
|
|
3017
|
-
output: 5,
|
|
3018
|
-
},
|
|
3019
|
-
limit: {
|
|
3020
|
-
context: 16384,
|
|
3021
|
-
output: 2048,
|
|
3022
|
-
},
|
|
3023
|
-
},
|
|
3024
2498
|
{
|
|
3025
2499
|
id: 'anthropic/claude-3-haiku',
|
|
3026
2500
|
ownedBy: 'anthropic',
|
|
@@ -3422,78 +2896,6 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
3422
2896
|
output: 128000,
|
|
3423
2897
|
},
|
|
3424
2898
|
},
|
|
3425
|
-
{
|
|
3426
|
-
id: 'arcee-ai/coder-large',
|
|
3427
|
-
label: 'Coder Large',
|
|
3428
|
-
modalities: {
|
|
3429
|
-
input: ['text'],
|
|
3430
|
-
output: ['text'],
|
|
3431
|
-
},
|
|
3432
|
-
toolCall: false,
|
|
3433
|
-
reasoningText: false,
|
|
3434
|
-
attachment: false,
|
|
3435
|
-
temperature: true,
|
|
3436
|
-
knowledge: '2025-03-31',
|
|
3437
|
-
releaseDate: '2025-05-05',
|
|
3438
|
-
lastUpdated: '2025-05-05',
|
|
3439
|
-
openWeights: false,
|
|
3440
|
-
cost: {
|
|
3441
|
-
input: 0.5,
|
|
3442
|
-
output: 0.8,
|
|
3443
|
-
},
|
|
3444
|
-
limit: {
|
|
3445
|
-
context: 32768,
|
|
3446
|
-
output: 32768,
|
|
3447
|
-
},
|
|
3448
|
-
},
|
|
3449
|
-
{
|
|
3450
|
-
id: 'arcee-ai/maestro-reasoning',
|
|
3451
|
-
label: 'Maestro Reasoning',
|
|
3452
|
-
modalities: {
|
|
3453
|
-
input: ['text'],
|
|
3454
|
-
output: ['text'],
|
|
3455
|
-
},
|
|
3456
|
-
toolCall: false,
|
|
3457
|
-
reasoningText: false,
|
|
3458
|
-
attachment: false,
|
|
3459
|
-
temperature: true,
|
|
3460
|
-
knowledge: '2025-03-31',
|
|
3461
|
-
releaseDate: '2025-05-05',
|
|
3462
|
-
lastUpdated: '2025-05-05',
|
|
3463
|
-
openWeights: false,
|
|
3464
|
-
cost: {
|
|
3465
|
-
input: 0.9,
|
|
3466
|
-
output: 3.3,
|
|
3467
|
-
},
|
|
3468
|
-
limit: {
|
|
3469
|
-
context: 131072,
|
|
3470
|
-
output: 32000,
|
|
3471
|
-
},
|
|
3472
|
-
},
|
|
3473
|
-
{
|
|
3474
|
-
id: 'arcee-ai/spotlight',
|
|
3475
|
-
label: 'Spotlight',
|
|
3476
|
-
modalities: {
|
|
3477
|
-
input: ['image', 'text'],
|
|
3478
|
-
output: ['text'],
|
|
3479
|
-
},
|
|
3480
|
-
toolCall: false,
|
|
3481
|
-
reasoningText: false,
|
|
3482
|
-
attachment: true,
|
|
3483
|
-
temperature: true,
|
|
3484
|
-
knowledge: '2025-03-31',
|
|
3485
|
-
releaseDate: '2025-05-05',
|
|
3486
|
-
lastUpdated: '2025-05-05',
|
|
3487
|
-
openWeights: false,
|
|
3488
|
-
cost: {
|
|
3489
|
-
input: 0.18,
|
|
3490
|
-
output: 0.18,
|
|
3491
|
-
},
|
|
3492
|
-
limit: {
|
|
3493
|
-
context: 131072,
|
|
3494
|
-
output: 65537,
|
|
3495
|
-
},
|
|
3496
|
-
},
|
|
3497
2899
|
{
|
|
3498
2900
|
id: 'arcee-ai/trinity-large-thinking',
|
|
3499
2901
|
label: 'Trinity Large Thinking',
|
|
@@ -3589,30 +2991,6 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
3589
2991
|
output: 8000,
|
|
3590
2992
|
},
|
|
3591
2993
|
},
|
|
3592
|
-
{
|
|
3593
|
-
id: 'baidu/ernie-4.5-vl-424b-a47b',
|
|
3594
|
-
label: 'ERNIE 4.5 VL 424B A47B ',
|
|
3595
|
-
modalities: {
|
|
3596
|
-
input: ['image', 'text'],
|
|
3597
|
-
output: ['text'],
|
|
3598
|
-
},
|
|
3599
|
-
toolCall: false,
|
|
3600
|
-
reasoningText: true,
|
|
3601
|
-
attachment: true,
|
|
3602
|
-
temperature: true,
|
|
3603
|
-
knowledge: '2025-03-31',
|
|
3604
|
-
releaseDate: '2025-06-30',
|
|
3605
|
-
lastUpdated: '2025-06-30',
|
|
3606
|
-
openWeights: true,
|
|
3607
|
-
cost: {
|
|
3608
|
-
input: 0.42,
|
|
3609
|
-
output: 1.25,
|
|
3610
|
-
},
|
|
3611
|
-
limit: {
|
|
3612
|
-
context: 123000,
|
|
3613
|
-
output: 16000,
|
|
3614
|
-
},
|
|
3615
|
-
},
|
|
3616
2994
|
{
|
|
3617
2995
|
id: 'bytedance-seed/seed-1.6',
|
|
3618
2996
|
label: 'Seed 1.6',
|
|
@@ -3706,86 +3084,13 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
3706
3084
|
},
|
|
3707
3085
|
},
|
|
3708
3086
|
{
|
|
3709
|
-
id: '
|
|
3710
|
-
label: '
|
|
3087
|
+
id: 'cohere/command-r-08-2024',
|
|
3088
|
+
label: 'Command R',
|
|
3711
3089
|
modalities: {
|
|
3712
|
-
input: ['
|
|
3090
|
+
input: ['text'],
|
|
3713
3091
|
output: ['text'],
|
|
3714
3092
|
},
|
|
3715
|
-
toolCall:
|
|
3716
|
-
reasoningText: false,
|
|
3717
|
-
attachment: true,
|
|
3718
|
-
temperature: true,
|
|
3719
|
-
knowledge: '2025-01-31',
|
|
3720
|
-
releaseDate: '2025-07-22',
|
|
3721
|
-
lastUpdated: '2025-07-22',
|
|
3722
|
-
openWeights: true,
|
|
3723
|
-
cost: {
|
|
3724
|
-
input: 0.1,
|
|
3725
|
-
output: 0.2,
|
|
3726
|
-
cacheRead: 0.1,
|
|
3727
|
-
},
|
|
3728
|
-
limit: {
|
|
3729
|
-
context: 128000,
|
|
3730
|
-
output: 2048,
|
|
3731
|
-
},
|
|
3732
|
-
},
|
|
3733
|
-
{
|
|
3734
|
-
id: 'cognitivecomputations/dolphin-mistral-24b-venice-edition:free',
|
|
3735
|
-
label: 'Uncensored (free)',
|
|
3736
|
-
modalities: {
|
|
3737
|
-
input: ['text'],
|
|
3738
|
-
output: ['text'],
|
|
3739
|
-
},
|
|
3740
|
-
toolCall: false,
|
|
3741
|
-
reasoningText: false,
|
|
3742
|
-
attachment: false,
|
|
3743
|
-
temperature: true,
|
|
3744
|
-
knowledge: '2024-04-30',
|
|
3745
|
-
releaseDate: '2025-07-09',
|
|
3746
|
-
lastUpdated: '2025-07-09',
|
|
3747
|
-
openWeights: true,
|
|
3748
|
-
cost: {
|
|
3749
|
-
input: 0,
|
|
3750
|
-
output: 0,
|
|
3751
|
-
},
|
|
3752
|
-
limit: {
|
|
3753
|
-
context: 32768,
|
|
3754
|
-
output: 32768,
|
|
3755
|
-
},
|
|
3756
|
-
},
|
|
3757
|
-
{
|
|
3758
|
-
id: 'cohere/command-a',
|
|
3759
|
-
label: 'Command A',
|
|
3760
|
-
modalities: {
|
|
3761
|
-
input: ['text'],
|
|
3762
|
-
output: ['text'],
|
|
3763
|
-
},
|
|
3764
|
-
toolCall: false,
|
|
3765
|
-
reasoningText: false,
|
|
3766
|
-
attachment: false,
|
|
3767
|
-
temperature: true,
|
|
3768
|
-
knowledge: '2024-08-31',
|
|
3769
|
-
releaseDate: '2025-03-13',
|
|
3770
|
-
lastUpdated: '2025-03-13',
|
|
3771
|
-
openWeights: true,
|
|
3772
|
-
cost: {
|
|
3773
|
-
input: 2.5,
|
|
3774
|
-
output: 10,
|
|
3775
|
-
},
|
|
3776
|
-
limit: {
|
|
3777
|
-
context: 256000,
|
|
3778
|
-
output: 8192,
|
|
3779
|
-
},
|
|
3780
|
-
},
|
|
3781
|
-
{
|
|
3782
|
-
id: 'cohere/command-r-08-2024',
|
|
3783
|
-
label: 'Command R',
|
|
3784
|
-
modalities: {
|
|
3785
|
-
input: ['text'],
|
|
3786
|
-
output: ['text'],
|
|
3787
|
-
},
|
|
3788
|
-
toolCall: true,
|
|
3093
|
+
toolCall: true,
|
|
3789
3094
|
reasoningText: false,
|
|
3790
3095
|
attachment: false,
|
|
3791
3096
|
temperature: true,
|
|
@@ -3826,53 +3131,6 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
3826
3131
|
output: 4000,
|
|
3827
3132
|
},
|
|
3828
3133
|
},
|
|
3829
|
-
{
|
|
3830
|
-
id: 'cohere/command-r7b-12-2024',
|
|
3831
|
-
label: 'Command R7B',
|
|
3832
|
-
modalities: {
|
|
3833
|
-
input: ['text'],
|
|
3834
|
-
output: ['text'],
|
|
3835
|
-
},
|
|
3836
|
-
toolCall: false,
|
|
3837
|
-
reasoningText: false,
|
|
3838
|
-
attachment: false,
|
|
3839
|
-
temperature: true,
|
|
3840
|
-
knowledge: '2024-06-01',
|
|
3841
|
-
releaseDate: '2024-02-27',
|
|
3842
|
-
lastUpdated: '2024-02-27',
|
|
3843
|
-
openWeights: true,
|
|
3844
|
-
cost: {
|
|
3845
|
-
input: 0.0375,
|
|
3846
|
-
output: 0.15,
|
|
3847
|
-
},
|
|
3848
|
-
limit: {
|
|
3849
|
-
context: 128000,
|
|
3850
|
-
output: 4000,
|
|
3851
|
-
},
|
|
3852
|
-
},
|
|
3853
|
-
{
|
|
3854
|
-
id: 'deepcogito/cogito-v2.1-671b',
|
|
3855
|
-
label: 'Cogito v2.1 671B',
|
|
3856
|
-
modalities: {
|
|
3857
|
-
input: ['text'],
|
|
3858
|
-
output: ['text'],
|
|
3859
|
-
},
|
|
3860
|
-
toolCall: false,
|
|
3861
|
-
reasoningText: true,
|
|
3862
|
-
attachment: false,
|
|
3863
|
-
temperature: true,
|
|
3864
|
-
releaseDate: '2025-11-13',
|
|
3865
|
-
lastUpdated: '2025-11-13',
|
|
3866
|
-
openWeights: false,
|
|
3867
|
-
cost: {
|
|
3868
|
-
input: 1.25,
|
|
3869
|
-
output: 1.25,
|
|
3870
|
-
},
|
|
3871
|
-
limit: {
|
|
3872
|
-
context: 128000,
|
|
3873
|
-
output: 128000,
|
|
3874
|
-
},
|
|
3875
|
-
},
|
|
3876
3134
|
{
|
|
3877
3135
|
id: 'deepseek/deepseek-chat',
|
|
3878
3136
|
label: 'DeepSeek Chat',
|
|
@@ -3996,54 +3254,6 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
3996
3254
|
output: 32768,
|
|
3997
3255
|
},
|
|
3998
3256
|
},
|
|
3999
|
-
{
|
|
4000
|
-
id: 'deepseek/deepseek-r1-distill-llama-70b',
|
|
4001
|
-
label: 'R1 Distill Llama 70B',
|
|
4002
|
-
modalities: {
|
|
4003
|
-
input: ['text'],
|
|
4004
|
-
output: ['text'],
|
|
4005
|
-
},
|
|
4006
|
-
toolCall: false,
|
|
4007
|
-
reasoningText: true,
|
|
4008
|
-
attachment: false,
|
|
4009
|
-
temperature: true,
|
|
4010
|
-
knowledge: '2024-07-31',
|
|
4011
|
-
releaseDate: '2025-01-23',
|
|
4012
|
-
lastUpdated: '2025-01-23',
|
|
4013
|
-
openWeights: true,
|
|
4014
|
-
cost: {
|
|
4015
|
-
input: 0.7,
|
|
4016
|
-
output: 0.8,
|
|
4017
|
-
},
|
|
4018
|
-
limit: {
|
|
4019
|
-
context: 131072,
|
|
4020
|
-
output: 16384,
|
|
4021
|
-
},
|
|
4022
|
-
},
|
|
4023
|
-
{
|
|
4024
|
-
id: 'deepseek/deepseek-r1-distill-qwen-32b',
|
|
4025
|
-
label: 'R1 Distill Qwen 32B',
|
|
4026
|
-
modalities: {
|
|
4027
|
-
input: ['text'],
|
|
4028
|
-
output: ['text'],
|
|
4029
|
-
},
|
|
4030
|
-
toolCall: false,
|
|
4031
|
-
reasoningText: true,
|
|
4032
|
-
attachment: false,
|
|
4033
|
-
temperature: true,
|
|
4034
|
-
knowledge: '2024-07-31',
|
|
4035
|
-
releaseDate: '2025-01-29',
|
|
4036
|
-
lastUpdated: '2025-01-29',
|
|
4037
|
-
openWeights: true,
|
|
4038
|
-
cost: {
|
|
4039
|
-
input: 0.29,
|
|
4040
|
-
output: 0.29,
|
|
4041
|
-
},
|
|
4042
|
-
limit: {
|
|
4043
|
-
context: 32768,
|
|
4044
|
-
output: 32768,
|
|
4045
|
-
},
|
|
4046
|
-
},
|
|
4047
3257
|
{
|
|
4048
3258
|
id: 'deepseek/deepseek-v3.1-terminus',
|
|
4049
3259
|
label: 'DeepSeek V3.1 Terminus',
|
|
@@ -4217,33 +3427,6 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
4217
3427
|
output: 65535,
|
|
4218
3428
|
},
|
|
4219
3429
|
},
|
|
4220
|
-
{
|
|
4221
|
-
id: 'google/gemini-2.5-flash-image',
|
|
4222
|
-
ownedBy: 'google',
|
|
4223
|
-
label: 'Nano Banana',
|
|
4224
|
-
modalities: {
|
|
4225
|
-
input: ['text', 'image'],
|
|
4226
|
-
output: ['text', 'image'],
|
|
4227
|
-
},
|
|
4228
|
-
toolCall: false,
|
|
4229
|
-
reasoningText: false,
|
|
4230
|
-
attachment: true,
|
|
4231
|
-
temperature: true,
|
|
4232
|
-
knowledge: '2025-06',
|
|
4233
|
-
releaseDate: '2025-08-26',
|
|
4234
|
-
lastUpdated: '2025-08-26',
|
|
4235
|
-
openWeights: false,
|
|
4236
|
-
cost: {
|
|
4237
|
-
input: 0.3,
|
|
4238
|
-
output: 2.5,
|
|
4239
|
-
cacheRead: 0.03,
|
|
4240
|
-
cacheWrite: 0.083333,
|
|
4241
|
-
},
|
|
4242
|
-
limit: {
|
|
4243
|
-
context: 32768,
|
|
4244
|
-
output: 32768,
|
|
4245
|
-
},
|
|
4246
|
-
},
|
|
4247
3430
|
{
|
|
4248
3431
|
id: 'google/gemini-2.5-flash-lite',
|
|
4249
3432
|
ownedBy: 'google',
|
|
@@ -4406,57 +3589,6 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
4406
3589
|
output: 65536,
|
|
4407
3590
|
},
|
|
4408
3591
|
},
|
|
4409
|
-
{
|
|
4410
|
-
id: 'google/gemini-3-pro-image-preview',
|
|
4411
|
-
ownedBy: 'google',
|
|
4412
|
-
label: 'Nano Banana Pro (Gemini 3 Pro Image Preview)',
|
|
4413
|
-
modalities: {
|
|
4414
|
-
input: ['image', 'text'],
|
|
4415
|
-
output: ['image', 'text'],
|
|
4416
|
-
},
|
|
4417
|
-
toolCall: false,
|
|
4418
|
-
reasoningText: true,
|
|
4419
|
-
attachment: true,
|
|
4420
|
-
temperature: true,
|
|
4421
|
-
releaseDate: '2025-11-20',
|
|
4422
|
-
lastUpdated: '2025-11-20',
|
|
4423
|
-
openWeights: false,
|
|
4424
|
-
cost: {
|
|
4425
|
-
input: 2,
|
|
4426
|
-
output: 12,
|
|
4427
|
-
cacheRead: 0.2,
|
|
4428
|
-
cacheWrite: 0.375,
|
|
4429
|
-
},
|
|
4430
|
-
limit: {
|
|
4431
|
-
context: 65536,
|
|
4432
|
-
output: 32768,
|
|
4433
|
-
},
|
|
4434
|
-
},
|
|
4435
|
-
{
|
|
4436
|
-
id: 'google/gemini-3.1-flash-image-preview',
|
|
4437
|
-
ownedBy: 'google',
|
|
4438
|
-
label: 'Nano Banana 2',
|
|
4439
|
-
modalities: {
|
|
4440
|
-
input: ['image', 'text'],
|
|
4441
|
-
output: ['image', 'text'],
|
|
4442
|
-
},
|
|
4443
|
-
toolCall: false,
|
|
4444
|
-
reasoningText: true,
|
|
4445
|
-
attachment: true,
|
|
4446
|
-
temperature: true,
|
|
4447
|
-
knowledge: '2025-01',
|
|
4448
|
-
releaseDate: '2026-02-26',
|
|
4449
|
-
lastUpdated: '2026-02-26',
|
|
4450
|
-
openWeights: false,
|
|
4451
|
-
cost: {
|
|
4452
|
-
input: 0.5,
|
|
4453
|
-
output: 3,
|
|
4454
|
-
},
|
|
4455
|
-
limit: {
|
|
4456
|
-
context: 65536,
|
|
4457
|
-
output: 65536,
|
|
4458
|
-
},
|
|
4459
|
-
},
|
|
4460
3592
|
{
|
|
4461
3593
|
id: 'google/gemini-3.1-flash-lite',
|
|
4462
3594
|
ownedBy: 'google',
|
|
@@ -4592,31 +3724,6 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
4592
3724
|
output: 65536,
|
|
4593
3725
|
},
|
|
4594
3726
|
},
|
|
4595
|
-
{
|
|
4596
|
-
id: 'google/gemma-2-27b-it',
|
|
4597
|
-
ownedBy: 'google',
|
|
4598
|
-
label: 'Gemma 2 27B',
|
|
4599
|
-
modalities: {
|
|
4600
|
-
input: ['text'],
|
|
4601
|
-
output: ['text'],
|
|
4602
|
-
},
|
|
4603
|
-
toolCall: false,
|
|
4604
|
-
reasoningText: false,
|
|
4605
|
-
attachment: false,
|
|
4606
|
-
temperature: true,
|
|
4607
|
-
knowledge: '2024-06-30',
|
|
4608
|
-
releaseDate: '2024-07-13',
|
|
4609
|
-
lastUpdated: '2024-07-13',
|
|
4610
|
-
openWeights: true,
|
|
4611
|
-
cost: {
|
|
4612
|
-
input: 0.65,
|
|
4613
|
-
output: 0.65,
|
|
4614
|
-
},
|
|
4615
|
-
limit: {
|
|
4616
|
-
context: 8192,
|
|
4617
|
-
output: 2048,
|
|
4618
|
-
},
|
|
4619
|
-
},
|
|
4620
3727
|
{
|
|
4621
3728
|
id: 'google/gemma-3-12b-it',
|
|
4622
3729
|
ownedBy: 'google',
|
|
@@ -4668,100 +3775,50 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
4668
3775
|
},
|
|
4669
3776
|
},
|
|
4670
3777
|
{
|
|
4671
|
-
id: 'google/gemma-
|
|
3778
|
+
id: 'google/gemma-4-26b-a4b-it',
|
|
4672
3779
|
ownedBy: 'google',
|
|
4673
|
-
label: 'Gemma
|
|
3780
|
+
label: 'Gemma 4 26B A4B IT',
|
|
4674
3781
|
modalities: {
|
|
4675
|
-
input: ['text', '
|
|
3782
|
+
input: ['image', 'text', 'video'],
|
|
4676
3783
|
output: ['text'],
|
|
4677
3784
|
},
|
|
4678
|
-
toolCall:
|
|
4679
|
-
reasoningText:
|
|
3785
|
+
toolCall: true,
|
|
3786
|
+
reasoningText: true,
|
|
4680
3787
|
attachment: true,
|
|
4681
3788
|
temperature: true,
|
|
4682
|
-
|
|
4683
|
-
|
|
4684
|
-
lastUpdated: '2025-03-13',
|
|
3789
|
+
releaseDate: '2026-04-02',
|
|
3790
|
+
lastUpdated: '2026-04-02',
|
|
4685
3791
|
openWeights: true,
|
|
4686
3792
|
cost: {
|
|
4687
|
-
input: 0.
|
|
4688
|
-
output: 0.
|
|
3793
|
+
input: 0.06,
|
|
3794
|
+
output: 0.33,
|
|
4689
3795
|
},
|
|
4690
3796
|
limit: {
|
|
4691
|
-
context:
|
|
4692
|
-
output:
|
|
3797
|
+
context: 262144,
|
|
3798
|
+
output: 262144,
|
|
4693
3799
|
},
|
|
4694
3800
|
},
|
|
4695
3801
|
{
|
|
4696
|
-
id: 'google/gemma-
|
|
3802
|
+
id: 'google/gemma-4-26b-a4b-it:free',
|
|
4697
3803
|
ownedBy: 'google',
|
|
4698
|
-
label: 'Gemma
|
|
3804
|
+
label: 'Gemma 4 26B A4B (free)',
|
|
4699
3805
|
modalities: {
|
|
4700
|
-
input: ['text'],
|
|
3806
|
+
input: ['image', 'text', 'video'],
|
|
4701
3807
|
output: ['text'],
|
|
4702
3808
|
},
|
|
4703
|
-
toolCall:
|
|
4704
|
-
reasoningText:
|
|
4705
|
-
attachment:
|
|
3809
|
+
toolCall: true,
|
|
3810
|
+
reasoningText: true,
|
|
3811
|
+
attachment: true,
|
|
4706
3812
|
temperature: true,
|
|
4707
|
-
|
|
4708
|
-
|
|
4709
|
-
lastUpdated: '2025-05-20',
|
|
3813
|
+
releaseDate: '2026-04-02',
|
|
3814
|
+
lastUpdated: '2026-04-02',
|
|
4710
3815
|
openWeights: true,
|
|
4711
3816
|
cost: {
|
|
4712
|
-
input: 0
|
|
4713
|
-
output: 0
|
|
3817
|
+
input: 0,
|
|
3818
|
+
output: 0,
|
|
4714
3819
|
},
|
|
4715
3820
|
limit: {
|
|
4716
|
-
context:
|
|
4717
|
-
output: 32768,
|
|
4718
|
-
},
|
|
4719
|
-
},
|
|
4720
|
-
{
|
|
4721
|
-
id: 'google/gemma-4-26b-a4b-it',
|
|
4722
|
-
ownedBy: 'google',
|
|
4723
|
-
label: 'Gemma 4 26B A4B IT',
|
|
4724
|
-
modalities: {
|
|
4725
|
-
input: ['image', 'text', 'video'],
|
|
4726
|
-
output: ['text'],
|
|
4727
|
-
},
|
|
4728
|
-
toolCall: true,
|
|
4729
|
-
reasoningText: true,
|
|
4730
|
-
attachment: true,
|
|
4731
|
-
temperature: true,
|
|
4732
|
-
releaseDate: '2026-04-02',
|
|
4733
|
-
lastUpdated: '2026-04-02',
|
|
4734
|
-
openWeights: true,
|
|
4735
|
-
cost: {
|
|
4736
|
-
input: 0.06,
|
|
4737
|
-
output: 0.33,
|
|
4738
|
-
},
|
|
4739
|
-
limit: {
|
|
4740
|
-
context: 262144,
|
|
4741
|
-
output: 262144,
|
|
4742
|
-
},
|
|
4743
|
-
},
|
|
4744
|
-
{
|
|
4745
|
-
id: 'google/gemma-4-26b-a4b-it:free',
|
|
4746
|
-
ownedBy: 'google',
|
|
4747
|
-
label: 'Gemma 4 26B A4B (free)',
|
|
4748
|
-
modalities: {
|
|
4749
|
-
input: ['image', 'text', 'video'],
|
|
4750
|
-
output: ['text'],
|
|
4751
|
-
},
|
|
4752
|
-
toolCall: true,
|
|
4753
|
-
reasoningText: true,
|
|
4754
|
-
attachment: true,
|
|
4755
|
-
temperature: true,
|
|
4756
|
-
releaseDate: '2026-04-02',
|
|
4757
|
-
lastUpdated: '2026-04-02',
|
|
4758
|
-
openWeights: true,
|
|
4759
|
-
cost: {
|
|
4760
|
-
input: 0,
|
|
4761
|
-
output: 0,
|
|
4762
|
-
},
|
|
4763
|
-
limit: {
|
|
4764
|
-
context: 262144,
|
|
3821
|
+
context: 262144,
|
|
4765
3822
|
output: 32768,
|
|
4766
3823
|
},
|
|
4767
3824
|
},
|
|
@@ -4813,101 +3870,6 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
4813
3870
|
output: 32768,
|
|
4814
3871
|
},
|
|
4815
3872
|
},
|
|
4816
|
-
{
|
|
4817
|
-
id: 'google/lyria-3-clip-preview',
|
|
4818
|
-
ownedBy: 'google',
|
|
4819
|
-
label: 'Lyria 3 Clip Preview',
|
|
4820
|
-
modalities: {
|
|
4821
|
-
input: ['text', 'image'],
|
|
4822
|
-
output: ['text', 'audio'],
|
|
4823
|
-
},
|
|
4824
|
-
toolCall: false,
|
|
4825
|
-
reasoningText: false,
|
|
4826
|
-
attachment: true,
|
|
4827
|
-
temperature: true,
|
|
4828
|
-
releaseDate: '2026-03-30',
|
|
4829
|
-
lastUpdated: '2026-03-30',
|
|
4830
|
-
openWeights: false,
|
|
4831
|
-
cost: {
|
|
4832
|
-
input: 0,
|
|
4833
|
-
output: 0,
|
|
4834
|
-
},
|
|
4835
|
-
limit: {
|
|
4836
|
-
context: 1048576,
|
|
4837
|
-
output: 65536,
|
|
4838
|
-
},
|
|
4839
|
-
},
|
|
4840
|
-
{
|
|
4841
|
-
id: 'google/lyria-3-pro-preview',
|
|
4842
|
-
ownedBy: 'google',
|
|
4843
|
-
label: 'Lyria 3 Pro Preview',
|
|
4844
|
-
modalities: {
|
|
4845
|
-
input: ['text', 'image'],
|
|
4846
|
-
output: ['text', 'audio'],
|
|
4847
|
-
},
|
|
4848
|
-
toolCall: false,
|
|
4849
|
-
reasoningText: false,
|
|
4850
|
-
attachment: true,
|
|
4851
|
-
temperature: true,
|
|
4852
|
-
releaseDate: '2026-03-30',
|
|
4853
|
-
lastUpdated: '2026-03-30',
|
|
4854
|
-
openWeights: false,
|
|
4855
|
-
cost: {
|
|
4856
|
-
input: 0,
|
|
4857
|
-
output: 0,
|
|
4858
|
-
},
|
|
4859
|
-
limit: {
|
|
4860
|
-
context: 1048576,
|
|
4861
|
-
output: 65536,
|
|
4862
|
-
},
|
|
4863
|
-
},
|
|
4864
|
-
{
|
|
4865
|
-
id: 'gryphe/mythomax-l2-13b',
|
|
4866
|
-
label: 'MythoMax 13B',
|
|
4867
|
-
modalities: {
|
|
4868
|
-
input: ['text'],
|
|
4869
|
-
output: ['text'],
|
|
4870
|
-
},
|
|
4871
|
-
toolCall: false,
|
|
4872
|
-
reasoningText: false,
|
|
4873
|
-
attachment: false,
|
|
4874
|
-
temperature: true,
|
|
4875
|
-
knowledge: '2023-06-30',
|
|
4876
|
-
releaseDate: '2023-07-02',
|
|
4877
|
-
lastUpdated: '2023-07-02',
|
|
4878
|
-
openWeights: true,
|
|
4879
|
-
cost: {
|
|
4880
|
-
input: 0.06,
|
|
4881
|
-
output: 0.06,
|
|
4882
|
-
},
|
|
4883
|
-
limit: {
|
|
4884
|
-
context: 4096,
|
|
4885
|
-
output: 4096,
|
|
4886
|
-
},
|
|
4887
|
-
},
|
|
4888
|
-
{
|
|
4889
|
-
id: 'ibm-granite/granite-4.0-h-micro',
|
|
4890
|
-
label: 'Granite 4.0 Micro',
|
|
4891
|
-
modalities: {
|
|
4892
|
-
input: ['text'],
|
|
4893
|
-
output: ['text'],
|
|
4894
|
-
},
|
|
4895
|
-
toolCall: false,
|
|
4896
|
-
reasoningText: false,
|
|
4897
|
-
attachment: false,
|
|
4898
|
-
temperature: true,
|
|
4899
|
-
releaseDate: '2025-10-20',
|
|
4900
|
-
lastUpdated: '2025-10-20',
|
|
4901
|
-
openWeights: true,
|
|
4902
|
-
cost: {
|
|
4903
|
-
input: 0.017,
|
|
4904
|
-
output: 0.112,
|
|
4905
|
-
},
|
|
4906
|
-
limit: {
|
|
4907
|
-
context: 131000,
|
|
4908
|
-
output: 131000,
|
|
4909
|
-
},
|
|
4910
|
-
},
|
|
4911
3873
|
{
|
|
4912
3874
|
id: 'ibm-granite/granite-4.1-8b',
|
|
4913
3875
|
label: 'Granite 4.1 8B',
|
|
@@ -5028,54 +3990,6 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
5028
3990
|
output: 65536,
|
|
5029
3991
|
},
|
|
5030
3992
|
},
|
|
5031
|
-
{
|
|
5032
|
-
id: 'inflection/inflection-3-pi',
|
|
5033
|
-
label: 'Inflection 3 Pi',
|
|
5034
|
-
modalities: {
|
|
5035
|
-
input: ['text'],
|
|
5036
|
-
output: ['text'],
|
|
5037
|
-
},
|
|
5038
|
-
toolCall: false,
|
|
5039
|
-
reasoningText: false,
|
|
5040
|
-
attachment: false,
|
|
5041
|
-
temperature: true,
|
|
5042
|
-
knowledge: '2024-10-31',
|
|
5043
|
-
releaseDate: '2024-10-11',
|
|
5044
|
-
lastUpdated: '2024-10-11',
|
|
5045
|
-
openWeights: false,
|
|
5046
|
-
cost: {
|
|
5047
|
-
input: 2.5,
|
|
5048
|
-
output: 10,
|
|
5049
|
-
},
|
|
5050
|
-
limit: {
|
|
5051
|
-
context: 8000,
|
|
5052
|
-
output: 1024,
|
|
5053
|
-
},
|
|
5054
|
-
},
|
|
5055
|
-
{
|
|
5056
|
-
id: 'inflection/inflection-3-productivity',
|
|
5057
|
-
label: 'Inflection 3 Productivity',
|
|
5058
|
-
modalities: {
|
|
5059
|
-
input: ['text'],
|
|
5060
|
-
output: ['text'],
|
|
5061
|
-
},
|
|
5062
|
-
toolCall: false,
|
|
5063
|
-
reasoningText: false,
|
|
5064
|
-
attachment: false,
|
|
5065
|
-
temperature: true,
|
|
5066
|
-
knowledge: '2024-10-31',
|
|
5067
|
-
releaseDate: '2024-10-11',
|
|
5068
|
-
lastUpdated: '2024-10-11',
|
|
5069
|
-
openWeights: false,
|
|
5070
|
-
cost: {
|
|
5071
|
-
input: 2.5,
|
|
5072
|
-
output: 10,
|
|
5073
|
-
},
|
|
5074
|
-
limit: {
|
|
5075
|
-
context: 8000,
|
|
5076
|
-
output: 1024,
|
|
5077
|
-
},
|
|
5078
|
-
},
|
|
5079
3993
|
{
|
|
5080
3994
|
id: 'kwaipilot/kat-coder-pro-v2',
|
|
5081
3995
|
label: 'KAT-Coder-Pro V2',
|
|
@@ -5100,149 +4014,6 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
5100
4014
|
output: 80000,
|
|
5101
4015
|
},
|
|
5102
4016
|
},
|
|
5103
|
-
{
|
|
5104
|
-
id: 'liquid/lfm-2-24b-a2b',
|
|
5105
|
-
label: 'LFM2-24B-A2B',
|
|
5106
|
-
modalities: {
|
|
5107
|
-
input: ['text'],
|
|
5108
|
-
output: ['text'],
|
|
5109
|
-
},
|
|
5110
|
-
toolCall: false,
|
|
5111
|
-
reasoningText: false,
|
|
5112
|
-
attachment: false,
|
|
5113
|
-
temperature: true,
|
|
5114
|
-
releaseDate: '2026-02-25',
|
|
5115
|
-
lastUpdated: '2026-02-25',
|
|
5116
|
-
openWeights: true,
|
|
5117
|
-
cost: {
|
|
5118
|
-
input: 0.03,
|
|
5119
|
-
output: 0.12,
|
|
5120
|
-
},
|
|
5121
|
-
limit: {
|
|
5122
|
-
context: 32768,
|
|
5123
|
-
output: 32768,
|
|
5124
|
-
},
|
|
5125
|
-
},
|
|
5126
|
-
{
|
|
5127
|
-
id: 'liquid/lfm-2.5-1.2b-instruct:free',
|
|
5128
|
-
label: 'LFM2.5-1.2B-Instruct (free)',
|
|
5129
|
-
modalities: {
|
|
5130
|
-
input: ['text'],
|
|
5131
|
-
output: ['text'],
|
|
5132
|
-
},
|
|
5133
|
-
toolCall: false,
|
|
5134
|
-
reasoningText: false,
|
|
5135
|
-
attachment: false,
|
|
5136
|
-
temperature: true,
|
|
5137
|
-
knowledge: '2025-06',
|
|
5138
|
-
releaseDate: '2026-01-20',
|
|
5139
|
-
lastUpdated: '2026-01-20',
|
|
5140
|
-
openWeights: true,
|
|
5141
|
-
cost: {
|
|
5142
|
-
input: 0,
|
|
5143
|
-
output: 0,
|
|
5144
|
-
},
|
|
5145
|
-
limit: {
|
|
5146
|
-
context: 32768,
|
|
5147
|
-
output: 32768,
|
|
5148
|
-
},
|
|
5149
|
-
},
|
|
5150
|
-
{
|
|
5151
|
-
id: 'liquid/lfm-2.5-1.2b-thinking:free',
|
|
5152
|
-
label: 'LFM2.5-1.2B-Thinking (free)',
|
|
5153
|
-
modalities: {
|
|
5154
|
-
input: ['text'],
|
|
5155
|
-
output: ['text'],
|
|
5156
|
-
},
|
|
5157
|
-
toolCall: false,
|
|
5158
|
-
reasoningText: true,
|
|
5159
|
-
attachment: false,
|
|
5160
|
-
temperature: true,
|
|
5161
|
-
knowledge: '2025-06',
|
|
5162
|
-
releaseDate: '2026-01-20',
|
|
5163
|
-
lastUpdated: '2026-01-20',
|
|
5164
|
-
openWeights: true,
|
|
5165
|
-
cost: {
|
|
5166
|
-
input: 0,
|
|
5167
|
-
output: 0,
|
|
5168
|
-
},
|
|
5169
|
-
limit: {
|
|
5170
|
-
context: 32768,
|
|
5171
|
-
output: 32768,
|
|
5172
|
-
},
|
|
5173
|
-
},
|
|
5174
|
-
{
|
|
5175
|
-
id: 'mancer/weaver',
|
|
5176
|
-
label: 'Weaver (alpha)',
|
|
5177
|
-
modalities: {
|
|
5178
|
-
input: ['text'],
|
|
5179
|
-
output: ['text'],
|
|
5180
|
-
},
|
|
5181
|
-
toolCall: false,
|
|
5182
|
-
reasoningText: false,
|
|
5183
|
-
attachment: false,
|
|
5184
|
-
temperature: true,
|
|
5185
|
-
knowledge: '2023-06-30',
|
|
5186
|
-
releaseDate: '2023-08-02',
|
|
5187
|
-
lastUpdated: '2023-08-02',
|
|
5188
|
-
openWeights: false,
|
|
5189
|
-
cost: {
|
|
5190
|
-
input: 0.75,
|
|
5191
|
-
output: 1,
|
|
5192
|
-
},
|
|
5193
|
-
limit: {
|
|
5194
|
-
context: 8000,
|
|
5195
|
-
output: 2000,
|
|
5196
|
-
},
|
|
5197
|
-
},
|
|
5198
|
-
{
|
|
5199
|
-
id: 'meta-llama/llama-3-70b-instruct',
|
|
5200
|
-
label: 'Llama 3 70B Instruct',
|
|
5201
|
-
modalities: {
|
|
5202
|
-
input: ['text'],
|
|
5203
|
-
output: ['text'],
|
|
5204
|
-
},
|
|
5205
|
-
toolCall: false,
|
|
5206
|
-
reasoningText: false,
|
|
5207
|
-
attachment: false,
|
|
5208
|
-
temperature: true,
|
|
5209
|
-
knowledge: '2023-12-31',
|
|
5210
|
-
releaseDate: '2024-04-18',
|
|
5211
|
-
lastUpdated: '2024-04-18',
|
|
5212
|
-
openWeights: true,
|
|
5213
|
-
cost: {
|
|
5214
|
-
input: 0.51,
|
|
5215
|
-
output: 0.74,
|
|
5216
|
-
},
|
|
5217
|
-
limit: {
|
|
5218
|
-
context: 8192,
|
|
5219
|
-
output: 8000,
|
|
5220
|
-
},
|
|
5221
|
-
},
|
|
5222
|
-
{
|
|
5223
|
-
id: 'meta-llama/llama-3-8b-instruct',
|
|
5224
|
-
label: 'Llama 3 8B Instruct',
|
|
5225
|
-
modalities: {
|
|
5226
|
-
input: ['text'],
|
|
5227
|
-
output: ['text'],
|
|
5228
|
-
},
|
|
5229
|
-
toolCall: false,
|
|
5230
|
-
reasoningText: false,
|
|
5231
|
-
attachment: false,
|
|
5232
|
-
temperature: true,
|
|
5233
|
-
knowledge: '2023-12-31',
|
|
5234
|
-
releaseDate: '2024-04-18',
|
|
5235
|
-
lastUpdated: '2024-04-18',
|
|
5236
|
-
openWeights: true,
|
|
5237
|
-
cost: {
|
|
5238
|
-
input: 0.04,
|
|
5239
|
-
output: 0.04,
|
|
5240
|
-
},
|
|
5241
|
-
limit: {
|
|
5242
|
-
context: 8192,
|
|
5243
|
-
output: 8192,
|
|
5244
|
-
},
|
|
5245
|
-
},
|
|
5246
4017
|
{
|
|
5247
4018
|
id: 'meta-llama/llama-3.1-70b-instruct',
|
|
5248
4019
|
label: 'Llama 3.1 70B Instruct',
|
|
@@ -5291,102 +4062,6 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
5291
4062
|
output: 16384,
|
|
5292
4063
|
},
|
|
5293
4064
|
},
|
|
5294
|
-
{
|
|
5295
|
-
id: 'meta-llama/llama-3.2-11b-vision-instruct',
|
|
5296
|
-
label: 'Llama 3.2 11B Vision Instruct',
|
|
5297
|
-
modalities: {
|
|
5298
|
-
input: ['text', 'image'],
|
|
5299
|
-
output: ['text'],
|
|
5300
|
-
},
|
|
5301
|
-
toolCall: false,
|
|
5302
|
-
reasoningText: false,
|
|
5303
|
-
attachment: true,
|
|
5304
|
-
temperature: true,
|
|
5305
|
-
knowledge: '2023-12-31',
|
|
5306
|
-
releaseDate: '2024-09-25',
|
|
5307
|
-
lastUpdated: '2024-09-25',
|
|
5308
|
-
openWeights: true,
|
|
5309
|
-
cost: {
|
|
5310
|
-
input: 0.245,
|
|
5311
|
-
output: 0.245,
|
|
5312
|
-
},
|
|
5313
|
-
limit: {
|
|
5314
|
-
context: 131072,
|
|
5315
|
-
output: 16384,
|
|
5316
|
-
},
|
|
5317
|
-
},
|
|
5318
|
-
{
|
|
5319
|
-
id: 'meta-llama/llama-3.2-1b-instruct',
|
|
5320
|
-
label: 'Llama 3.2 1B Instruct',
|
|
5321
|
-
modalities: {
|
|
5322
|
-
input: ['text'],
|
|
5323
|
-
output: ['text'],
|
|
5324
|
-
},
|
|
5325
|
-
toolCall: false,
|
|
5326
|
-
reasoningText: false,
|
|
5327
|
-
attachment: false,
|
|
5328
|
-
temperature: true,
|
|
5329
|
-
knowledge: '2023-12-31',
|
|
5330
|
-
releaseDate: '2024-09-25',
|
|
5331
|
-
lastUpdated: '2024-09-25',
|
|
5332
|
-
openWeights: true,
|
|
5333
|
-
cost: {
|
|
5334
|
-
input: 0.027,
|
|
5335
|
-
output: 0.201,
|
|
5336
|
-
},
|
|
5337
|
-
limit: {
|
|
5338
|
-
context: 60000,
|
|
5339
|
-
output: 60000,
|
|
5340
|
-
},
|
|
5341
|
-
},
|
|
5342
|
-
{
|
|
5343
|
-
id: 'meta-llama/llama-3.2-3b-instruct',
|
|
5344
|
-
label: 'Llama 3.2 3B Instruct',
|
|
5345
|
-
modalities: {
|
|
5346
|
-
input: ['text'],
|
|
5347
|
-
output: ['text'],
|
|
5348
|
-
},
|
|
5349
|
-
toolCall: false,
|
|
5350
|
-
reasoningText: false,
|
|
5351
|
-
attachment: false,
|
|
5352
|
-
temperature: true,
|
|
5353
|
-
knowledge: '2023-12-31',
|
|
5354
|
-
releaseDate: '2024-09-25',
|
|
5355
|
-
lastUpdated: '2024-09-25',
|
|
5356
|
-
openWeights: true,
|
|
5357
|
-
cost: {
|
|
5358
|
-
input: 0.0509,
|
|
5359
|
-
output: 0.335,
|
|
5360
|
-
},
|
|
5361
|
-
limit: {
|
|
5362
|
-
context: 80000,
|
|
5363
|
-
output: 80000,
|
|
5364
|
-
},
|
|
5365
|
-
},
|
|
5366
|
-
{
|
|
5367
|
-
id: 'meta-llama/llama-3.2-3b-instruct:free',
|
|
5368
|
-
label: 'Llama 3.2 3B Instruct (free)',
|
|
5369
|
-
modalities: {
|
|
5370
|
-
input: ['text'],
|
|
5371
|
-
output: ['text'],
|
|
5372
|
-
},
|
|
5373
|
-
toolCall: false,
|
|
5374
|
-
reasoningText: false,
|
|
5375
|
-
attachment: false,
|
|
5376
|
-
temperature: true,
|
|
5377
|
-
knowledge: '2023-12-31',
|
|
5378
|
-
releaseDate: '2024-09-25',
|
|
5379
|
-
lastUpdated: '2024-09-25',
|
|
5380
|
-
openWeights: true,
|
|
5381
|
-
cost: {
|
|
5382
|
-
input: 0,
|
|
5383
|
-
output: 0,
|
|
5384
|
-
},
|
|
5385
|
-
limit: {
|
|
5386
|
-
context: 131072,
|
|
5387
|
-
output: 131072,
|
|
5388
|
-
},
|
|
5389
|
-
},
|
|
5390
4065
|
{
|
|
5391
4066
|
id: 'meta-llama/llama-3.3-70b-instruct',
|
|
5392
4067
|
label: 'Llama-3.3-70B-Instruct',
|
|
@@ -5448,184 +4123,39 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
5448
4123
|
temperature: true,
|
|
5449
4124
|
knowledge: '2024-08-31',
|
|
5450
4125
|
releaseDate: '2025-04-05',
|
|
5451
|
-
lastUpdated: '2025-04-05',
|
|
5452
|
-
openWeights: true,
|
|
5453
|
-
cost: {
|
|
5454
|
-
input: 0.15,
|
|
5455
|
-
output: 0.6,
|
|
5456
|
-
},
|
|
5457
|
-
limit: {
|
|
5458
|
-
context: 1048576,
|
|
5459
|
-
output: 16384,
|
|
5460
|
-
},
|
|
5461
|
-
},
|
|
5462
|
-
{
|
|
5463
|
-
id: 'meta-llama/llama-4-scout',
|
|
5464
|
-
label: 'Llama 4 Scout',
|
|
5465
|
-
modalities: {
|
|
5466
|
-
input: ['text', 'image'],
|
|
5467
|
-
output: ['text'],
|
|
5468
|
-
},
|
|
5469
|
-
toolCall: true,
|
|
5470
|
-
reasoningText: false,
|
|
5471
|
-
attachment: true,
|
|
5472
|
-
temperature: true,
|
|
5473
|
-
knowledge: '2024-08-31',
|
|
5474
|
-
releaseDate: '2025-04-05',
|
|
5475
|
-
lastUpdated: '2025-04-05',
|
|
5476
|
-
openWeights: true,
|
|
5477
|
-
cost: {
|
|
5478
|
-
input: 0.08,
|
|
5479
|
-
output: 0.3,
|
|
5480
|
-
},
|
|
5481
|
-
limit: {
|
|
5482
|
-
context: 327680,
|
|
5483
|
-
output: 16384,
|
|
5484
|
-
},
|
|
5485
|
-
},
|
|
5486
|
-
{
|
|
5487
|
-
id: 'meta-llama/llama-guard-3-8b',
|
|
5488
|
-
label: 'Llama Guard 3 8B',
|
|
5489
|
-
modalities: {
|
|
5490
|
-
input: ['text'],
|
|
5491
|
-
output: ['text'],
|
|
5492
|
-
},
|
|
5493
|
-
toolCall: false,
|
|
5494
|
-
reasoningText: false,
|
|
5495
|
-
attachment: false,
|
|
5496
|
-
temperature: true,
|
|
5497
|
-
knowledge: '2023-12-31',
|
|
5498
|
-
releaseDate: '2025-02-12',
|
|
5499
|
-
lastUpdated: '2025-02-12',
|
|
5500
|
-
openWeights: true,
|
|
5501
|
-
cost: {
|
|
5502
|
-
input: 0.484,
|
|
5503
|
-
output: 0.03,
|
|
5504
|
-
},
|
|
5505
|
-
limit: {
|
|
5506
|
-
context: 131072,
|
|
5507
|
-
output: 131072,
|
|
5508
|
-
},
|
|
5509
|
-
},
|
|
5510
|
-
{
|
|
5511
|
-
id: 'meta-llama/llama-guard-4-12b',
|
|
5512
|
-
label: 'Llama Guard 4 12B',
|
|
5513
|
-
modalities: {
|
|
5514
|
-
input: ['image', 'text'],
|
|
5515
|
-
output: ['text'],
|
|
5516
|
-
},
|
|
5517
|
-
toolCall: false,
|
|
5518
|
-
reasoningText: false,
|
|
5519
|
-
attachment: true,
|
|
5520
|
-
temperature: true,
|
|
5521
|
-
knowledge: '2024-08-31',
|
|
5522
|
-
releaseDate: '2025-04-30',
|
|
5523
|
-
lastUpdated: '2025-04-30',
|
|
5524
|
-
openWeights: true,
|
|
5525
|
-
cost: {
|
|
5526
|
-
input: 0.18,
|
|
5527
|
-
output: 0.18,
|
|
5528
|
-
},
|
|
5529
|
-
limit: {
|
|
5530
|
-
context: 163840,
|
|
5531
|
-
output: 16384,
|
|
5532
|
-
},
|
|
5533
|
-
},
|
|
5534
|
-
{
|
|
5535
|
-
id: 'microsoft/phi-4',
|
|
5536
|
-
label: 'Phi 4',
|
|
5537
|
-
modalities: {
|
|
5538
|
-
input: ['text'],
|
|
5539
|
-
output: ['text'],
|
|
5540
|
-
},
|
|
5541
|
-
toolCall: false,
|
|
5542
|
-
reasoningText: false,
|
|
5543
|
-
attachment: false,
|
|
5544
|
-
temperature: true,
|
|
5545
|
-
knowledge: '2024-06-30',
|
|
5546
|
-
releaseDate: '2025-01-10',
|
|
5547
|
-
lastUpdated: '2025-01-10',
|
|
5548
|
-
openWeights: true,
|
|
5549
|
-
cost: {
|
|
5550
|
-
input: 0.065,
|
|
5551
|
-
output: 0.14,
|
|
5552
|
-
},
|
|
5553
|
-
limit: {
|
|
5554
|
-
context: 16384,
|
|
5555
|
-
output: 16384,
|
|
5556
|
-
},
|
|
5557
|
-
},
|
|
5558
|
-
{
|
|
5559
|
-
id: 'microsoft/phi-4-mini-instruct',
|
|
5560
|
-
label: 'Phi 4 Mini Instruct',
|
|
5561
|
-
modalities: {
|
|
5562
|
-
input: ['text'],
|
|
5563
|
-
output: ['text'],
|
|
5564
|
-
},
|
|
5565
|
-
toolCall: false,
|
|
5566
|
-
reasoningText: false,
|
|
5567
|
-
attachment: false,
|
|
5568
|
-
temperature: true,
|
|
5569
|
-
releaseDate: '2025-10-17',
|
|
5570
|
-
lastUpdated: '2025-10-17',
|
|
5571
|
-
openWeights: true,
|
|
5572
|
-
cost: {
|
|
5573
|
-
input: 0.08,
|
|
5574
|
-
output: 0.35,
|
|
5575
|
-
cacheRead: 0.08,
|
|
5576
|
-
},
|
|
5577
|
-
limit: {
|
|
5578
|
-
context: 128000,
|
|
5579
|
-
output: 128000,
|
|
5580
|
-
},
|
|
5581
|
-
},
|
|
5582
|
-
{
|
|
5583
|
-
id: 'microsoft/wizardlm-2-8x22b',
|
|
5584
|
-
label: 'WizardLM-2 8x22B',
|
|
5585
|
-
modalities: {
|
|
5586
|
-
input: ['text'],
|
|
5587
|
-
output: ['text'],
|
|
5588
|
-
},
|
|
5589
|
-
toolCall: false,
|
|
5590
|
-
reasoningText: false,
|
|
5591
|
-
attachment: false,
|
|
5592
|
-
temperature: true,
|
|
5593
|
-
knowledge: '2024-04-30',
|
|
5594
|
-
releaseDate: '2024-04-16',
|
|
5595
|
-
lastUpdated: '2024-04-16',
|
|
4126
|
+
lastUpdated: '2025-04-05',
|
|
5596
4127
|
openWeights: true,
|
|
5597
4128
|
cost: {
|
|
5598
|
-
input: 0.
|
|
5599
|
-
output: 0.
|
|
4129
|
+
input: 0.15,
|
|
4130
|
+
output: 0.6,
|
|
5600
4131
|
},
|
|
5601
4132
|
limit: {
|
|
5602
|
-
context:
|
|
5603
|
-
output:
|
|
4133
|
+
context: 1048576,
|
|
4134
|
+
output: 16384,
|
|
5604
4135
|
},
|
|
5605
4136
|
},
|
|
5606
4137
|
{
|
|
5607
|
-
id: '
|
|
5608
|
-
|
|
5609
|
-
label: 'MiniMax-01',
|
|
4138
|
+
id: 'meta-llama/llama-4-scout',
|
|
4139
|
+
label: 'Llama 4 Scout',
|
|
5610
4140
|
modalities: {
|
|
5611
4141
|
input: ['text', 'image'],
|
|
5612
4142
|
output: ['text'],
|
|
5613
4143
|
},
|
|
5614
|
-
toolCall:
|
|
4144
|
+
toolCall: true,
|
|
5615
4145
|
reasoningText: false,
|
|
5616
4146
|
attachment: true,
|
|
5617
4147
|
temperature: true,
|
|
5618
|
-
knowledge: '2024-
|
|
5619
|
-
releaseDate: '2025-
|
|
5620
|
-
lastUpdated: '2025-
|
|
4148
|
+
knowledge: '2024-08-31',
|
|
4149
|
+
releaseDate: '2025-04-05',
|
|
4150
|
+
lastUpdated: '2025-04-05',
|
|
5621
4151
|
openWeights: true,
|
|
5622
4152
|
cost: {
|
|
5623
|
-
input: 0.
|
|
5624
|
-
output:
|
|
4153
|
+
input: 0.08,
|
|
4154
|
+
output: 0.3,
|
|
5625
4155
|
},
|
|
5626
4156
|
limit: {
|
|
5627
|
-
context:
|
|
5628
|
-
output:
|
|
4157
|
+
context: 327680,
|
|
4158
|
+
output: 16384,
|
|
5629
4159
|
},
|
|
5630
4160
|
},
|
|
5631
4161
|
{
|
|
@@ -5678,31 +4208,6 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
5678
4208
|
output: 196608,
|
|
5679
4209
|
},
|
|
5680
4210
|
},
|
|
5681
|
-
{
|
|
5682
|
-
id: 'minimax/minimax-m2-her',
|
|
5683
|
-
ownedBy: 'minimax',
|
|
5684
|
-
label: 'MiniMax M2-her',
|
|
5685
|
-
modalities: {
|
|
5686
|
-
input: ['text'],
|
|
5687
|
-
output: ['text'],
|
|
5688
|
-
},
|
|
5689
|
-
toolCall: false,
|
|
5690
|
-
reasoningText: false,
|
|
5691
|
-
attachment: false,
|
|
5692
|
-
temperature: true,
|
|
5693
|
-
releaseDate: '2026-01-23',
|
|
5694
|
-
lastUpdated: '2026-01-23',
|
|
5695
|
-
openWeights: false,
|
|
5696
|
-
cost: {
|
|
5697
|
-
input: 0.3,
|
|
5698
|
-
output: 1.2,
|
|
5699
|
-
cacheRead: 0.03,
|
|
5700
|
-
},
|
|
5701
|
-
limit: {
|
|
5702
|
-
context: 65536,
|
|
5703
|
-
output: 2048,
|
|
5704
|
-
},
|
|
5705
|
-
},
|
|
5706
4211
|
{
|
|
5707
4212
|
id: 'minimax/minimax-m2.1',
|
|
5708
4213
|
ownedBy: 'minimax',
|
|
@@ -5790,7 +4295,7 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
5790
4295
|
temperature: true,
|
|
5791
4296
|
releaseDate: '2026-06-01',
|
|
5792
4297
|
lastUpdated: '2026-06-01',
|
|
5793
|
-
openWeights:
|
|
4298
|
+
openWeights: false,
|
|
5794
4299
|
cost: {
|
|
5795
4300
|
input: 0.3,
|
|
5796
4301
|
output: 1.2,
|
|
@@ -6120,30 +4625,6 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
6120
4625
|
output: 32768,
|
|
6121
4626
|
},
|
|
6122
4627
|
},
|
|
6123
|
-
{
|
|
6124
|
-
id: 'mistralai/mistral-small-24b-instruct-2501',
|
|
6125
|
-
label: 'Mistral Small 3',
|
|
6126
|
-
modalities: {
|
|
6127
|
-
input: ['text'],
|
|
6128
|
-
output: ['text'],
|
|
6129
|
-
},
|
|
6130
|
-
toolCall: false,
|
|
6131
|
-
reasoningText: false,
|
|
6132
|
-
attachment: false,
|
|
6133
|
-
temperature: true,
|
|
6134
|
-
knowledge: '2023-10-31',
|
|
6135
|
-
releaseDate: '2025-01-30',
|
|
6136
|
-
lastUpdated: '2025-01-30',
|
|
6137
|
-
openWeights: true,
|
|
6138
|
-
cost: {
|
|
6139
|
-
input: 0.05,
|
|
6140
|
-
output: 0.08,
|
|
6141
|
-
},
|
|
6142
|
-
limit: {
|
|
6143
|
-
context: 32768,
|
|
6144
|
-
output: 16384,
|
|
6145
|
-
},
|
|
6146
|
-
},
|
|
6147
4628
|
{
|
|
6148
4629
|
id: 'mistralai/mistral-small-2603',
|
|
6149
4630
|
label: 'Mistral Small 4',
|
|
@@ -6169,30 +4650,6 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
6169
4650
|
output: 262144,
|
|
6170
4651
|
},
|
|
6171
4652
|
},
|
|
6172
|
-
{
|
|
6173
|
-
id: 'mistralai/mistral-small-3.1-24b-instruct',
|
|
6174
|
-
label: 'Mistral Small 3.1 24B',
|
|
6175
|
-
modalities: {
|
|
6176
|
-
input: ['text', 'image'],
|
|
6177
|
-
output: ['text'],
|
|
6178
|
-
},
|
|
6179
|
-
toolCall: false,
|
|
6180
|
-
reasoningText: false,
|
|
6181
|
-
attachment: true,
|
|
6182
|
-
temperature: true,
|
|
6183
|
-
knowledge: '2023-10-31',
|
|
6184
|
-
releaseDate: '2025-03-17',
|
|
6185
|
-
lastUpdated: '2025-03-17',
|
|
6186
|
-
openWeights: true,
|
|
6187
|
-
cost: {
|
|
6188
|
-
input: 0.351,
|
|
6189
|
-
output: 0.555,
|
|
6190
|
-
},
|
|
6191
|
-
limit: {
|
|
6192
|
-
context: 128000,
|
|
6193
|
-
output: 128000,
|
|
6194
|
-
},
|
|
6195
|
-
},
|
|
6196
4653
|
{
|
|
6197
4654
|
id: 'mistralai/mistral-small-3.2-24b-instruct',
|
|
6198
4655
|
label: 'Mistral Small 3.2 24B',
|
|
@@ -6311,324 +4768,134 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
6311
4768
|
input: 0.6,
|
|
6312
4769
|
output: 2.5,
|
|
6313
4770
|
},
|
|
6314
|
-
limit: {
|
|
6315
|
-
context: 262144,
|
|
6316
|
-
output: 262144,
|
|
6317
|
-
},
|
|
6318
|
-
},
|
|
6319
|
-
{
|
|
6320
|
-
id: 'moonshotai/kimi-k2-thinking',
|
|
6321
|
-
ownedBy: 'moonshot',
|
|
6322
|
-
label: 'Kimi K2 Thinking',
|
|
6323
|
-
modalities: {
|
|
6324
|
-
input: ['text'],
|
|
6325
|
-
output: ['text'],
|
|
6326
|
-
},
|
|
6327
|
-
toolCall: true,
|
|
6328
|
-
reasoningText: true,
|
|
6329
|
-
attachment: false,
|
|
6330
|
-
temperature: true,
|
|
6331
|
-
knowledge: '2024-08',
|
|
6332
|
-
releaseDate: '2025-11-06',
|
|
6333
|
-
lastUpdated: '2025-11-06',
|
|
6334
|
-
openWeights: true,
|
|
6335
|
-
cost: {
|
|
6336
|
-
input: 0.6,
|
|
6337
|
-
output: 2.5,
|
|
6338
|
-
},
|
|
6339
|
-
limit: {
|
|
6340
|
-
context: 262144,
|
|
6341
|
-
output: 262144,
|
|
6342
|
-
},
|
|
6343
|
-
},
|
|
6344
|
-
{
|
|
6345
|
-
id: 'moonshotai/kimi-k2.5',
|
|
6346
|
-
ownedBy: 'moonshot',
|
|
6347
|
-
label: 'Kimi K2.5',
|
|
6348
|
-
modalities: {
|
|
6349
|
-
input: ['text', 'image'],
|
|
6350
|
-
output: ['text'],
|
|
6351
|
-
},
|
|
6352
|
-
toolCall: true,
|
|
6353
|
-
reasoningText: true,
|
|
6354
|
-
attachment: true,
|
|
6355
|
-
temperature: true,
|
|
6356
|
-
knowledge: '2025-01',
|
|
6357
|
-
releaseDate: '2026-01',
|
|
6358
|
-
lastUpdated: '2026-01',
|
|
6359
|
-
openWeights: true,
|
|
6360
|
-
cost: {
|
|
6361
|
-
input: 0.4,
|
|
6362
|
-
output: 1.9,
|
|
6363
|
-
cacheRead: 0.09,
|
|
6364
|
-
},
|
|
6365
|
-
limit: {
|
|
6366
|
-
context: 262144,
|
|
6367
|
-
output: 262144,
|
|
6368
|
-
},
|
|
6369
|
-
},
|
|
6370
|
-
{
|
|
6371
|
-
id: 'moonshotai/kimi-k2.6',
|
|
6372
|
-
ownedBy: 'moonshot',
|
|
6373
|
-
label: 'Kimi K2.6',
|
|
6374
|
-
modalities: {
|
|
6375
|
-
input: ['text', 'image'],
|
|
6376
|
-
output: ['text'],
|
|
6377
|
-
},
|
|
6378
|
-
toolCall: true,
|
|
6379
|
-
reasoningText: true,
|
|
6380
|
-
attachment: true,
|
|
6381
|
-
temperature: true,
|
|
6382
|
-
knowledge: '2025-01',
|
|
6383
|
-
releaseDate: '2026-04-21',
|
|
6384
|
-
lastUpdated: '2026-04-21',
|
|
6385
|
-
openWeights: true,
|
|
6386
|
-
cost: {
|
|
6387
|
-
input: 0.684,
|
|
6388
|
-
output: 3.42,
|
|
6389
|
-
cacheRead: 0.144,
|
|
6390
|
-
},
|
|
6391
|
-
limit: {
|
|
6392
|
-
context: 262144,
|
|
6393
|
-
output: 262144,
|
|
6394
|
-
},
|
|
6395
|
-
},
|
|
6396
|
-
{
|
|
6397
|
-
id: 'moonshotai/kimi-k2.6:free',
|
|
6398
|
-
ownedBy: 'moonshot',
|
|
6399
|
-
label: 'Kimi K2.6 (free)',
|
|
6400
|
-
modalities: {
|
|
6401
|
-
input: ['text', 'image'],
|
|
6402
|
-
output: ['text'],
|
|
6403
|
-
},
|
|
6404
|
-
toolCall: true,
|
|
6405
|
-
reasoningText: true,
|
|
6406
|
-
attachment: true,
|
|
6407
|
-
temperature: false,
|
|
6408
|
-
knowledge: '2025-01',
|
|
6409
|
-
releaseDate: '2026-04-21',
|
|
6410
|
-
lastUpdated: '2026-04-21',
|
|
6411
|
-
openWeights: true,
|
|
6412
|
-
cost: {
|
|
6413
|
-
input: 0,
|
|
6414
|
-
output: 0,
|
|
6415
|
-
},
|
|
6416
|
-
limit: {
|
|
6417
|
-
context: 262144,
|
|
6418
|
-
output: 262144,
|
|
6419
|
-
},
|
|
6420
|
-
},
|
|
6421
|
-
{
|
|
6422
|
-
id: 'morph/morph-v3-fast',
|
|
6423
|
-
label: 'Morph V3 Fast',
|
|
6424
|
-
modalities: {
|
|
6425
|
-
input: ['text'],
|
|
6426
|
-
output: ['text'],
|
|
6427
|
-
},
|
|
6428
|
-
toolCall: false,
|
|
6429
|
-
reasoningText: false,
|
|
6430
|
-
attachment: false,
|
|
6431
|
-
temperature: true,
|
|
6432
|
-
releaseDate: '2025-07-07',
|
|
6433
|
-
lastUpdated: '2025-07-07',
|
|
6434
|
-
openWeights: false,
|
|
6435
|
-
cost: {
|
|
6436
|
-
input: 0.8,
|
|
6437
|
-
output: 1.2,
|
|
6438
|
-
},
|
|
6439
|
-
limit: {
|
|
6440
|
-
context: 81920,
|
|
6441
|
-
output: 38000,
|
|
6442
|
-
},
|
|
6443
|
-
},
|
|
6444
|
-
{
|
|
6445
|
-
id: 'morph/morph-v3-large',
|
|
6446
|
-
label: 'Morph V3 Large',
|
|
6447
|
-
modalities: {
|
|
6448
|
-
input: ['text'],
|
|
6449
|
-
output: ['text'],
|
|
6450
|
-
},
|
|
6451
|
-
toolCall: false,
|
|
6452
|
-
reasoningText: false,
|
|
6453
|
-
attachment: false,
|
|
6454
|
-
temperature: true,
|
|
6455
|
-
releaseDate: '2025-07-07',
|
|
6456
|
-
lastUpdated: '2025-07-07',
|
|
6457
|
-
openWeights: false,
|
|
6458
|
-
cost: {
|
|
6459
|
-
input: 0.9,
|
|
6460
|
-
output: 1.9,
|
|
6461
|
-
},
|
|
6462
|
-
limit: {
|
|
6463
|
-
context: 262144,
|
|
6464
|
-
output: 131072,
|
|
6465
|
-
},
|
|
6466
|
-
},
|
|
6467
|
-
{
|
|
6468
|
-
id: 'nex-agi/deepseek-v3.1-nex-n1',
|
|
6469
|
-
label: 'DeepSeek V3.1 Nex N1',
|
|
6470
|
-
modalities: {
|
|
6471
|
-
input: ['text'],
|
|
6472
|
-
output: ['text'],
|
|
6473
|
-
},
|
|
6474
|
-
toolCall: true,
|
|
6475
|
-
reasoningText: false,
|
|
6476
|
-
attachment: false,
|
|
6477
|
-
temperature: true,
|
|
6478
|
-
releaseDate: '2025-12-08',
|
|
6479
|
-
lastUpdated: '2025-12-08',
|
|
6480
|
-
openWeights: true,
|
|
6481
|
-
cost: {
|
|
6482
|
-
input: 0.135,
|
|
6483
|
-
output: 0.5,
|
|
6484
|
-
},
|
|
6485
|
-
limit: {
|
|
6486
|
-
context: 131072,
|
|
6487
|
-
output: 163840,
|
|
6488
|
-
},
|
|
6489
|
-
},
|
|
6490
|
-
{
|
|
6491
|
-
id: 'nousresearch/hermes-2-pro-llama-3-8b',
|
|
6492
|
-
label: 'Hermes 2 Pro - Llama-3 8B',
|
|
6493
|
-
modalities: {
|
|
6494
|
-
input: ['text'],
|
|
6495
|
-
output: ['text'],
|
|
6496
|
-
},
|
|
6497
|
-
toolCall: false,
|
|
6498
|
-
reasoningText: false,
|
|
6499
|
-
attachment: false,
|
|
6500
|
-
temperature: true,
|
|
6501
|
-
knowledge: '2023-12-31',
|
|
6502
|
-
releaseDate: '2024-05-27',
|
|
6503
|
-
lastUpdated: '2024-05-27',
|
|
6504
|
-
openWeights: true,
|
|
6505
|
-
cost: {
|
|
6506
|
-
input: 0.14,
|
|
6507
|
-
output: 0.14,
|
|
6508
|
-
},
|
|
6509
|
-
limit: {
|
|
6510
|
-
context: 8192,
|
|
6511
|
-
output: 8192,
|
|
4771
|
+
limit: {
|
|
4772
|
+
context: 262144,
|
|
4773
|
+
output: 262144,
|
|
6512
4774
|
},
|
|
6513
4775
|
},
|
|
6514
4776
|
{
|
|
6515
|
-
id: '
|
|
6516
|
-
|
|
4777
|
+
id: 'moonshotai/kimi-k2-thinking',
|
|
4778
|
+
ownedBy: 'moonshot',
|
|
4779
|
+
label: 'Kimi K2 Thinking',
|
|
6517
4780
|
modalities: {
|
|
6518
4781
|
input: ['text'],
|
|
6519
4782
|
output: ['text'],
|
|
6520
4783
|
},
|
|
6521
|
-
toolCall:
|
|
6522
|
-
reasoningText:
|
|
4784
|
+
toolCall: true,
|
|
4785
|
+
reasoningText: true,
|
|
6523
4786
|
attachment: false,
|
|
6524
4787
|
temperature: true,
|
|
6525
|
-
knowledge: '
|
|
6526
|
-
releaseDate: '
|
|
6527
|
-
lastUpdated: '
|
|
4788
|
+
knowledge: '2024-08',
|
|
4789
|
+
releaseDate: '2025-11-06',
|
|
4790
|
+
lastUpdated: '2025-11-06',
|
|
6528
4791
|
openWeights: true,
|
|
6529
4792
|
cost: {
|
|
6530
|
-
input:
|
|
6531
|
-
output:
|
|
4793
|
+
input: 0.6,
|
|
4794
|
+
output: 2.5,
|
|
6532
4795
|
},
|
|
6533
4796
|
limit: {
|
|
6534
|
-
context:
|
|
6535
|
-
output:
|
|
4797
|
+
context: 262144,
|
|
4798
|
+
output: 262144,
|
|
6536
4799
|
},
|
|
6537
4800
|
},
|
|
6538
4801
|
{
|
|
6539
|
-
id: '
|
|
6540
|
-
|
|
4802
|
+
id: 'moonshotai/kimi-k2.5',
|
|
4803
|
+
ownedBy: 'moonshot',
|
|
4804
|
+
label: 'Kimi K2.5',
|
|
6541
4805
|
modalities: {
|
|
6542
|
-
input: ['text'],
|
|
4806
|
+
input: ['text', 'image'],
|
|
6543
4807
|
output: ['text'],
|
|
6544
4808
|
},
|
|
6545
|
-
toolCall:
|
|
6546
|
-
reasoningText:
|
|
6547
|
-
attachment:
|
|
4809
|
+
toolCall: true,
|
|
4810
|
+
reasoningText: true,
|
|
4811
|
+
attachment: true,
|
|
6548
4812
|
temperature: true,
|
|
6549
|
-
knowledge: '
|
|
6550
|
-
releaseDate: '
|
|
6551
|
-
lastUpdated: '
|
|
4813
|
+
knowledge: '2025-01',
|
|
4814
|
+
releaseDate: '2026-01',
|
|
4815
|
+
lastUpdated: '2026-01',
|
|
6552
4816
|
openWeights: true,
|
|
6553
4817
|
cost: {
|
|
6554
|
-
input: 0,
|
|
6555
|
-
output:
|
|
4818
|
+
input: 0.4,
|
|
4819
|
+
output: 1.9,
|
|
4820
|
+
cacheRead: 0.09,
|
|
6556
4821
|
},
|
|
6557
4822
|
limit: {
|
|
6558
|
-
context:
|
|
6559
|
-
output:
|
|
4823
|
+
context: 262144,
|
|
4824
|
+
output: 262144,
|
|
6560
4825
|
},
|
|
6561
4826
|
},
|
|
6562
4827
|
{
|
|
6563
|
-
id: '
|
|
6564
|
-
|
|
4828
|
+
id: 'moonshotai/kimi-k2.6',
|
|
4829
|
+
ownedBy: 'moonshot',
|
|
4830
|
+
label: 'Kimi K2.6',
|
|
6565
4831
|
modalities: {
|
|
6566
|
-
input: ['text'],
|
|
4832
|
+
input: ['text', 'image'],
|
|
6567
4833
|
output: ['text'],
|
|
6568
4834
|
},
|
|
6569
|
-
toolCall:
|
|
6570
|
-
reasoningText:
|
|
6571
|
-
attachment:
|
|
4835
|
+
toolCall: true,
|
|
4836
|
+
reasoningText: true,
|
|
4837
|
+
attachment: true,
|
|
6572
4838
|
temperature: true,
|
|
6573
|
-
knowledge: '
|
|
6574
|
-
releaseDate: '
|
|
6575
|
-
lastUpdated: '
|
|
4839
|
+
knowledge: '2025-01',
|
|
4840
|
+
releaseDate: '2026-04-21',
|
|
4841
|
+
lastUpdated: '2026-04-21',
|
|
6576
4842
|
openWeights: true,
|
|
6577
4843
|
cost: {
|
|
6578
|
-
input: 0.
|
|
6579
|
-
output:
|
|
4844
|
+
input: 0.684,
|
|
4845
|
+
output: 3.42,
|
|
4846
|
+
cacheRead: 0.144,
|
|
6580
4847
|
},
|
|
6581
4848
|
limit: {
|
|
6582
|
-
context:
|
|
6583
|
-
output:
|
|
4849
|
+
context: 262144,
|
|
4850
|
+
output: 262144,
|
|
6584
4851
|
},
|
|
6585
4852
|
},
|
|
6586
4853
|
{
|
|
6587
|
-
id: '
|
|
6588
|
-
|
|
4854
|
+
id: 'moonshotai/kimi-k2.6:free',
|
|
4855
|
+
ownedBy: 'moonshot',
|
|
4856
|
+
label: 'Kimi K2.6 (free)',
|
|
6589
4857
|
modalities: {
|
|
6590
|
-
input: ['text'],
|
|
4858
|
+
input: ['text', 'image'],
|
|
6591
4859
|
output: ['text'],
|
|
6592
4860
|
},
|
|
6593
|
-
toolCall:
|
|
4861
|
+
toolCall: true,
|
|
6594
4862
|
reasoningText: true,
|
|
6595
|
-
attachment:
|
|
6596
|
-
temperature:
|
|
6597
|
-
knowledge: '
|
|
6598
|
-
releaseDate: '
|
|
6599
|
-
lastUpdated: '
|
|
4863
|
+
attachment: true,
|
|
4864
|
+
temperature: false,
|
|
4865
|
+
knowledge: '2025-01',
|
|
4866
|
+
releaseDate: '2026-04-21',
|
|
4867
|
+
lastUpdated: '2026-04-21',
|
|
6600
4868
|
openWeights: true,
|
|
6601
4869
|
cost: {
|
|
6602
|
-
input:
|
|
6603
|
-
output:
|
|
4870
|
+
input: 0,
|
|
4871
|
+
output: 0,
|
|
6604
4872
|
},
|
|
6605
4873
|
limit: {
|
|
6606
|
-
context:
|
|
6607
|
-
output:
|
|
4874
|
+
context: 262144,
|
|
4875
|
+
output: 262144,
|
|
6608
4876
|
},
|
|
6609
4877
|
},
|
|
6610
4878
|
{
|
|
6611
|
-
id: '
|
|
6612
|
-
label: '
|
|
4879
|
+
id: 'nex-agi/deepseek-v3.1-nex-n1',
|
|
4880
|
+
label: 'DeepSeek V3.1 Nex N1',
|
|
6613
4881
|
modalities: {
|
|
6614
4882
|
input: ['text'],
|
|
6615
4883
|
output: ['text'],
|
|
6616
4884
|
},
|
|
6617
|
-
toolCall:
|
|
6618
|
-
reasoningText:
|
|
4885
|
+
toolCall: true,
|
|
4886
|
+
reasoningText: false,
|
|
6619
4887
|
attachment: false,
|
|
6620
4888
|
temperature: true,
|
|
6621
|
-
|
|
6622
|
-
|
|
6623
|
-
lastUpdated: '2025-08-26',
|
|
4889
|
+
releaseDate: '2025-12-08',
|
|
4890
|
+
lastUpdated: '2025-12-08',
|
|
6624
4891
|
openWeights: true,
|
|
6625
4892
|
cost: {
|
|
6626
|
-
input: 0.
|
|
6627
|
-
output: 0.
|
|
4893
|
+
input: 0.135,
|
|
4894
|
+
output: 0.5,
|
|
6628
4895
|
},
|
|
6629
4896
|
limit: {
|
|
6630
4897
|
context: 131072,
|
|
6631
|
-
output:
|
|
4898
|
+
output: 163840,
|
|
6632
4899
|
},
|
|
6633
4900
|
},
|
|
6634
4901
|
{
|
|
@@ -6773,6 +5040,53 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
6773
5040
|
output: 262144,
|
|
6774
5041
|
},
|
|
6775
5042
|
},
|
|
5043
|
+
{
|
|
5044
|
+
id: 'nvidia/nemotron-3-ultra-550b-a55b',
|
|
5045
|
+
label: 'Nemotron 3 Ultra',
|
|
5046
|
+
modalities: {
|
|
5047
|
+
input: ['text'],
|
|
5048
|
+
output: ['text'],
|
|
5049
|
+
},
|
|
5050
|
+
toolCall: true,
|
|
5051
|
+
reasoningText: true,
|
|
5052
|
+
attachment: false,
|
|
5053
|
+
temperature: true,
|
|
5054
|
+
releaseDate: '2026-06-04',
|
|
5055
|
+
lastUpdated: '2026-06-04',
|
|
5056
|
+
openWeights: true,
|
|
5057
|
+
cost: {
|
|
5058
|
+
input: 0.5,
|
|
5059
|
+
output: 2.5,
|
|
5060
|
+
cacheRead: 0.15,
|
|
5061
|
+
},
|
|
5062
|
+
limit: {
|
|
5063
|
+
context: 262144,
|
|
5064
|
+
output: 16384,
|
|
5065
|
+
},
|
|
5066
|
+
},
|
|
5067
|
+
{
|
|
5068
|
+
id: 'nvidia/nemotron-3-ultra-550b-a55b:free',
|
|
5069
|
+
label: 'Nemotron 3 Ultra (free)',
|
|
5070
|
+
modalities: {
|
|
5071
|
+
input: ['text'],
|
|
5072
|
+
output: ['text'],
|
|
5073
|
+
},
|
|
5074
|
+
toolCall: true,
|
|
5075
|
+
reasoningText: true,
|
|
5076
|
+
attachment: false,
|
|
5077
|
+
temperature: true,
|
|
5078
|
+
releaseDate: '2026-06-04',
|
|
5079
|
+
lastUpdated: '2026-06-04',
|
|
5080
|
+
openWeights: true,
|
|
5081
|
+
cost: {
|
|
5082
|
+
input: 0,
|
|
5083
|
+
output: 0,
|
|
5084
|
+
},
|
|
5085
|
+
limit: {
|
|
5086
|
+
context: 1000000,
|
|
5087
|
+
output: 65536,
|
|
5088
|
+
},
|
|
5089
|
+
},
|
|
6776
5090
|
{
|
|
6777
5091
|
id: 'nvidia/nemotron-nano-12b-v2-vl:free',
|
|
6778
5092
|
label: 'Nemotron Nano 12B 2 VL (free)',
|
|
@@ -6920,31 +5234,6 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
6920
5234
|
output: 4096,
|
|
6921
5235
|
},
|
|
6922
5236
|
},
|
|
6923
|
-
{
|
|
6924
|
-
id: 'openai/gpt-3.5-turbo-instruct',
|
|
6925
|
-
ownedBy: 'openai',
|
|
6926
|
-
label: 'GPT-3.5 Turbo Instruct',
|
|
6927
|
-
modalities: {
|
|
6928
|
-
input: ['text'],
|
|
6929
|
-
output: ['text'],
|
|
6930
|
-
},
|
|
6931
|
-
toolCall: false,
|
|
6932
|
-
reasoningText: false,
|
|
6933
|
-
attachment: false,
|
|
6934
|
-
temperature: true,
|
|
6935
|
-
knowledge: '2021-09-30',
|
|
6936
|
-
releaseDate: '2023-09-28',
|
|
6937
|
-
lastUpdated: '2023-09-28',
|
|
6938
|
-
openWeights: false,
|
|
6939
|
-
cost: {
|
|
6940
|
-
input: 1.5,
|
|
6941
|
-
output: 2,
|
|
6942
|
-
},
|
|
6943
|
-
limit: {
|
|
6944
|
-
context: 4095,
|
|
6945
|
-
output: 4096,
|
|
6946
|
-
},
|
|
6947
|
-
},
|
|
6948
5237
|
{
|
|
6949
5238
|
id: 'openai/gpt-4',
|
|
6950
5239
|
ownedBy: 'openai',
|
|
@@ -7270,109 +5559,7 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
7270
5559
|
cost: {
|
|
7271
5560
|
input: 0.15,
|
|
7272
5561
|
output: 0.6,
|
|
7273
|
-
cacheRead: 0.075,
|
|
7274
|
-
},
|
|
7275
|
-
limit: {
|
|
7276
|
-
context: 128000,
|
|
7277
|
-
output: 16384,
|
|
7278
|
-
},
|
|
7279
|
-
},
|
|
7280
|
-
{
|
|
7281
|
-
id: 'openai/gpt-4o-mini-search-preview',
|
|
7282
|
-
ownedBy: 'openai',
|
|
7283
|
-
label: 'GPT-4o-mini Search Preview',
|
|
7284
|
-
modalities: {
|
|
7285
|
-
input: ['text'],
|
|
7286
|
-
output: ['text'],
|
|
7287
|
-
},
|
|
7288
|
-
toolCall: false,
|
|
7289
|
-
reasoningText: false,
|
|
7290
|
-
attachment: false,
|
|
7291
|
-
temperature: false,
|
|
7292
|
-
knowledge: '2023-10-31',
|
|
7293
|
-
releaseDate: '2025-03-12',
|
|
7294
|
-
lastUpdated: '2025-03-12',
|
|
7295
|
-
openWeights: false,
|
|
7296
|
-
cost: {
|
|
7297
|
-
input: 0.15,
|
|
7298
|
-
output: 0.6,
|
|
7299
|
-
},
|
|
7300
|
-
limit: {
|
|
7301
|
-
context: 128000,
|
|
7302
|
-
output: 16384,
|
|
7303
|
-
},
|
|
7304
|
-
},
|
|
7305
|
-
{
|
|
7306
|
-
id: 'openai/gpt-4o-search-preview',
|
|
7307
|
-
ownedBy: 'openai',
|
|
7308
|
-
label: 'GPT-4o Search Preview',
|
|
7309
|
-
modalities: {
|
|
7310
|
-
input: ['text'],
|
|
7311
|
-
output: ['text'],
|
|
7312
|
-
},
|
|
7313
|
-
toolCall: false,
|
|
7314
|
-
reasoningText: false,
|
|
7315
|
-
attachment: false,
|
|
7316
|
-
temperature: false,
|
|
7317
|
-
knowledge: '2023-10-31',
|
|
7318
|
-
releaseDate: '2025-03-12',
|
|
7319
|
-
lastUpdated: '2025-03-12',
|
|
7320
|
-
openWeights: false,
|
|
7321
|
-
cost: {
|
|
7322
|
-
input: 2.5,
|
|
7323
|
-
output: 10,
|
|
7324
|
-
},
|
|
7325
|
-
limit: {
|
|
7326
|
-
context: 128000,
|
|
7327
|
-
output: 16384,
|
|
7328
|
-
},
|
|
7329
|
-
},
|
|
7330
|
-
{
|
|
7331
|
-
id: 'openai/gpt-5',
|
|
7332
|
-
ownedBy: 'openai',
|
|
7333
|
-
label: 'GPT-5',
|
|
7334
|
-
modalities: {
|
|
7335
|
-
input: ['text', 'image', 'pdf'],
|
|
7336
|
-
output: ['text'],
|
|
7337
|
-
},
|
|
7338
|
-
toolCall: true,
|
|
7339
|
-
reasoningText: true,
|
|
7340
|
-
attachment: true,
|
|
7341
|
-
temperature: false,
|
|
7342
|
-
knowledge: '2024-09-30',
|
|
7343
|
-
releaseDate: '2025-08-07',
|
|
7344
|
-
lastUpdated: '2025-08-07',
|
|
7345
|
-
openWeights: false,
|
|
7346
|
-
cost: {
|
|
7347
|
-
input: 1.25,
|
|
7348
|
-
output: 10,
|
|
7349
|
-
cacheRead: 0.125,
|
|
7350
|
-
},
|
|
7351
|
-
limit: {
|
|
7352
|
-
context: 400000,
|
|
7353
|
-
output: 128000,
|
|
7354
|
-
},
|
|
7355
|
-
},
|
|
7356
|
-
{
|
|
7357
|
-
id: 'openai/gpt-5-chat',
|
|
7358
|
-
ownedBy: 'openai',
|
|
7359
|
-
label: 'GPT-5 Chat',
|
|
7360
|
-
modalities: {
|
|
7361
|
-
input: ['pdf', 'image', 'text'],
|
|
7362
|
-
output: ['text'],
|
|
7363
|
-
},
|
|
7364
|
-
toolCall: false,
|
|
7365
|
-
reasoningText: false,
|
|
7366
|
-
attachment: true,
|
|
7367
|
-
temperature: false,
|
|
7368
|
-
knowledge: '2024-09-30',
|
|
7369
|
-
releaseDate: '2025-08-07',
|
|
7370
|
-
lastUpdated: '2025-08-07',
|
|
7371
|
-
openWeights: false,
|
|
7372
|
-
cost: {
|
|
7373
|
-
input: 1.25,
|
|
7374
|
-
output: 10,
|
|
7375
|
-
cacheRead: 0.125,
|
|
5562
|
+
cacheRead: 0.075,
|
|
7376
5563
|
},
|
|
7377
5564
|
limit: {
|
|
7378
5565
|
context: 128000,
|
|
@@ -7380,11 +5567,11 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
7380
5567
|
},
|
|
7381
5568
|
},
|
|
7382
5569
|
{
|
|
7383
|
-
id: 'openai/gpt-5
|
|
5570
|
+
id: 'openai/gpt-5',
|
|
7384
5571
|
ownedBy: 'openai',
|
|
7385
|
-
label: 'GPT-5
|
|
5572
|
+
label: 'GPT-5',
|
|
7386
5573
|
modalities: {
|
|
7387
|
-
input: ['text', 'image'],
|
|
5574
|
+
input: ['text', 'image', 'pdf'],
|
|
7388
5575
|
output: ['text'],
|
|
7389
5576
|
},
|
|
7390
5577
|
toolCall: true,
|
|
@@ -7392,8 +5579,8 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
7392
5579
|
attachment: true,
|
|
7393
5580
|
temperature: false,
|
|
7394
5581
|
knowledge: '2024-09-30',
|
|
7395
|
-
releaseDate: '2025-
|
|
7396
|
-
lastUpdated: '2025-
|
|
5582
|
+
releaseDate: '2025-08-07',
|
|
5583
|
+
lastUpdated: '2025-08-07',
|
|
7397
5584
|
openWeights: false,
|
|
7398
5585
|
cost: {
|
|
7399
5586
|
input: 1.25,
|
|
@@ -7406,50 +5593,25 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
7406
5593
|
},
|
|
7407
5594
|
},
|
|
7408
5595
|
{
|
|
7409
|
-
id: 'openai/gpt-5-
|
|
5596
|
+
id: 'openai/gpt-5-codex',
|
|
7410
5597
|
ownedBy: 'openai',
|
|
7411
|
-
label: 'GPT-5
|
|
5598
|
+
label: 'GPT-5-Codex',
|
|
7412
5599
|
modalities: {
|
|
7413
|
-
input: ['
|
|
7414
|
-
output: ['
|
|
5600
|
+
input: ['text', 'image'],
|
|
5601
|
+
output: ['text'],
|
|
7415
5602
|
},
|
|
7416
|
-
toolCall:
|
|
5603
|
+
toolCall: true,
|
|
7417
5604
|
reasoningText: true,
|
|
7418
5605
|
attachment: true,
|
|
7419
|
-
temperature:
|
|
7420
|
-
knowledge: '2024-
|
|
7421
|
-
releaseDate: '2025-
|
|
7422
|
-
lastUpdated: '2025-
|
|
5606
|
+
temperature: false,
|
|
5607
|
+
knowledge: '2024-09-30',
|
|
5608
|
+
releaseDate: '2025-09-15',
|
|
5609
|
+
lastUpdated: '2025-09-15',
|
|
7423
5610
|
openWeights: false,
|
|
7424
5611
|
cost: {
|
|
7425
|
-
input:
|
|
5612
|
+
input: 1.25,
|
|
7426
5613
|
output: 10,
|
|
7427
|
-
cacheRead:
|
|
7428
|
-
},
|
|
7429
|
-
limit: {
|
|
7430
|
-
context: 400000,
|
|
7431
|
-
output: 128000,
|
|
7432
|
-
},
|
|
7433
|
-
},
|
|
7434
|
-
{
|
|
7435
|
-
id: 'openai/gpt-5-image-mini',
|
|
7436
|
-
ownedBy: 'openai',
|
|
7437
|
-
label: 'GPT-5 Image Mini',
|
|
7438
|
-
modalities: {
|
|
7439
|
-
input: ['pdf', 'image', 'text'],
|
|
7440
|
-
output: ['image', 'text'],
|
|
7441
|
-
},
|
|
7442
|
-
toolCall: false,
|
|
7443
|
-
reasoningText: true,
|
|
7444
|
-
attachment: true,
|
|
7445
|
-
temperature: true,
|
|
7446
|
-
releaseDate: '2025-10-16',
|
|
7447
|
-
lastUpdated: '2025-10-16',
|
|
7448
|
-
openWeights: false,
|
|
7449
|
-
cost: {
|
|
7450
|
-
input: 2.5,
|
|
7451
|
-
output: 2,
|
|
7452
|
-
cacheRead: 0.25,
|
|
5614
|
+
cacheRead: 0.125,
|
|
7453
5615
|
},
|
|
7454
5616
|
limit: {
|
|
7455
5617
|
context: 400000,
|
|
@@ -7843,31 +6005,6 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
7843
6005
|
output: 128000,
|
|
7844
6006
|
},
|
|
7845
6007
|
},
|
|
7846
|
-
{
|
|
7847
|
-
id: 'openai/gpt-5.4-image-2',
|
|
7848
|
-
ownedBy: 'openai',
|
|
7849
|
-
label: 'GPT-5.4 Image 2',
|
|
7850
|
-
modalities: {
|
|
7851
|
-
input: ['image', 'text', 'pdf'],
|
|
7852
|
-
output: ['image', 'text'],
|
|
7853
|
-
},
|
|
7854
|
-
toolCall: false,
|
|
7855
|
-
reasoningText: true,
|
|
7856
|
-
attachment: true,
|
|
7857
|
-
temperature: false,
|
|
7858
|
-
releaseDate: '2026-04-21',
|
|
7859
|
-
lastUpdated: '2026-04-21',
|
|
7860
|
-
openWeights: false,
|
|
7861
|
-
cost: {
|
|
7862
|
-
input: 8,
|
|
7863
|
-
output: 15,
|
|
7864
|
-
cacheRead: 2,
|
|
7865
|
-
},
|
|
7866
|
-
limit: {
|
|
7867
|
-
context: 272000,
|
|
7868
|
-
output: 128000,
|
|
7869
|
-
},
|
|
7870
|
-
},
|
|
7871
6008
|
{
|
|
7872
6009
|
id: 'openai/gpt-5.4-mini',
|
|
7873
6010
|
ownedBy: 'openai',
|
|
@@ -8220,31 +6357,6 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
8220
6357
|
output: 100000,
|
|
8221
6358
|
},
|
|
8222
6359
|
},
|
|
8223
|
-
{
|
|
8224
|
-
id: 'openai/o1-pro',
|
|
8225
|
-
ownedBy: 'openai',
|
|
8226
|
-
label: 'o1-pro',
|
|
8227
|
-
modalities: {
|
|
8228
|
-
input: ['text', 'image', 'pdf'],
|
|
8229
|
-
output: ['text'],
|
|
8230
|
-
},
|
|
8231
|
-
toolCall: false,
|
|
8232
|
-
reasoningText: true,
|
|
8233
|
-
attachment: true,
|
|
8234
|
-
temperature: false,
|
|
8235
|
-
knowledge: '2023-09',
|
|
8236
|
-
releaseDate: '2025-03-19',
|
|
8237
|
-
lastUpdated: '2025-03-19',
|
|
8238
|
-
openWeights: false,
|
|
8239
|
-
cost: {
|
|
8240
|
-
input: 150,
|
|
8241
|
-
output: 600,
|
|
8242
|
-
},
|
|
8243
|
-
limit: {
|
|
8244
|
-
context: 200000,
|
|
8245
|
-
output: 100000,
|
|
8246
|
-
},
|
|
8247
|
-
},
|
|
8248
6360
|
{
|
|
8249
6361
|
id: 'openai/o3',
|
|
8250
6362
|
ownedBy: 'openai',
|
|
@@ -8442,247 +6554,52 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
8442
6554
|
releaseDate: '2025-04-16',
|
|
8443
6555
|
lastUpdated: '2025-04-16',
|
|
8444
6556
|
openWeights: false,
|
|
8445
|
-
cost: {
|
|
8446
|
-
input: 1.1,
|
|
8447
|
-
output: 4.4,
|
|
8448
|
-
cacheRead: 0.275,
|
|
8449
|
-
},
|
|
8450
|
-
limit: {
|
|
8451
|
-
context: 200000,
|
|
8452
|
-
output: 100000,
|
|
8453
|
-
},
|
|
8454
|
-
},
|
|
8455
|
-
{
|
|
8456
|
-
id: 'openrouter/auto',
|
|
8457
|
-
label: 'Auto Router',
|
|
8458
|
-
modalities: {
|
|
8459
|
-
input: ['text', 'image', 'audio', 'pdf', 'video'],
|
|
8460
|
-
output: ['text', 'image'],
|
|
8461
|
-
},
|
|
8462
|
-
toolCall: true,
|
|
8463
|
-
reasoningText: true,
|
|
8464
|
-
attachment: true,
|
|
8465
|
-
temperature: true,
|
|
8466
|
-
releaseDate: '2023-11-08',
|
|
8467
|
-
lastUpdated: '2023-11-08',
|
|
8468
|
-
openWeights: false,
|
|
8469
|
-
limit: {
|
|
8470
|
-
context: 2000000,
|
|
8471
|
-
output: 2000000,
|
|
8472
|
-
},
|
|
8473
|
-
},
|
|
8474
|
-
{
|
|
8475
|
-
id: 'openrouter/bodybuilder',
|
|
8476
|
-
label: 'Body Builder (beta)',
|
|
8477
|
-
modalities: {
|
|
8478
|
-
input: ['text'],
|
|
8479
|
-
output: ['text'],
|
|
8480
|
-
},
|
|
8481
|
-
toolCall: false,
|
|
8482
|
-
reasoningText: false,
|
|
8483
|
-
attachment: false,
|
|
8484
|
-
temperature: false,
|
|
8485
|
-
releaseDate: '2025-12-05',
|
|
8486
|
-
lastUpdated: '2025-12-05',
|
|
8487
|
-
openWeights: false,
|
|
8488
|
-
limit: {
|
|
8489
|
-
context: 128000,
|
|
8490
|
-
output: 128000,
|
|
8491
|
-
},
|
|
8492
|
-
},
|
|
8493
|
-
{
|
|
8494
|
-
id: 'openrouter/free',
|
|
8495
|
-
label: 'Free Models Router',
|
|
8496
|
-
modalities: {
|
|
8497
|
-
input: ['text', 'image'],
|
|
8498
|
-
output: ['text'],
|
|
8499
|
-
},
|
|
8500
|
-
toolCall: true,
|
|
8501
|
-
reasoningText: true,
|
|
8502
|
-
attachment: true,
|
|
8503
|
-
temperature: true,
|
|
8504
|
-
releaseDate: '2026-02-01',
|
|
8505
|
-
lastUpdated: '2026-02-01',
|
|
8506
|
-
openWeights: false,
|
|
8507
|
-
cost: {
|
|
8508
|
-
input: 0,
|
|
8509
|
-
output: 0,
|
|
8510
|
-
},
|
|
8511
|
-
limit: {
|
|
8512
|
-
context: 200000,
|
|
8513
|
-
output: 8000,
|
|
8514
|
-
},
|
|
8515
|
-
},
|
|
8516
|
-
{
|
|
8517
|
-
id: 'openrouter/fusion',
|
|
8518
|
-
label: 'Fusion',
|
|
8519
|
-
modalities: {
|
|
8520
|
-
input: ['text'],
|
|
8521
|
-
output: ['text'],
|
|
8522
|
-
},
|
|
8523
|
-
toolCall: false,
|
|
8524
|
-
reasoningText: false,
|
|
8525
|
-
attachment: false,
|
|
8526
|
-
temperature: false,
|
|
8527
|
-
releaseDate: '2026-05-12',
|
|
8528
|
-
lastUpdated: '2026-05-12',
|
|
8529
|
-
openWeights: false,
|
|
8530
|
-
limit: {
|
|
8531
|
-
context: 128000,
|
|
8532
|
-
output: 128000,
|
|
8533
|
-
},
|
|
8534
|
-
},
|
|
8535
|
-
{
|
|
8536
|
-
id: 'openrouter/owl-alpha',
|
|
8537
|
-
label: 'Owl Alpha',
|
|
8538
|
-
modalities: {
|
|
8539
|
-
input: ['text'],
|
|
8540
|
-
output: ['text'],
|
|
8541
|
-
},
|
|
8542
|
-
toolCall: true,
|
|
8543
|
-
reasoningText: false,
|
|
8544
|
-
attachment: false,
|
|
8545
|
-
temperature: true,
|
|
8546
|
-
releaseDate: '2026-04-28',
|
|
8547
|
-
lastUpdated: '2026-04-28',
|
|
8548
|
-
openWeights: false,
|
|
8549
|
-
cost: {
|
|
8550
|
-
input: 0,
|
|
8551
|
-
output: 0,
|
|
8552
|
-
},
|
|
8553
|
-
limit: {
|
|
8554
|
-
context: 1048756,
|
|
8555
|
-
output: 262144,
|
|
8556
|
-
},
|
|
8557
|
-
},
|
|
8558
|
-
{
|
|
8559
|
-
id: 'openrouter/pareto-code',
|
|
8560
|
-
label: 'Pareto Code Router',
|
|
8561
|
-
modalities: {
|
|
8562
|
-
input: ['text'],
|
|
8563
|
-
output: ['text'],
|
|
8564
|
-
},
|
|
8565
|
-
toolCall: false,
|
|
8566
|
-
reasoningText: false,
|
|
8567
|
-
attachment: false,
|
|
8568
|
-
temperature: false,
|
|
8569
|
-
releaseDate: '2026-04-21',
|
|
8570
|
-
lastUpdated: '2026-04-21',
|
|
8571
|
-
openWeights: false,
|
|
8572
|
-
limit: {
|
|
8573
|
-
context: 2000000,
|
|
8574
|
-
output: 200000,
|
|
8575
|
-
},
|
|
8576
|
-
},
|
|
8577
|
-
{
|
|
8578
|
-
id: 'perceptron/perceptron-mk1',
|
|
8579
|
-
label: 'Perceptron Mk1',
|
|
8580
|
-
modalities: {
|
|
8581
|
-
input: ['text', 'image', 'video'],
|
|
8582
|
-
output: ['text'],
|
|
8583
|
-
},
|
|
8584
|
-
toolCall: false,
|
|
8585
|
-
reasoningText: true,
|
|
8586
|
-
attachment: true,
|
|
8587
|
-
temperature: true,
|
|
8588
|
-
releaseDate: '2026-05-12',
|
|
8589
|
-
lastUpdated: '2026-05-12',
|
|
8590
|
-
openWeights: false,
|
|
8591
|
-
cost: {
|
|
8592
|
-
input: 0.15,
|
|
8593
|
-
output: 1.5,
|
|
8594
|
-
},
|
|
8595
|
-
limit: {
|
|
8596
|
-
context: 32768,
|
|
8597
|
-
output: 8192,
|
|
8598
|
-
},
|
|
8599
|
-
},
|
|
8600
|
-
{
|
|
8601
|
-
id: 'perplexity/sonar',
|
|
8602
|
-
label: 'Sonar',
|
|
8603
|
-
modalities: {
|
|
8604
|
-
input: ['text', 'image'],
|
|
8605
|
-
output: ['text'],
|
|
8606
|
-
},
|
|
8607
|
-
toolCall: false,
|
|
8608
|
-
reasoningText: false,
|
|
8609
|
-
attachment: true,
|
|
8610
|
-
temperature: true,
|
|
8611
|
-
releaseDate: '2025-01-27',
|
|
8612
|
-
lastUpdated: '2025-01-27',
|
|
8613
|
-
openWeights: false,
|
|
8614
|
-
cost: {
|
|
8615
|
-
input: 1,
|
|
8616
|
-
output: 1,
|
|
8617
|
-
},
|
|
8618
|
-
limit: {
|
|
8619
|
-
context: 127072,
|
|
8620
|
-
output: 127072,
|
|
8621
|
-
},
|
|
8622
|
-
},
|
|
8623
|
-
{
|
|
8624
|
-
id: 'perplexity/sonar-deep-research',
|
|
8625
|
-
label: 'Sonar Deep Research',
|
|
8626
|
-
modalities: {
|
|
8627
|
-
input: ['text'],
|
|
8628
|
-
output: ['text'],
|
|
8629
|
-
},
|
|
8630
|
-
toolCall: false,
|
|
8631
|
-
reasoningText: true,
|
|
8632
|
-
attachment: false,
|
|
8633
|
-
temperature: true,
|
|
8634
|
-
releaseDate: '2025-03-07',
|
|
8635
|
-
lastUpdated: '2025-03-07',
|
|
8636
|
-
openWeights: false,
|
|
8637
|
-
cost: {
|
|
8638
|
-
input: 2,
|
|
8639
|
-
output: 8,
|
|
6557
|
+
cost: {
|
|
6558
|
+
input: 1.1,
|
|
6559
|
+
output: 4.4,
|
|
6560
|
+
cacheRead: 0.275,
|
|
8640
6561
|
},
|
|
8641
6562
|
limit: {
|
|
8642
|
-
context:
|
|
8643
|
-
output:
|
|
6563
|
+
context: 200000,
|
|
6564
|
+
output: 100000,
|
|
8644
6565
|
},
|
|
8645
6566
|
},
|
|
8646
6567
|
{
|
|
8647
|
-
id: '
|
|
8648
|
-
label: '
|
|
6568
|
+
id: 'openrouter/auto',
|
|
6569
|
+
label: 'Auto Router',
|
|
8649
6570
|
modalities: {
|
|
8650
|
-
input: ['text', 'image'],
|
|
8651
|
-
output: ['text'],
|
|
6571
|
+
input: ['text', 'image', 'audio', 'pdf', 'video'],
|
|
6572
|
+
output: ['text', 'image'],
|
|
8652
6573
|
},
|
|
8653
|
-
toolCall:
|
|
8654
|
-
reasoningText:
|
|
6574
|
+
toolCall: true,
|
|
6575
|
+
reasoningText: true,
|
|
8655
6576
|
attachment: true,
|
|
8656
6577
|
temperature: true,
|
|
8657
|
-
releaseDate: '
|
|
8658
|
-
lastUpdated: '
|
|
6578
|
+
releaseDate: '2023-11-08',
|
|
6579
|
+
lastUpdated: '2023-11-08',
|
|
8659
6580
|
openWeights: false,
|
|
8660
|
-
cost: {
|
|
8661
|
-
input: 3,
|
|
8662
|
-
output: 15,
|
|
8663
|
-
},
|
|
8664
6581
|
limit: {
|
|
8665
|
-
context:
|
|
8666
|
-
output:
|
|
6582
|
+
context: 2000000,
|
|
6583
|
+
output: 2000000,
|
|
8667
6584
|
},
|
|
8668
6585
|
},
|
|
8669
6586
|
{
|
|
8670
|
-
id: '
|
|
8671
|
-
label: '
|
|
6587
|
+
id: 'openrouter/free',
|
|
6588
|
+
label: 'Free Models Router',
|
|
8672
6589
|
modalities: {
|
|
8673
6590
|
input: ['text', 'image'],
|
|
8674
6591
|
output: ['text'],
|
|
8675
6592
|
},
|
|
8676
|
-
toolCall:
|
|
6593
|
+
toolCall: true,
|
|
8677
6594
|
reasoningText: true,
|
|
8678
6595
|
attachment: true,
|
|
8679
6596
|
temperature: true,
|
|
8680
|
-
releaseDate: '
|
|
8681
|
-
lastUpdated: '
|
|
6597
|
+
releaseDate: '2026-02-01',
|
|
6598
|
+
lastUpdated: '2026-02-01',
|
|
8682
6599
|
openWeights: false,
|
|
8683
6600
|
cost: {
|
|
8684
|
-
input:
|
|
8685
|
-
output:
|
|
6601
|
+
input: 0,
|
|
6602
|
+
output: 0,
|
|
8686
6603
|
},
|
|
8687
6604
|
limit: {
|
|
8688
6605
|
context: 200000,
|
|
@@ -8690,26 +6607,26 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
8690
6607
|
},
|
|
8691
6608
|
},
|
|
8692
6609
|
{
|
|
8693
|
-
id: '
|
|
8694
|
-
label: '
|
|
6610
|
+
id: 'openrouter/owl-alpha',
|
|
6611
|
+
label: 'Owl Alpha',
|
|
8695
6612
|
modalities: {
|
|
8696
|
-
input: ['text'
|
|
6613
|
+
input: ['text'],
|
|
8697
6614
|
output: ['text'],
|
|
8698
6615
|
},
|
|
8699
|
-
toolCall:
|
|
8700
|
-
reasoningText:
|
|
8701
|
-
attachment:
|
|
6616
|
+
toolCall: true,
|
|
6617
|
+
reasoningText: false,
|
|
6618
|
+
attachment: false,
|
|
8702
6619
|
temperature: true,
|
|
8703
|
-
releaseDate: '
|
|
8704
|
-
lastUpdated: '
|
|
6620
|
+
releaseDate: '2026-04-28',
|
|
6621
|
+
lastUpdated: '2026-04-28',
|
|
8705
6622
|
openWeights: false,
|
|
8706
6623
|
cost: {
|
|
8707
|
-
input:
|
|
8708
|
-
output:
|
|
6624
|
+
input: 0,
|
|
6625
|
+
output: 0,
|
|
8709
6626
|
},
|
|
8710
6627
|
limit: {
|
|
8711
|
-
context:
|
|
8712
|
-
output:
|
|
6628
|
+
context: 1048756,
|
|
6629
|
+
output: 262144,
|
|
8713
6630
|
},
|
|
8714
6631
|
},
|
|
8715
6632
|
{
|
|
@@ -8807,54 +6724,6 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
8807
6724
|
output: 16384,
|
|
8808
6725
|
},
|
|
8809
6726
|
},
|
|
8810
|
-
{
|
|
8811
|
-
id: 'qwen/qwen-2.5-7b-instruct',
|
|
8812
|
-
label: 'Qwen2.5 7B Instruct',
|
|
8813
|
-
modalities: {
|
|
8814
|
-
input: ['text'],
|
|
8815
|
-
output: ['text'],
|
|
8816
|
-
},
|
|
8817
|
-
toolCall: false,
|
|
8818
|
-
reasoningText: false,
|
|
8819
|
-
attachment: false,
|
|
8820
|
-
temperature: true,
|
|
8821
|
-
knowledge: '2024-06-30',
|
|
8822
|
-
releaseDate: '2024-10-16',
|
|
8823
|
-
lastUpdated: '2024-10-16',
|
|
8824
|
-
openWeights: true,
|
|
8825
|
-
cost: {
|
|
8826
|
-
input: 0.04,
|
|
8827
|
-
output: 0.1,
|
|
8828
|
-
},
|
|
8829
|
-
limit: {
|
|
8830
|
-
context: 32768,
|
|
8831
|
-
output: 32768,
|
|
8832
|
-
},
|
|
8833
|
-
},
|
|
8834
|
-
{
|
|
8835
|
-
id: 'qwen/qwen-2.5-coder-32b-instruct',
|
|
8836
|
-
label: 'Qwen2.5 Coder 32B Instruct',
|
|
8837
|
-
modalities: {
|
|
8838
|
-
input: ['text'],
|
|
8839
|
-
output: ['text'],
|
|
8840
|
-
},
|
|
8841
|
-
toolCall: false,
|
|
8842
|
-
reasoningText: false,
|
|
8843
|
-
attachment: false,
|
|
8844
|
-
temperature: true,
|
|
8845
|
-
knowledge: '2024-06-30',
|
|
8846
|
-
releaseDate: '2024-11-11',
|
|
8847
|
-
lastUpdated: '2024-11-11',
|
|
8848
|
-
openWeights: true,
|
|
8849
|
-
cost: {
|
|
8850
|
-
input: 0.66,
|
|
8851
|
-
output: 1,
|
|
8852
|
-
},
|
|
8853
|
-
limit: {
|
|
8854
|
-
context: 32768,
|
|
8855
|
-
output: 32768,
|
|
8856
|
-
},
|
|
8857
|
-
},
|
|
8858
6727
|
{
|
|
8859
6728
|
id: 'qwen/qwen-plus',
|
|
8860
6729
|
label: 'Qwen-Plus',
|
|
@@ -8930,30 +6799,6 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
8930
6799
|
output: 32768,
|
|
8931
6800
|
},
|
|
8932
6801
|
},
|
|
8933
|
-
{
|
|
8934
|
-
id: 'qwen/qwen2.5-vl-72b-instruct',
|
|
8935
|
-
label: 'Qwen2.5 VL 72B Instruct',
|
|
8936
|
-
modalities: {
|
|
8937
|
-
input: ['text', 'image'],
|
|
8938
|
-
output: ['text'],
|
|
8939
|
-
},
|
|
8940
|
-
toolCall: false,
|
|
8941
|
-
reasoningText: false,
|
|
8942
|
-
attachment: true,
|
|
8943
|
-
temperature: true,
|
|
8944
|
-
knowledge: '2024-06-30',
|
|
8945
|
-
releaseDate: '2025-02-01',
|
|
8946
|
-
lastUpdated: '2025-02-01',
|
|
8947
|
-
openWeights: true,
|
|
8948
|
-
cost: {
|
|
8949
|
-
input: 0.25,
|
|
8950
|
-
output: 0.75,
|
|
8951
|
-
},
|
|
8952
|
-
limit: {
|
|
8953
|
-
context: 32000,
|
|
8954
|
-
output: 8192,
|
|
8955
|
-
},
|
|
8956
|
-
},
|
|
8957
6802
|
{
|
|
8958
6803
|
id: 'qwen/qwen3-14b',
|
|
8959
6804
|
label: 'Qwen3 14B',
|
|
@@ -9091,8 +6936,8 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
9091
6936
|
lastUpdated: '2025-07-29',
|
|
9092
6937
|
openWeights: true,
|
|
9093
6938
|
cost: {
|
|
9094
|
-
input: 0.
|
|
9095
|
-
output: 0.
|
|
6939
|
+
input: 0.04815,
|
|
6940
|
+
output: 0.19305,
|
|
9096
6941
|
},
|
|
9097
6942
|
limit: {
|
|
9098
6943
|
context: 128000,
|
|
@@ -9988,53 +7833,6 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
9988
7833
|
output: 16384,
|
|
9989
7834
|
},
|
|
9990
7835
|
},
|
|
9991
|
-
{
|
|
9992
|
-
id: 'rekaai/reka-flash-3',
|
|
9993
|
-
label: 'Reka Flash 3',
|
|
9994
|
-
modalities: {
|
|
9995
|
-
input: ['text'],
|
|
9996
|
-
output: ['text'],
|
|
9997
|
-
},
|
|
9998
|
-
toolCall: false,
|
|
9999
|
-
reasoningText: true,
|
|
10000
|
-
attachment: false,
|
|
10001
|
-
temperature: true,
|
|
10002
|
-
knowledge: '2025-01-31',
|
|
10003
|
-
releaseDate: '2025-03-12',
|
|
10004
|
-
lastUpdated: '2025-03-12',
|
|
10005
|
-
openWeights: true,
|
|
10006
|
-
cost: {
|
|
10007
|
-
input: 0.1,
|
|
10008
|
-
output: 0.2,
|
|
10009
|
-
},
|
|
10010
|
-
limit: {
|
|
10011
|
-
context: 65536,
|
|
10012
|
-
output: 65536,
|
|
10013
|
-
},
|
|
10014
|
-
},
|
|
10015
|
-
{
|
|
10016
|
-
id: 'relace/relace-apply-3',
|
|
10017
|
-
label: 'Relace Apply 3',
|
|
10018
|
-
modalities: {
|
|
10019
|
-
input: ['text'],
|
|
10020
|
-
output: ['text'],
|
|
10021
|
-
},
|
|
10022
|
-
toolCall: false,
|
|
10023
|
-
reasoningText: false,
|
|
10024
|
-
attachment: false,
|
|
10025
|
-
temperature: false,
|
|
10026
|
-
releaseDate: '2025-09-26',
|
|
10027
|
-
lastUpdated: '2025-09-26',
|
|
10028
|
-
openWeights: false,
|
|
10029
|
-
cost: {
|
|
10030
|
-
input: 0.85,
|
|
10031
|
-
output: 1.25,
|
|
10032
|
-
},
|
|
10033
|
-
limit: {
|
|
10034
|
-
context: 256000,
|
|
10035
|
-
output: 128000,
|
|
10036
|
-
},
|
|
10037
|
-
},
|
|
10038
7836
|
{
|
|
10039
7837
|
id: 'relace/relace-search',
|
|
10040
7838
|
label: 'Relace Search',
|
|
@@ -10082,54 +7880,6 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
10082
7880
|
output: 8192,
|
|
10083
7881
|
},
|
|
10084
7882
|
},
|
|
10085
|
-
{
|
|
10086
|
-
id: 'sao10k/l3-lunaris-8b',
|
|
10087
|
-
label: 'Llama 3 8B Lunaris',
|
|
10088
|
-
modalities: {
|
|
10089
|
-
input: ['text'],
|
|
10090
|
-
output: ['text'],
|
|
10091
|
-
},
|
|
10092
|
-
toolCall: false,
|
|
10093
|
-
reasoningText: false,
|
|
10094
|
-
attachment: false,
|
|
10095
|
-
temperature: true,
|
|
10096
|
-
knowledge: '2023-12-31',
|
|
10097
|
-
releaseDate: '2024-08-13',
|
|
10098
|
-
lastUpdated: '2024-08-13',
|
|
10099
|
-
openWeights: true,
|
|
10100
|
-
cost: {
|
|
10101
|
-
input: 0.04,
|
|
10102
|
-
output: 0.05,
|
|
10103
|
-
},
|
|
10104
|
-
limit: {
|
|
10105
|
-
context: 8192,
|
|
10106
|
-
output: 16384,
|
|
10107
|
-
},
|
|
10108
|
-
},
|
|
10109
|
-
{
|
|
10110
|
-
id: 'sao10k/l3.1-70b-hanami-x1',
|
|
10111
|
-
label: 'Llama 3.1 70B Hanami x1',
|
|
10112
|
-
modalities: {
|
|
10113
|
-
input: ['text'],
|
|
10114
|
-
output: ['text'],
|
|
10115
|
-
},
|
|
10116
|
-
toolCall: false,
|
|
10117
|
-
reasoningText: false,
|
|
10118
|
-
attachment: false,
|
|
10119
|
-
temperature: true,
|
|
10120
|
-
knowledge: '2023-12-31',
|
|
10121
|
-
releaseDate: '2025-01-08',
|
|
10122
|
-
lastUpdated: '2025-01-08',
|
|
10123
|
-
openWeights: true,
|
|
10124
|
-
cost: {
|
|
10125
|
-
input: 3,
|
|
10126
|
-
output: 3,
|
|
10127
|
-
},
|
|
10128
|
-
limit: {
|
|
10129
|
-
context: 16000,
|
|
10130
|
-
output: 16000,
|
|
10131
|
-
},
|
|
10132
|
-
},
|
|
10133
7883
|
{
|
|
10134
7884
|
id: 'sao10k/l3.1-euryale-70b',
|
|
10135
7885
|
label: 'Llama 3.1 Euryale 70B v2.2',
|
|
@@ -10154,30 +7904,6 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
10154
7904
|
output: 16384,
|
|
10155
7905
|
},
|
|
10156
7906
|
},
|
|
10157
|
-
{
|
|
10158
|
-
id: 'sao10k/l3.3-euryale-70b',
|
|
10159
|
-
label: 'Llama 3.3 Euryale 70B',
|
|
10160
|
-
modalities: {
|
|
10161
|
-
input: ['text'],
|
|
10162
|
-
output: ['text'],
|
|
10163
|
-
},
|
|
10164
|
-
toolCall: false,
|
|
10165
|
-
reasoningText: false,
|
|
10166
|
-
attachment: false,
|
|
10167
|
-
temperature: true,
|
|
10168
|
-
knowledge: '2023-12-31',
|
|
10169
|
-
releaseDate: '2024-12-18',
|
|
10170
|
-
lastUpdated: '2024-12-18',
|
|
10171
|
-
openWeights: true,
|
|
10172
|
-
cost: {
|
|
10173
|
-
input: 0.65,
|
|
10174
|
-
output: 0.75,
|
|
10175
|
-
},
|
|
10176
|
-
limit: {
|
|
10177
|
-
context: 131072,
|
|
10178
|
-
output: 16384,
|
|
10179
|
-
},
|
|
10180
|
-
},
|
|
10181
7907
|
{
|
|
10182
7908
|
id: 'stepfun/step-3.5-flash',
|
|
10183
7909
|
label: 'Step 3.5 Flash',
|
|
@@ -10192,86 +7918,39 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
10192
7918
|
knowledge: '2025-01',
|
|
10193
7919
|
releaseDate: '2026-01-29',
|
|
10194
7920
|
lastUpdated: '2026-01-29',
|
|
10195
|
-
openWeights: true,
|
|
10196
|
-
cost: {
|
|
10197
|
-
input: 0.09,
|
|
10198
|
-
output: 0.3,
|
|
10199
|
-
cacheRead: 0.02,
|
|
10200
|
-
},
|
|
10201
|
-
limit: {
|
|
10202
|
-
context: 262144,
|
|
10203
|
-
output: 16384,
|
|
10204
|
-
},
|
|
10205
|
-
},
|
|
10206
|
-
{
|
|
10207
|
-
id: 'stepfun/step-3.7-flash',
|
|
10208
|
-
label: 'Step 3.7 Flash',
|
|
10209
|
-
modalities: {
|
|
10210
|
-
input: ['text', 'image', 'video'],
|
|
10211
|
-
output: ['text'],
|
|
10212
|
-
},
|
|
10213
|
-
toolCall: true,
|
|
10214
|
-
reasoningText: true,
|
|
10215
|
-
attachment: true,
|
|
10216
|
-
temperature: true,
|
|
10217
|
-
releaseDate: '2026-05-28',
|
|
10218
|
-
lastUpdated: '2026-05-28',
|
|
10219
|
-
openWeights: false,
|
|
10220
|
-
cost: {
|
|
10221
|
-
input: 0.2,
|
|
10222
|
-
output: 1.15,
|
|
10223
|
-
cacheRead: 0.04,
|
|
10224
|
-
},
|
|
10225
|
-
limit: {
|
|
10226
|
-
context: 256000,
|
|
10227
|
-
output: 256000,
|
|
10228
|
-
},
|
|
10229
|
-
},
|
|
10230
|
-
{
|
|
10231
|
-
id: 'switchpoint/router',
|
|
10232
|
-
label: 'Switchpoint Router',
|
|
10233
|
-
modalities: {
|
|
10234
|
-
input: ['text'],
|
|
10235
|
-
output: ['text'],
|
|
10236
|
-
},
|
|
10237
|
-
toolCall: false,
|
|
10238
|
-
reasoningText: true,
|
|
10239
|
-
attachment: false,
|
|
10240
|
-
temperature: true,
|
|
10241
|
-
releaseDate: '2025-07-11',
|
|
10242
|
-
lastUpdated: '2025-07-11',
|
|
10243
|
-
openWeights: false,
|
|
7921
|
+
openWeights: true,
|
|
10244
7922
|
cost: {
|
|
10245
|
-
input: 0.
|
|
10246
|
-
output: 3
|
|
7923
|
+
input: 0.09,
|
|
7924
|
+
output: 0.3,
|
|
7925
|
+
cacheRead: 0.02,
|
|
10247
7926
|
},
|
|
10248
7927
|
limit: {
|
|
10249
|
-
context:
|
|
10250
|
-
output:
|
|
7928
|
+
context: 262144,
|
|
7929
|
+
output: 16384,
|
|
10251
7930
|
},
|
|
10252
7931
|
},
|
|
10253
7932
|
{
|
|
10254
|
-
id: '
|
|
10255
|
-
label: '
|
|
7933
|
+
id: 'stepfun/step-3.7-flash',
|
|
7934
|
+
label: 'Step 3.7 Flash',
|
|
10256
7935
|
modalities: {
|
|
10257
|
-
input: ['text'],
|
|
7936
|
+
input: ['text', 'image', 'video'],
|
|
10258
7937
|
output: ['text'],
|
|
10259
7938
|
},
|
|
10260
|
-
toolCall:
|
|
7939
|
+
toolCall: true,
|
|
10261
7940
|
reasoningText: true,
|
|
10262
|
-
attachment:
|
|
7941
|
+
attachment: true,
|
|
10263
7942
|
temperature: true,
|
|
10264
|
-
|
|
10265
|
-
|
|
10266
|
-
|
|
10267
|
-
openWeights: true,
|
|
7943
|
+
releaseDate: '2026-05-28',
|
|
7944
|
+
lastUpdated: '2026-05-28',
|
|
7945
|
+
openWeights: false,
|
|
10268
7946
|
cost: {
|
|
10269
|
-
input: 0.
|
|
10270
|
-
output:
|
|
7947
|
+
input: 0.2,
|
|
7948
|
+
output: 1.15,
|
|
7949
|
+
cacheRead: 0.04,
|
|
10271
7950
|
},
|
|
10272
7951
|
limit: {
|
|
10273
|
-
context:
|
|
10274
|
-
output:
|
|
7952
|
+
context: 256000,
|
|
7953
|
+
output: 256000,
|
|
10275
7954
|
},
|
|
10276
7955
|
},
|
|
10277
7956
|
{
|
|
@@ -10298,31 +7977,6 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
10298
7977
|
output: 262144,
|
|
10299
7978
|
},
|
|
10300
7979
|
},
|
|
10301
|
-
{
|
|
10302
|
-
id: 'thedrummer/cydonia-24b-v4.1',
|
|
10303
|
-
label: 'Cydonia 24B V4.1',
|
|
10304
|
-
modalities: {
|
|
10305
|
-
input: ['text'],
|
|
10306
|
-
output: ['text'],
|
|
10307
|
-
},
|
|
10308
|
-
toolCall: false,
|
|
10309
|
-
reasoningText: false,
|
|
10310
|
-
attachment: false,
|
|
10311
|
-
temperature: true,
|
|
10312
|
-
knowledge: '2024-04-30',
|
|
10313
|
-
releaseDate: '2025-09-27',
|
|
10314
|
-
lastUpdated: '2025-09-27',
|
|
10315
|
-
openWeights: true,
|
|
10316
|
-
cost: {
|
|
10317
|
-
input: 0.3,
|
|
10318
|
-
output: 0.5,
|
|
10319
|
-
cacheRead: 0.15,
|
|
10320
|
-
},
|
|
10321
|
-
limit: {
|
|
10322
|
-
context: 131072,
|
|
10323
|
-
output: 131072,
|
|
10324
|
-
},
|
|
10325
|
-
},
|
|
10326
7980
|
{
|
|
10327
7981
|
id: 'thedrummer/rocinante-12b',
|
|
10328
7982
|
label: 'Rocinante 12B',
|
|
@@ -10347,31 +8001,6 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
10347
8001
|
output: 32768,
|
|
10348
8002
|
},
|
|
10349
8003
|
},
|
|
10350
|
-
{
|
|
10351
|
-
id: 'thedrummer/skyfall-36b-v2',
|
|
10352
|
-
label: 'Skyfall 36B V2',
|
|
10353
|
-
modalities: {
|
|
10354
|
-
input: ['text'],
|
|
10355
|
-
output: ['text'],
|
|
10356
|
-
},
|
|
10357
|
-
toolCall: false,
|
|
10358
|
-
reasoningText: false,
|
|
10359
|
-
attachment: false,
|
|
10360
|
-
temperature: true,
|
|
10361
|
-
knowledge: '2024-06-30',
|
|
10362
|
-
releaseDate: '2025-03-10',
|
|
10363
|
-
lastUpdated: '2025-03-10',
|
|
10364
|
-
openWeights: true,
|
|
10365
|
-
cost: {
|
|
10366
|
-
input: 0.55,
|
|
10367
|
-
output: 0.8,
|
|
10368
|
-
cacheRead: 0.25,
|
|
10369
|
-
},
|
|
10370
|
-
limit: {
|
|
10371
|
-
context: 32768,
|
|
10372
|
-
output: 32768,
|
|
10373
|
-
},
|
|
10374
|
-
},
|
|
10375
8004
|
{
|
|
10376
8005
|
id: 'thedrummer/unslopnemo-12b',
|
|
10377
8006
|
label: 'UnslopNemo 12B',
|
|
@@ -10396,30 +8025,6 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
10396
8025
|
output: 32768,
|
|
10397
8026
|
},
|
|
10398
8027
|
},
|
|
10399
|
-
{
|
|
10400
|
-
id: 'undi95/remm-slerp-l2-13b',
|
|
10401
|
-
label: 'ReMM SLERP 13B',
|
|
10402
|
-
modalities: {
|
|
10403
|
-
input: ['text'],
|
|
10404
|
-
output: ['text'],
|
|
10405
|
-
},
|
|
10406
|
-
toolCall: false,
|
|
10407
|
-
reasoningText: false,
|
|
10408
|
-
attachment: false,
|
|
10409
|
-
temperature: true,
|
|
10410
|
-
knowledge: '2023-06-30',
|
|
10411
|
-
releaseDate: '2023-07-22',
|
|
10412
|
-
lastUpdated: '2023-07-22',
|
|
10413
|
-
openWeights: true,
|
|
10414
|
-
cost: {
|
|
10415
|
-
input: 0.45,
|
|
10416
|
-
output: 0.65,
|
|
10417
|
-
},
|
|
10418
|
-
limit: {
|
|
10419
|
-
context: 6144,
|
|
10420
|
-
output: 4096,
|
|
10421
|
-
},
|
|
10422
|
-
},
|
|
10423
8028
|
{
|
|
10424
8029
|
id: 'upstage/solar-pro-3',
|
|
10425
8030
|
label: 'Solar Pro 3',
|
|
@@ -10444,29 +8049,6 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
10444
8049
|
output: 128000,
|
|
10445
8050
|
},
|
|
10446
8051
|
},
|
|
10447
|
-
{
|
|
10448
|
-
id: 'writer/palmyra-x5',
|
|
10449
|
-
label: 'Palmyra X5',
|
|
10450
|
-
modalities: {
|
|
10451
|
-
input: ['text'],
|
|
10452
|
-
output: ['text'],
|
|
10453
|
-
},
|
|
10454
|
-
toolCall: false,
|
|
10455
|
-
reasoningText: false,
|
|
10456
|
-
attachment: false,
|
|
10457
|
-
temperature: true,
|
|
10458
|
-
releaseDate: '2026-01-21',
|
|
10459
|
-
lastUpdated: '2026-01-21',
|
|
10460
|
-
openWeights: false,
|
|
10461
|
-
cost: {
|
|
10462
|
-
input: 0.6,
|
|
10463
|
-
output: 6,
|
|
10464
|
-
},
|
|
10465
|
-
limit: {
|
|
10466
|
-
context: 1040000,
|
|
10467
|
-
output: 8192,
|
|
10468
|
-
},
|
|
10469
|
-
},
|
|
10470
8052
|
{
|
|
10471
8053
|
id: 'x-ai/grok-4.20',
|
|
10472
8054
|
ownedBy: 'xai',
|
|
@@ -10493,32 +8075,6 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
10493
8075
|
output: 2000000,
|
|
10494
8076
|
},
|
|
10495
8077
|
},
|
|
10496
|
-
{
|
|
10497
|
-
id: 'x-ai/grok-4.20-multi-agent',
|
|
10498
|
-
ownedBy: 'xai',
|
|
10499
|
-
label: 'Grok 4.20 Multi-Agent',
|
|
10500
|
-
modalities: {
|
|
10501
|
-
input: ['text', 'image', 'pdf'],
|
|
10502
|
-
output: ['text'],
|
|
10503
|
-
},
|
|
10504
|
-
toolCall: false,
|
|
10505
|
-
reasoningText: true,
|
|
10506
|
-
attachment: true,
|
|
10507
|
-
temperature: true,
|
|
10508
|
-
knowledge: '2025-09-01',
|
|
10509
|
-
releaseDate: '2026-03-31',
|
|
10510
|
-
lastUpdated: '2026-03-31',
|
|
10511
|
-
openWeights: false,
|
|
10512
|
-
cost: {
|
|
10513
|
-
input: 2,
|
|
10514
|
-
output: 6,
|
|
10515
|
-
cacheRead: 0.2,
|
|
10516
|
-
},
|
|
10517
|
-
limit: {
|
|
10518
|
-
context: 2000000,
|
|
10519
|
-
output: 2000000,
|
|
10520
|
-
},
|
|
10521
|
-
},
|
|
10522
8078
|
{
|
|
10523
8079
|
id: 'x-ai/grok-4.3',
|
|
10524
8080
|
ownedBy: 'xai',
|
|
@@ -10940,7 +8496,7 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
10940
8496
|
temperature: true,
|
|
10941
8497
|
releaseDate: '2026-03-27',
|
|
10942
8498
|
lastUpdated: '2026-03-27',
|
|
10943
|
-
openWeights:
|
|
8499
|
+
openWeights: true,
|
|
10944
8500
|
cost: {
|
|
10945
8501
|
input: 0.98,
|
|
10946
8502
|
output: 3.08,
|
|
@@ -12646,6 +10202,31 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
12646
10202
|
output: 128000,
|
|
12647
10203
|
},
|
|
12648
10204
|
},
|
|
10205
|
+
{
|
|
10206
|
+
id: 'nemotron-3-ultra-free',
|
|
10207
|
+
label: 'Nemotron 3 Ultra Free',
|
|
10208
|
+
modalities: {
|
|
10209
|
+
input: ['text'],
|
|
10210
|
+
output: ['text'],
|
|
10211
|
+
},
|
|
10212
|
+
toolCall: true,
|
|
10213
|
+
reasoningText: true,
|
|
10214
|
+
attachment: false,
|
|
10215
|
+
temperature: true,
|
|
10216
|
+
knowledge: '2026-02',
|
|
10217
|
+
releaseDate: '2026-06-04',
|
|
10218
|
+
lastUpdated: '2026-06-04',
|
|
10219
|
+
openWeights: true,
|
|
10220
|
+
cost: {
|
|
10221
|
+
input: 0,
|
|
10222
|
+
output: 0,
|
|
10223
|
+
cacheRead: 0,
|
|
10224
|
+
},
|
|
10225
|
+
limit: {
|
|
10226
|
+
context: 1000000,
|
|
10227
|
+
output: 128000,
|
|
10228
|
+
},
|
|
10229
|
+
},
|
|
12649
10230
|
{
|
|
12650
10231
|
id: 'qwen3-coder',
|
|
12651
10232
|
label: 'Qwen3 Coder',
|
|
@@ -12864,31 +10445,6 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
12864
10445
|
output: 30000,
|
|
12865
10446
|
},
|
|
12866
10447
|
},
|
|
12867
|
-
{
|
|
12868
|
-
id: 'grok-4.20-multi-agent-0309',
|
|
12869
|
-
ownedBy: 'xai',
|
|
12870
|
-
label: 'Grok 4.20 Multi-Agent',
|
|
12871
|
-
modalities: {
|
|
12872
|
-
input: ['text', 'image', 'pdf'],
|
|
12873
|
-
output: ['text'],
|
|
12874
|
-
},
|
|
12875
|
-
toolCall: false,
|
|
12876
|
-
reasoningText: true,
|
|
12877
|
-
attachment: true,
|
|
12878
|
-
temperature: true,
|
|
12879
|
-
releaseDate: '2026-03-09',
|
|
12880
|
-
lastUpdated: '2026-03-09',
|
|
12881
|
-
openWeights: false,
|
|
12882
|
-
cost: {
|
|
12883
|
-
input: 1.25,
|
|
12884
|
-
output: 2.5,
|
|
12885
|
-
cacheRead: 0.2,
|
|
12886
|
-
},
|
|
12887
|
-
limit: {
|
|
12888
|
-
context: 2000000,
|
|
12889
|
-
output: 30000,
|
|
12890
|
-
},
|
|
12891
|
-
},
|
|
12892
10448
|
{
|
|
12893
10449
|
id: 'grok-4.3',
|
|
12894
10450
|
ownedBy: 'xai',
|
|
@@ -12939,66 +10495,6 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
12939
10495
|
output: 256000,
|
|
12940
10496
|
},
|
|
12941
10497
|
},
|
|
12942
|
-
{
|
|
12943
|
-
id: 'grok-imagine-image',
|
|
12944
|
-
ownedBy: 'xai',
|
|
12945
|
-
label: 'Grok Imagine Image',
|
|
12946
|
-
modalities: {
|
|
12947
|
-
input: ['text', 'image', 'pdf'],
|
|
12948
|
-
output: ['image', 'pdf'],
|
|
12949
|
-
},
|
|
12950
|
-
toolCall: false,
|
|
12951
|
-
reasoningText: false,
|
|
12952
|
-
attachment: true,
|
|
12953
|
-
temperature: false,
|
|
12954
|
-
releaseDate: '2026-01-28',
|
|
12955
|
-
lastUpdated: '2026-01-28',
|
|
12956
|
-
openWeights: false,
|
|
12957
|
-
limit: {
|
|
12958
|
-
context: 8000,
|
|
12959
|
-
output: 0,
|
|
12960
|
-
},
|
|
12961
|
-
},
|
|
12962
|
-
{
|
|
12963
|
-
id: 'grok-imagine-image-quality',
|
|
12964
|
-
ownedBy: 'xai',
|
|
12965
|
-
label: 'Grok Imagine Image Quality',
|
|
12966
|
-
modalities: {
|
|
12967
|
-
input: ['text', 'image', 'pdf'],
|
|
12968
|
-
output: ['image', 'pdf'],
|
|
12969
|
-
},
|
|
12970
|
-
toolCall: false,
|
|
12971
|
-
reasoningText: false,
|
|
12972
|
-
attachment: true,
|
|
12973
|
-
temperature: false,
|
|
12974
|
-
releaseDate: '2026-04-03',
|
|
12975
|
-
lastUpdated: '2026-04-03',
|
|
12976
|
-
openWeights: false,
|
|
12977
|
-
limit: {
|
|
12978
|
-
context: 8000,
|
|
12979
|
-
output: 0,
|
|
12980
|
-
},
|
|
12981
|
-
},
|
|
12982
|
-
{
|
|
12983
|
-
id: 'grok-imagine-video',
|
|
12984
|
-
ownedBy: 'xai',
|
|
12985
|
-
label: 'Grok Imagine Video',
|
|
12986
|
-
modalities: {
|
|
12987
|
-
input: ['text', 'image', 'video', 'pdf'],
|
|
12988
|
-
output: ['video'],
|
|
12989
|
-
},
|
|
12990
|
-
toolCall: false,
|
|
12991
|
-
reasoningText: false,
|
|
12992
|
-
attachment: true,
|
|
12993
|
-
temperature: false,
|
|
12994
|
-
releaseDate: '2026-01-28',
|
|
12995
|
-
lastUpdated: '2026-01-28',
|
|
12996
|
-
openWeights: false,
|
|
12997
|
-
limit: {
|
|
12998
|
-
context: 1024,
|
|
12999
|
-
output: 0,
|
|
13000
|
-
},
|
|
13001
|
-
},
|
|
13002
10498
|
],
|
|
13003
10499
|
label: 'xAI',
|
|
13004
10500
|
env: ['XAI_API_KEY'],
|
|
@@ -14617,60 +12113,6 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
14617
12113
|
output: 65536,
|
|
14618
12114
|
},
|
|
14619
12115
|
},
|
|
14620
|
-
{
|
|
14621
|
-
id: 'gemma3:12b',
|
|
14622
|
-
label: 'gemma3:12b',
|
|
14623
|
-
modalities: {
|
|
14624
|
-
input: ['text', 'image'],
|
|
14625
|
-
output: ['text'],
|
|
14626
|
-
},
|
|
14627
|
-
toolCall: false,
|
|
14628
|
-
reasoningText: false,
|
|
14629
|
-
attachment: true,
|
|
14630
|
-
releaseDate: '2024-12-01',
|
|
14631
|
-
lastUpdated: '2026-01-19',
|
|
14632
|
-
openWeights: true,
|
|
14633
|
-
limit: {
|
|
14634
|
-
context: 131072,
|
|
14635
|
-
output: 131072,
|
|
14636
|
-
},
|
|
14637
|
-
},
|
|
14638
|
-
{
|
|
14639
|
-
id: 'gemma3:27b',
|
|
14640
|
-
label: 'gemma3:27b',
|
|
14641
|
-
modalities: {
|
|
14642
|
-
input: ['text', 'image'],
|
|
14643
|
-
output: ['text'],
|
|
14644
|
-
},
|
|
14645
|
-
toolCall: false,
|
|
14646
|
-
reasoningText: false,
|
|
14647
|
-
attachment: true,
|
|
14648
|
-
releaseDate: '2025-07-27',
|
|
14649
|
-
lastUpdated: '2026-01-19',
|
|
14650
|
-
openWeights: true,
|
|
14651
|
-
limit: {
|
|
14652
|
-
context: 131072,
|
|
14653
|
-
output: 131072,
|
|
14654
|
-
},
|
|
14655
|
-
},
|
|
14656
|
-
{
|
|
14657
|
-
id: 'gemma3:4b',
|
|
14658
|
-
label: 'gemma3:4b',
|
|
14659
|
-
modalities: {
|
|
14660
|
-
input: ['text', 'image'],
|
|
14661
|
-
output: ['text'],
|
|
14662
|
-
},
|
|
14663
|
-
toolCall: false,
|
|
14664
|
-
reasoningText: false,
|
|
14665
|
-
attachment: true,
|
|
14666
|
-
releaseDate: '2024-12-01',
|
|
14667
|
-
lastUpdated: '2026-01-19',
|
|
14668
|
-
openWeights: true,
|
|
14669
|
-
limit: {
|
|
14670
|
-
context: 131072,
|
|
14671
|
-
output: 131072,
|
|
14672
|
-
},
|
|
14673
|
-
},
|
|
14674
12116
|
{
|
|
14675
12117
|
id: 'gemma4:31b',
|
|
14676
12118
|
label: 'gemma4:31b',
|