@gajae-code/ai 0.2.1 → 0.2.2
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/CHANGELOG.md +8 -1
- package/dist/types/providers/anthropic.d.ts +4 -1
- package/dist/types/providers/transform-messages.d.ts +3 -1
- package/dist/types/types.d.ts +1 -1
- package/package.json +2 -2
- package/src/models.json +770 -51
- package/src/provider-models/descriptors.ts +1 -0
- package/src/providers/anthropic.ts +48 -4
- package/src/providers/transform-messages.ts +17 -7
- package/src/stream.ts +1 -0
- package/src/types.ts +1 -0
- package/src/utils/http-inspector.ts +36 -0
package/src/models.json
CHANGED
|
@@ -458,6 +458,31 @@
|
|
|
458
458
|
"maxLevel": "xhigh"
|
|
459
459
|
}
|
|
460
460
|
},
|
|
461
|
+
"anthropic.claude-opus-4-8": {
|
|
462
|
+
"id": "anthropic.claude-opus-4-8",
|
|
463
|
+
"name": "Anthropic Opus 4.8",
|
|
464
|
+
"api": "bedrock-converse-stream",
|
|
465
|
+
"provider": "amazon-bedrock",
|
|
466
|
+
"baseUrl": "https://bedrock-runtime.us-east-1.amazonaws.com",
|
|
467
|
+
"reasoning": true,
|
|
468
|
+
"input": [
|
|
469
|
+
"text",
|
|
470
|
+
"image"
|
|
471
|
+
],
|
|
472
|
+
"cost": {
|
|
473
|
+
"input": 5,
|
|
474
|
+
"output": 25,
|
|
475
|
+
"cacheRead": 0.5,
|
|
476
|
+
"cacheWrite": 6.25
|
|
477
|
+
},
|
|
478
|
+
"contextWindow": 1000000,
|
|
479
|
+
"maxTokens": 128000,
|
|
480
|
+
"thinking": {
|
|
481
|
+
"mode": "anthropic-adaptive",
|
|
482
|
+
"minLevel": "minimal",
|
|
483
|
+
"maxLevel": "xhigh"
|
|
484
|
+
}
|
|
485
|
+
},
|
|
461
486
|
"au.anthropic.claude-haiku-4-5-20251001-v1:0": {
|
|
462
487
|
"id": "au.anthropic.claude-haiku-4-5-20251001-v1:0",
|
|
463
488
|
"name": "Anthropic Haiku 4.5 (AU)",
|
|
@@ -508,6 +533,31 @@
|
|
|
508
533
|
"maxLevel": "xhigh"
|
|
509
534
|
}
|
|
510
535
|
},
|
|
536
|
+
"au.anthropic.claude-opus-4-8": {
|
|
537
|
+
"id": "au.anthropic.claude-opus-4-8",
|
|
538
|
+
"name": "Anthropic Opus 4.8 (AU)",
|
|
539
|
+
"api": "bedrock-converse-stream",
|
|
540
|
+
"provider": "amazon-bedrock",
|
|
541
|
+
"baseUrl": "https://bedrock-runtime.us-east-1.amazonaws.com",
|
|
542
|
+
"reasoning": true,
|
|
543
|
+
"input": [
|
|
544
|
+
"text",
|
|
545
|
+
"image"
|
|
546
|
+
],
|
|
547
|
+
"cost": {
|
|
548
|
+
"input": 5,
|
|
549
|
+
"output": 25,
|
|
550
|
+
"cacheRead": 0.5,
|
|
551
|
+
"cacheWrite": 6.25
|
|
552
|
+
},
|
|
553
|
+
"contextWindow": 1000000,
|
|
554
|
+
"maxTokens": 128000,
|
|
555
|
+
"thinking": {
|
|
556
|
+
"mode": "anthropic-adaptive",
|
|
557
|
+
"minLevel": "minimal",
|
|
558
|
+
"maxLevel": "xhigh"
|
|
559
|
+
}
|
|
560
|
+
},
|
|
511
561
|
"au.anthropic.claude-sonnet-4-5-20250929-v1:0": {
|
|
512
562
|
"id": "au.anthropic.claude-sonnet-4-5-20250929-v1:0",
|
|
513
563
|
"name": "Anthropic Sonnet 4.5 (AU)",
|
|
@@ -958,6 +1008,31 @@
|
|
|
958
1008
|
"maxLevel": "xhigh"
|
|
959
1009
|
}
|
|
960
1010
|
},
|
|
1011
|
+
"eu.anthropic.claude-opus-4-8": {
|
|
1012
|
+
"id": "eu.anthropic.claude-opus-4-8",
|
|
1013
|
+
"name": "Anthropic Opus 4.8 (EU)",
|
|
1014
|
+
"api": "bedrock-converse-stream",
|
|
1015
|
+
"provider": "amazon-bedrock",
|
|
1016
|
+
"baseUrl": "https://bedrock-runtime.us-east-1.amazonaws.com",
|
|
1017
|
+
"reasoning": true,
|
|
1018
|
+
"input": [
|
|
1019
|
+
"text",
|
|
1020
|
+
"image"
|
|
1021
|
+
],
|
|
1022
|
+
"cost": {
|
|
1023
|
+
"input": 5,
|
|
1024
|
+
"output": 25,
|
|
1025
|
+
"cacheRead": 0.5,
|
|
1026
|
+
"cacheWrite": 6.25
|
|
1027
|
+
},
|
|
1028
|
+
"contextWindow": 1000000,
|
|
1029
|
+
"maxTokens": 128000,
|
|
1030
|
+
"thinking": {
|
|
1031
|
+
"mode": "anthropic-adaptive",
|
|
1032
|
+
"minLevel": "minimal",
|
|
1033
|
+
"maxLevel": "xhigh"
|
|
1034
|
+
}
|
|
1035
|
+
},
|
|
961
1036
|
"eu.anthropic.claude-sonnet-4-20250514-v1:0": {
|
|
962
1037
|
"id": "eu.anthropic.claude-sonnet-4-20250514-v1:0",
|
|
963
1038
|
"name": "Anthropic Sonnet 4 (EU)",
|
|
@@ -1055,7 +1130,7 @@
|
|
|
1055
1130
|
},
|
|
1056
1131
|
"global.anthropic.claude-haiku-4-5-20251001-v1:0": {
|
|
1057
1132
|
"id": "global.anthropic.claude-haiku-4-5-20251001-v1:0",
|
|
1058
|
-
"name": "Anthropic Haiku 4.5
|
|
1133
|
+
"name": "Anthropic Haiku 4.5",
|
|
1059
1134
|
"api": "bedrock-converse-stream",
|
|
1060
1135
|
"provider": "amazon-bedrock",
|
|
1061
1136
|
"baseUrl": "https://bedrock-runtime.us-east-1.amazonaws.com",
|
|
@@ -1153,6 +1228,31 @@
|
|
|
1153
1228
|
"maxLevel": "xhigh"
|
|
1154
1229
|
}
|
|
1155
1230
|
},
|
|
1231
|
+
"global.anthropic.claude-opus-4-8": {
|
|
1232
|
+
"id": "global.anthropic.claude-opus-4-8",
|
|
1233
|
+
"name": "Anthropic Opus 4.8 (Global)",
|
|
1234
|
+
"api": "bedrock-converse-stream",
|
|
1235
|
+
"provider": "amazon-bedrock",
|
|
1236
|
+
"baseUrl": "https://bedrock-runtime.us-east-1.amazonaws.com",
|
|
1237
|
+
"reasoning": true,
|
|
1238
|
+
"input": [
|
|
1239
|
+
"text",
|
|
1240
|
+
"image"
|
|
1241
|
+
],
|
|
1242
|
+
"cost": {
|
|
1243
|
+
"input": 5,
|
|
1244
|
+
"output": 25,
|
|
1245
|
+
"cacheRead": 0.5,
|
|
1246
|
+
"cacheWrite": 6.25
|
|
1247
|
+
},
|
|
1248
|
+
"contextWindow": 1000000,
|
|
1249
|
+
"maxTokens": 128000,
|
|
1250
|
+
"thinking": {
|
|
1251
|
+
"mode": "anthropic-adaptive",
|
|
1252
|
+
"minLevel": "minimal",
|
|
1253
|
+
"maxLevel": "xhigh"
|
|
1254
|
+
}
|
|
1255
|
+
},
|
|
1156
1256
|
"global.anthropic.claude-sonnet-4-20250514-v1:0": {
|
|
1157
1257
|
"id": "global.anthropic.claude-sonnet-4-20250514-v1:0",
|
|
1158
1258
|
"name": "Anthropic Sonnet 4 (Global)",
|
|
@@ -1180,7 +1280,7 @@
|
|
|
1180
1280
|
},
|
|
1181
1281
|
"global.anthropic.claude-sonnet-4-5-20250929-v1:0": {
|
|
1182
1282
|
"id": "global.anthropic.claude-sonnet-4-5-20250929-v1:0",
|
|
1183
|
-
"name": "Anthropic Sonnet 4.5
|
|
1283
|
+
"name": "Anthropic Sonnet 4.5",
|
|
1184
1284
|
"api": "bedrock-converse-stream",
|
|
1185
1285
|
"provider": "amazon-bedrock",
|
|
1186
1286
|
"baseUrl": "https://bedrock-runtime.us-east-1.amazonaws.com",
|
|
@@ -1205,7 +1305,7 @@
|
|
|
1205
1305
|
},
|
|
1206
1306
|
"global.anthropic.claude-sonnet-4-6": {
|
|
1207
1307
|
"id": "global.anthropic.claude-sonnet-4-6",
|
|
1208
|
-
"name": "Anthropic Sonnet 4.6",
|
|
1308
|
+
"name": "Anthropic Sonnet 4.6 (Global)",
|
|
1209
1309
|
"api": "bedrock-converse-stream",
|
|
1210
1310
|
"provider": "amazon-bedrock",
|
|
1211
1311
|
"baseUrl": "https://bedrock-runtime.us-east-1.amazonaws.com",
|
|
@@ -1293,6 +1393,31 @@
|
|
|
1293
1393
|
"maxLevel": "xhigh"
|
|
1294
1394
|
}
|
|
1295
1395
|
},
|
|
1396
|
+
"jp.anthropic.claude-opus-4-8": {
|
|
1397
|
+
"id": "jp.anthropic.claude-opus-4-8",
|
|
1398
|
+
"name": "Anthropic Opus 4.8 (JP)",
|
|
1399
|
+
"api": "bedrock-converse-stream",
|
|
1400
|
+
"provider": "amazon-bedrock",
|
|
1401
|
+
"baseUrl": "https://bedrock-runtime.us-east-1.amazonaws.com",
|
|
1402
|
+
"reasoning": true,
|
|
1403
|
+
"input": [
|
|
1404
|
+
"text",
|
|
1405
|
+
"image"
|
|
1406
|
+
],
|
|
1407
|
+
"cost": {
|
|
1408
|
+
"input": 5,
|
|
1409
|
+
"output": 25,
|
|
1410
|
+
"cacheRead": 0.5,
|
|
1411
|
+
"cacheWrite": 6.25
|
|
1412
|
+
},
|
|
1413
|
+
"contextWindow": 1000000,
|
|
1414
|
+
"maxTokens": 128000,
|
|
1415
|
+
"thinking": {
|
|
1416
|
+
"mode": "anthropic-adaptive",
|
|
1417
|
+
"minLevel": "minimal",
|
|
1418
|
+
"maxLevel": "xhigh"
|
|
1419
|
+
}
|
|
1420
|
+
},
|
|
1296
1421
|
"jp.anthropic.claude-sonnet-4-5-20250929-v1:0": {
|
|
1297
1422
|
"id": "jp.anthropic.claude-sonnet-4-5-20250929-v1:0",
|
|
1298
1423
|
"name": "Anthropic Sonnet 4.5 (JP)",
|
|
@@ -2281,6 +2406,31 @@
|
|
|
2281
2406
|
"maxLevel": "xhigh"
|
|
2282
2407
|
}
|
|
2283
2408
|
},
|
|
2409
|
+
"us.anthropic.claude-opus-4-8": {
|
|
2410
|
+
"id": "us.anthropic.claude-opus-4-8",
|
|
2411
|
+
"name": "Anthropic Opus 4.8 (US)",
|
|
2412
|
+
"api": "bedrock-converse-stream",
|
|
2413
|
+
"provider": "amazon-bedrock",
|
|
2414
|
+
"baseUrl": "https://bedrock-runtime.us-east-1.amazonaws.com",
|
|
2415
|
+
"reasoning": true,
|
|
2416
|
+
"input": [
|
|
2417
|
+
"text",
|
|
2418
|
+
"image"
|
|
2419
|
+
],
|
|
2420
|
+
"cost": {
|
|
2421
|
+
"input": 5,
|
|
2422
|
+
"output": 25,
|
|
2423
|
+
"cacheRead": 0.5,
|
|
2424
|
+
"cacheWrite": 6.25
|
|
2425
|
+
},
|
|
2426
|
+
"contextWindow": 1000000,
|
|
2427
|
+
"maxTokens": 128000,
|
|
2428
|
+
"thinking": {
|
|
2429
|
+
"mode": "anthropic-adaptive",
|
|
2430
|
+
"minLevel": "minimal",
|
|
2431
|
+
"maxLevel": "xhigh"
|
|
2432
|
+
}
|
|
2433
|
+
},
|
|
2284
2434
|
"us.anthropic.claude-sonnet-4-20250514-v1:0": {
|
|
2285
2435
|
"id": "us.anthropic.claude-sonnet-4-20250514-v1:0",
|
|
2286
2436
|
"name": "Anthropic Sonnet 4 (US)",
|
|
@@ -2949,6 +3099,31 @@
|
|
|
2949
3099
|
"maxLevel": "xhigh"
|
|
2950
3100
|
}
|
|
2951
3101
|
},
|
|
3102
|
+
"claude-opus-4-8": {
|
|
3103
|
+
"id": "claude-opus-4-8",
|
|
3104
|
+
"name": "Anthropic Opus 4.8",
|
|
3105
|
+
"api": "anthropic-messages",
|
|
3106
|
+
"provider": "anthropic",
|
|
3107
|
+
"baseUrl": "https://api.anthropic.com",
|
|
3108
|
+
"reasoning": true,
|
|
3109
|
+
"input": [
|
|
3110
|
+
"text",
|
|
3111
|
+
"image"
|
|
3112
|
+
],
|
|
3113
|
+
"cost": {
|
|
3114
|
+
"input": 5,
|
|
3115
|
+
"output": 25,
|
|
3116
|
+
"cacheRead": 0.5,
|
|
3117
|
+
"cacheWrite": 6.25
|
|
3118
|
+
},
|
|
3119
|
+
"contextWindow": 1000000,
|
|
3120
|
+
"maxTokens": 128000,
|
|
3121
|
+
"thinking": {
|
|
3122
|
+
"mode": "anthropic-adaptive",
|
|
3123
|
+
"minLevel": "minimal",
|
|
3124
|
+
"maxLevel": "xhigh"
|
|
3125
|
+
}
|
|
3126
|
+
},
|
|
2952
3127
|
"claude-sonnet-4-0": {
|
|
2953
3128
|
"id": "claude-sonnet-4-0",
|
|
2954
3129
|
"name": "Anthropic Sonnet 4 (latest)",
|
|
@@ -3075,6 +3250,117 @@
|
|
|
3075
3250
|
}
|
|
3076
3251
|
}
|
|
3077
3252
|
},
|
|
3253
|
+
"azure-openai": {
|
|
3254
|
+
"gpt-4.1": {
|
|
3255
|
+
"id": "gpt-4.1",
|
|
3256
|
+
"name": "GPT-4.1",
|
|
3257
|
+
"api": "azure-openai-responses",
|
|
3258
|
+
"provider": "azure-openai",
|
|
3259
|
+
"baseUrl": "",
|
|
3260
|
+
"reasoning": false,
|
|
3261
|
+
"input": [
|
|
3262
|
+
"text",
|
|
3263
|
+
"image"
|
|
3264
|
+
],
|
|
3265
|
+
"cost": {
|
|
3266
|
+
"input": 2,
|
|
3267
|
+
"output": 8,
|
|
3268
|
+
"cacheRead": 0.5,
|
|
3269
|
+
"cacheWrite": 0
|
|
3270
|
+
},
|
|
3271
|
+
"contextWindow": 1047576,
|
|
3272
|
+
"maxTokens": 32768
|
|
3273
|
+
},
|
|
3274
|
+
"gpt-4o": {
|
|
3275
|
+
"id": "gpt-4o",
|
|
3276
|
+
"name": "GPT-4o",
|
|
3277
|
+
"api": "azure-openai-responses",
|
|
3278
|
+
"provider": "azure-openai",
|
|
3279
|
+
"baseUrl": "",
|
|
3280
|
+
"reasoning": false,
|
|
3281
|
+
"input": [
|
|
3282
|
+
"text",
|
|
3283
|
+
"image"
|
|
3284
|
+
],
|
|
3285
|
+
"cost": {
|
|
3286
|
+
"input": 2.5,
|
|
3287
|
+
"output": 10,
|
|
3288
|
+
"cacheRead": 1.25,
|
|
3289
|
+
"cacheWrite": 0
|
|
3290
|
+
},
|
|
3291
|
+
"contextWindow": 128000,
|
|
3292
|
+
"maxTokens": 16384
|
|
3293
|
+
},
|
|
3294
|
+
"gpt-4o-mini": {
|
|
3295
|
+
"id": "gpt-4o-mini",
|
|
3296
|
+
"name": "GPT-4o mini",
|
|
3297
|
+
"api": "azure-openai-responses",
|
|
3298
|
+
"provider": "azure-openai",
|
|
3299
|
+
"baseUrl": "",
|
|
3300
|
+
"reasoning": false,
|
|
3301
|
+
"input": [
|
|
3302
|
+
"text",
|
|
3303
|
+
"image"
|
|
3304
|
+
],
|
|
3305
|
+
"cost": {
|
|
3306
|
+
"input": 0.15,
|
|
3307
|
+
"output": 0.6,
|
|
3308
|
+
"cacheRead": 0.075,
|
|
3309
|
+
"cacheWrite": 0
|
|
3310
|
+
},
|
|
3311
|
+
"contextWindow": 128000,
|
|
3312
|
+
"maxTokens": 16384
|
|
3313
|
+
},
|
|
3314
|
+
"o3": {
|
|
3315
|
+
"id": "o3",
|
|
3316
|
+
"name": "o3",
|
|
3317
|
+
"api": "azure-openai-responses",
|
|
3318
|
+
"provider": "azure-openai",
|
|
3319
|
+
"baseUrl": "",
|
|
3320
|
+
"reasoning": true,
|
|
3321
|
+
"input": [
|
|
3322
|
+
"text",
|
|
3323
|
+
"image"
|
|
3324
|
+
],
|
|
3325
|
+
"cost": {
|
|
3326
|
+
"input": 2,
|
|
3327
|
+
"output": 8,
|
|
3328
|
+
"cacheRead": 0.5,
|
|
3329
|
+
"cacheWrite": 0
|
|
3330
|
+
},
|
|
3331
|
+
"contextWindow": 200000,
|
|
3332
|
+
"maxTokens": 100000,
|
|
3333
|
+
"thinking": {
|
|
3334
|
+
"mode": "effort",
|
|
3335
|
+
"minLevel": "minimal",
|
|
3336
|
+
"maxLevel": "high"
|
|
3337
|
+
}
|
|
3338
|
+
},
|
|
3339
|
+
"o3-mini": {
|
|
3340
|
+
"id": "o3-mini",
|
|
3341
|
+
"name": "o3-mini",
|
|
3342
|
+
"api": "azure-openai-responses",
|
|
3343
|
+
"provider": "azure-openai",
|
|
3344
|
+
"baseUrl": "",
|
|
3345
|
+
"reasoning": true,
|
|
3346
|
+
"input": [
|
|
3347
|
+
"text"
|
|
3348
|
+
],
|
|
3349
|
+
"cost": {
|
|
3350
|
+
"input": 1.1,
|
|
3351
|
+
"output": 4.4,
|
|
3352
|
+
"cacheRead": 0.55,
|
|
3353
|
+
"cacheWrite": 0
|
|
3354
|
+
},
|
|
3355
|
+
"contextWindow": 200000,
|
|
3356
|
+
"maxTokens": 100000,
|
|
3357
|
+
"thinking": {
|
|
3358
|
+
"mode": "effort",
|
|
3359
|
+
"minLevel": "minimal",
|
|
3360
|
+
"maxLevel": "high"
|
|
3361
|
+
}
|
|
3362
|
+
}
|
|
3363
|
+
},
|
|
3078
3364
|
"cerebras": {
|
|
3079
3365
|
"gpt-oss-120b": {
|
|
3080
3366
|
"id": "gpt-oss-120b",
|
|
@@ -3467,6 +3753,31 @@
|
|
|
3467
3753
|
"maxLevel": "xhigh"
|
|
3468
3754
|
}
|
|
3469
3755
|
},
|
|
3756
|
+
"anthropic/claude-opus-4-8": {
|
|
3757
|
+
"id": "anthropic/claude-opus-4-8",
|
|
3758
|
+
"name": "Anthropic Opus 4.8",
|
|
3759
|
+
"api": "anthropic-messages",
|
|
3760
|
+
"provider": "cloudflare-ai-gateway",
|
|
3761
|
+
"baseUrl": "https://gateway.ai.cloudflare.com/v1/<account>/<gateway>/anthropic",
|
|
3762
|
+
"reasoning": true,
|
|
3763
|
+
"input": [
|
|
3764
|
+
"text",
|
|
3765
|
+
"image"
|
|
3766
|
+
],
|
|
3767
|
+
"cost": {
|
|
3768
|
+
"input": 5,
|
|
3769
|
+
"output": 25,
|
|
3770
|
+
"cacheRead": 0.5,
|
|
3771
|
+
"cacheWrite": 6.25
|
|
3772
|
+
},
|
|
3773
|
+
"contextWindow": 1000000,
|
|
3774
|
+
"maxTokens": 128000,
|
|
3775
|
+
"thinking": {
|
|
3776
|
+
"mode": "anthropic-adaptive",
|
|
3777
|
+
"minLevel": "minimal",
|
|
3778
|
+
"maxLevel": "xhigh"
|
|
3779
|
+
}
|
|
3780
|
+
},
|
|
3470
3781
|
"anthropic/claude-sonnet-4": {
|
|
3471
3782
|
"id": "anthropic/claude-sonnet-4",
|
|
3472
3783
|
"name": "Anthropic Sonnet 4 (latest)",
|
|
@@ -5344,8 +5655,8 @@
|
|
|
5344
5655
|
"cacheRead": 0,
|
|
5345
5656
|
"cacheWrite": 0
|
|
5346
5657
|
},
|
|
5347
|
-
"contextWindow":
|
|
5348
|
-
"maxTokens":
|
|
5658
|
+
"contextWindow": 200000,
|
|
5659
|
+
"maxTokens": 64000,
|
|
5349
5660
|
"headers": {
|
|
5350
5661
|
"User-Agent": "opencode/1.3.15"
|
|
5351
5662
|
},
|
|
@@ -5373,7 +5684,7 @@
|
|
|
5373
5684
|
"cacheRead": 0,
|
|
5374
5685
|
"cacheWrite": 0
|
|
5375
5686
|
},
|
|
5376
|
-
"contextWindow":
|
|
5687
|
+
"contextWindow": 200000,
|
|
5377
5688
|
"maxTokens": 32000,
|
|
5378
5689
|
"headers": {
|
|
5379
5690
|
"User-Agent": "opencode/1.3.15"
|
|
@@ -5430,7 +5741,35 @@
|
|
|
5430
5741
|
"cacheRead": 0,
|
|
5431
5742
|
"cacheWrite": 0
|
|
5432
5743
|
},
|
|
5433
|
-
"contextWindow":
|
|
5744
|
+
"contextWindow": 200000,
|
|
5745
|
+
"maxTokens": 32000,
|
|
5746
|
+
"headers": {
|
|
5747
|
+
"User-Agent": "opencode/1.3.15"
|
|
5748
|
+
},
|
|
5749
|
+
"thinking": {
|
|
5750
|
+
"mode": "anthropic-adaptive",
|
|
5751
|
+
"minLevel": "minimal",
|
|
5752
|
+
"maxLevel": "xhigh"
|
|
5753
|
+
}
|
|
5754
|
+
},
|
|
5755
|
+
"claude-opus-4.8": {
|
|
5756
|
+
"id": "claude-opus-4.8",
|
|
5757
|
+
"name": "Anthropic Opus 4.8",
|
|
5758
|
+
"api": "anthropic-messages",
|
|
5759
|
+
"provider": "github-copilot",
|
|
5760
|
+
"baseUrl": "https://api.githubcopilot.com",
|
|
5761
|
+
"reasoning": true,
|
|
5762
|
+
"input": [
|
|
5763
|
+
"text",
|
|
5764
|
+
"image"
|
|
5765
|
+
],
|
|
5766
|
+
"cost": {
|
|
5767
|
+
"input": 0,
|
|
5768
|
+
"output": 0,
|
|
5769
|
+
"cacheRead": 0,
|
|
5770
|
+
"cacheWrite": 0
|
|
5771
|
+
},
|
|
5772
|
+
"contextWindow": 200000,
|
|
5434
5773
|
"maxTokens": 64000,
|
|
5435
5774
|
"headers": {
|
|
5436
5775
|
"User-Agent": "opencode/1.3.15"
|
|
@@ -5486,7 +5825,7 @@
|
|
|
5486
5825
|
"cacheRead": 0,
|
|
5487
5826
|
"cacheWrite": 0
|
|
5488
5827
|
},
|
|
5489
|
-
"contextWindow":
|
|
5828
|
+
"contextWindow": 200000,
|
|
5490
5829
|
"maxTokens": 32000,
|
|
5491
5830
|
"headers": {
|
|
5492
5831
|
"User-Agent": "opencode/1.3.15"
|
|
@@ -5640,7 +5979,7 @@
|
|
|
5640
5979
|
"cacheRead": 0,
|
|
5641
5980
|
"cacheWrite": 0
|
|
5642
5981
|
},
|
|
5643
|
-
"contextWindow":
|
|
5982
|
+
"contextWindow": 200000,
|
|
5644
5983
|
"maxTokens": 64000,
|
|
5645
5984
|
"headers": {
|
|
5646
5985
|
"User-Agent": "opencode/1.3.15"
|
|
@@ -5677,7 +6016,7 @@
|
|
|
5677
6016
|
"cacheRead": 0,
|
|
5678
6017
|
"cacheWrite": 0
|
|
5679
6018
|
},
|
|
5680
|
-
"contextWindow":
|
|
6019
|
+
"contextWindow": 200000,
|
|
5681
6020
|
"maxTokens": 64000,
|
|
5682
6021
|
"headers": {
|
|
5683
6022
|
"User-Agent": "opencode/1.3.15"
|
|
@@ -9506,6 +9845,44 @@
|
|
|
9506
9845
|
"contextWindow": 222222,
|
|
9507
9846
|
"maxTokens": 8888
|
|
9508
9847
|
},
|
|
9848
|
+
"anthropic/claude-opus-4.8": {
|
|
9849
|
+
"id": "anthropic/claude-opus-4.8",
|
|
9850
|
+
"name": "Anthropic: Anthropic Opus 4.8 (new)",
|
|
9851
|
+
"api": "openai-completions",
|
|
9852
|
+
"provider": "kilo",
|
|
9853
|
+
"baseUrl": "https://api.kilo.ai/api/gateway",
|
|
9854
|
+
"reasoning": false,
|
|
9855
|
+
"input": [
|
|
9856
|
+
"text"
|
|
9857
|
+
],
|
|
9858
|
+
"cost": {
|
|
9859
|
+
"input": 0,
|
|
9860
|
+
"output": 0,
|
|
9861
|
+
"cacheRead": 0,
|
|
9862
|
+
"cacheWrite": 0
|
|
9863
|
+
},
|
|
9864
|
+
"contextWindow": 222222,
|
|
9865
|
+
"maxTokens": 8888
|
|
9866
|
+
},
|
|
9867
|
+
"anthropic/claude-opus-4.8-fast": {
|
|
9868
|
+
"id": "anthropic/claude-opus-4.8-fast",
|
|
9869
|
+
"name": "Anthropic: Anthropic Opus 4.8 (Fast) ($$$$)",
|
|
9870
|
+
"api": "openai-completions",
|
|
9871
|
+
"provider": "kilo",
|
|
9872
|
+
"baseUrl": "https://api.kilo.ai/api/gateway",
|
|
9873
|
+
"reasoning": false,
|
|
9874
|
+
"input": [
|
|
9875
|
+
"text"
|
|
9876
|
+
],
|
|
9877
|
+
"cost": {
|
|
9878
|
+
"input": 0,
|
|
9879
|
+
"output": 0,
|
|
9880
|
+
"cacheRead": 0,
|
|
9881
|
+
"cacheWrite": 0
|
|
9882
|
+
},
|
|
9883
|
+
"contextWindow": 222222,
|
|
9884
|
+
"maxTokens": 8888
|
|
9885
|
+
},
|
|
9509
9886
|
"anthropic/claude-sonnet-4": {
|
|
9510
9887
|
"id": "anthropic/claude-sonnet-4",
|
|
9511
9888
|
"name": "Anthropic Sonnet 4",
|
|
@@ -10394,6 +10771,25 @@
|
|
|
10394
10771
|
"maxLevel": "xhigh"
|
|
10395
10772
|
}
|
|
10396
10773
|
},
|
|
10774
|
+
"deepseek/deepseek-v4-flash:discounted": {
|
|
10775
|
+
"id": "deepseek/deepseek-v4-flash:discounted",
|
|
10776
|
+
"name": "DeepSeek: DeepSeek V4 Flash (>40% off)",
|
|
10777
|
+
"api": "openai-completions",
|
|
10778
|
+
"provider": "kilo",
|
|
10779
|
+
"baseUrl": "https://api.kilo.ai/api/gateway",
|
|
10780
|
+
"reasoning": false,
|
|
10781
|
+
"input": [
|
|
10782
|
+
"text"
|
|
10783
|
+
],
|
|
10784
|
+
"cost": {
|
|
10785
|
+
"input": 0,
|
|
10786
|
+
"output": 0,
|
|
10787
|
+
"cacheRead": 0,
|
|
10788
|
+
"cacheWrite": 0
|
|
10789
|
+
},
|
|
10790
|
+
"contextWindow": 222222,
|
|
10791
|
+
"maxTokens": 8888
|
|
10792
|
+
},
|
|
10397
10793
|
"deepseek/deepseek-v4-flash:free": {
|
|
10398
10794
|
"id": "deepseek/deepseek-v4-flash:free",
|
|
10399
10795
|
"name": "DeepSeek: DeepSeek V4 Flash (free)",
|
|
@@ -10437,6 +10833,25 @@
|
|
|
10437
10833
|
"maxLevel": "xhigh"
|
|
10438
10834
|
}
|
|
10439
10835
|
},
|
|
10836
|
+
"deepseek/deepseek-v4-pro:discounted": {
|
|
10837
|
+
"id": "deepseek/deepseek-v4-pro:discounted",
|
|
10838
|
+
"name": "DeepSeek: DeepSeek V4 Pro (>80% off)",
|
|
10839
|
+
"api": "openai-completions",
|
|
10840
|
+
"provider": "kilo",
|
|
10841
|
+
"baseUrl": "https://api.kilo.ai/api/gateway",
|
|
10842
|
+
"reasoning": false,
|
|
10843
|
+
"input": [
|
|
10844
|
+
"text"
|
|
10845
|
+
],
|
|
10846
|
+
"cost": {
|
|
10847
|
+
"input": 0,
|
|
10848
|
+
"output": 0,
|
|
10849
|
+
"cacheRead": 0,
|
|
10850
|
+
"cacheWrite": 0
|
|
10851
|
+
},
|
|
10852
|
+
"contextWindow": 222222,
|
|
10853
|
+
"maxTokens": 8888
|
|
10854
|
+
},
|
|
10440
10855
|
"eleutherai/llemma_7b": {
|
|
10441
10856
|
"id": "eleutherai/llemma_7b",
|
|
10442
10857
|
"name": "EleutherAI: Llemma 7b",
|
|
@@ -10515,7 +10930,7 @@
|
|
|
10515
10930
|
},
|
|
10516
10931
|
"google/gemini-2.0-flash-001": {
|
|
10517
10932
|
"id": "google/gemini-2.0-flash-001",
|
|
10518
|
-
"name": "Google: Gemini 2.0 Flash",
|
|
10933
|
+
"name": "Google: Gemini 2.0 Flash (retires Jun 1)",
|
|
10519
10934
|
"api": "openai-completions",
|
|
10520
10935
|
"provider": "kilo",
|
|
10521
10936
|
"baseUrl": "https://api.kilo.ai/api/gateway",
|
|
@@ -10534,7 +10949,7 @@
|
|
|
10534
10949
|
},
|
|
10535
10950
|
"google/gemini-2.0-flash-lite-001": {
|
|
10536
10951
|
"id": "google/gemini-2.0-flash-lite-001",
|
|
10537
|
-
"name": "Google: Gemini 2.0 Flash Lite",
|
|
10952
|
+
"name": "Google: Gemini 2.0 Flash Lite (retires Jun 1)",
|
|
10538
10953
|
"api": "openai-completions",
|
|
10539
10954
|
"provider": "kilo",
|
|
10540
10955
|
"baseUrl": "https://api.kilo.ai/api/gateway",
|
|
@@ -12996,7 +13411,7 @@
|
|
|
12996
13411
|
},
|
|
12997
13412
|
"nousresearch/hermes-2-pro-llama-3-8b": {
|
|
12998
13413
|
"id": "nousresearch/hermes-2-pro-llama-3-8b",
|
|
12999
|
-
"name": "NousResearch: Hermes 2 Pro - Llama-3 8B",
|
|
13414
|
+
"name": "NousResearch: Hermes 2 Pro - Llama-3 8B (retires Jun 5)",
|
|
13000
13415
|
"api": "openai-completions",
|
|
13001
13416
|
"provider": "kilo",
|
|
13002
13417
|
"baseUrl": "https://api.kilo.ai/api/gateway",
|
|
@@ -13391,7 +13806,7 @@
|
|
|
13391
13806
|
},
|
|
13392
13807
|
"openai/gpt-4-1106-preview": {
|
|
13393
13808
|
"id": "openai/gpt-4-1106-preview",
|
|
13394
|
-
"name": "OpenAI: GPT-4 Turbo (older v1106)",
|
|
13809
|
+
"name": "OpenAI: GPT-4 Turbo (older v1106) ($$$$)",
|
|
13395
13810
|
"api": "openai-completions",
|
|
13396
13811
|
"provider": "kilo",
|
|
13397
13812
|
"baseUrl": "https://api.kilo.ai/api/gateway",
|
|
@@ -13430,7 +13845,7 @@
|
|
|
13430
13845
|
},
|
|
13431
13846
|
"openai/gpt-4-turbo-preview": {
|
|
13432
13847
|
"id": "openai/gpt-4-turbo-preview",
|
|
13433
|
-
"name": "OpenAI: GPT-4 Turbo Preview",
|
|
13848
|
+
"name": "OpenAI: GPT-4 Turbo Preview ($$$$)",
|
|
13434
13849
|
"api": "openai-completions",
|
|
13435
13850
|
"provider": "kilo",
|
|
13436
13851
|
"baseUrl": "https://api.kilo.ai/api/gateway",
|
|
@@ -13767,7 +14182,7 @@
|
|
|
13767
14182
|
},
|
|
13768
14183
|
"openai/gpt-5-image": {
|
|
13769
14184
|
"id": "openai/gpt-5-image",
|
|
13770
|
-
"name": "OpenAI: GPT-5 Image",
|
|
14185
|
+
"name": "OpenAI: GPT-5 Image ($$$$)",
|
|
13771
14186
|
"api": "openai-completions",
|
|
13772
14187
|
"provider": "kilo",
|
|
13773
14188
|
"baseUrl": "https://api.kilo.ai/api/gateway",
|
|
@@ -13843,7 +14258,7 @@
|
|
|
13843
14258
|
},
|
|
13844
14259
|
"openai/gpt-5-pro": {
|
|
13845
14260
|
"id": "openai/gpt-5-pro",
|
|
13846
|
-
"name": "OpenAI: GPT-5 Pro",
|
|
14261
|
+
"name": "OpenAI: GPT-5 Pro ($$$$)",
|
|
13847
14262
|
"api": "openai-completions",
|
|
13848
14263
|
"provider": "kilo",
|
|
13849
14264
|
"baseUrl": "https://api.kilo.ai/api/gateway",
|
|
@@ -14001,7 +14416,7 @@
|
|
|
14001
14416
|
},
|
|
14002
14417
|
"openai/gpt-5.2-chat": {
|
|
14003
14418
|
"id": "openai/gpt-5.2-chat",
|
|
14004
|
-
"name": "OpenAI: GPT-5.2 Chat",
|
|
14419
|
+
"name": "OpenAI: GPT-5.2 Chat (retires Aug 10)",
|
|
14005
14420
|
"api": "openai-completions",
|
|
14006
14421
|
"provider": "kilo",
|
|
14007
14422
|
"baseUrl": "https://api.kilo.ai/api/gateway",
|
|
@@ -14488,7 +14903,7 @@
|
|
|
14488
14903
|
},
|
|
14489
14904
|
"openai/o3-deep-research": {
|
|
14490
14905
|
"id": "openai/o3-deep-research",
|
|
14491
|
-
"name": "OpenAI: o3 Deep Research",
|
|
14906
|
+
"name": "OpenAI: o3 Deep Research ($$$$)",
|
|
14492
14907
|
"api": "openai-completions",
|
|
14493
14908
|
"provider": "kilo",
|
|
14494
14909
|
"baseUrl": "https://api.kilo.ai/api/gateway",
|
|
@@ -15327,7 +15742,7 @@
|
|
|
15327
15742
|
},
|
|
15328
15743
|
"qwen/qwen3-30b-a3b": {
|
|
15329
15744
|
"id": "qwen/qwen3-30b-a3b",
|
|
15330
|
-
"name": "Qwen: Qwen3 30B A3B",
|
|
15745
|
+
"name": "Qwen: Qwen3 30B A3B (retires Jun 5)",
|
|
15331
15746
|
"api": "openai-completions",
|
|
15332
15747
|
"provider": "kilo",
|
|
15333
15748
|
"baseUrl": "https://api.kilo.ai/api/gateway",
|
|
@@ -16214,7 +16629,7 @@
|
|
|
16214
16629
|
},
|
|
16215
16630
|
"sao10k/l3-euryale-70b": {
|
|
16216
16631
|
"id": "sao10k/l3-euryale-70b",
|
|
16217
|
-
"name": "Sao10k: Llama 3 Euryale 70B v2.1",
|
|
16632
|
+
"name": "Sao10k: Llama 3 Euryale 70B v2.1 (retires Jun 5)",
|
|
16218
16633
|
"api": "openai-completions",
|
|
16219
16634
|
"provider": "kilo",
|
|
16220
16635
|
"baseUrl": "https://api.kilo.ai/api/gateway",
|
|
@@ -16345,6 +16760,25 @@
|
|
|
16345
16760
|
"contextWindow": 222222,
|
|
16346
16761
|
"maxTokens": 8888
|
|
16347
16762
|
},
|
|
16763
|
+
"stealth/claude-opus-4.8": {
|
|
16764
|
+
"id": "stealth/claude-opus-4.8",
|
|
16765
|
+
"name": "Stealth: Anthropic Opus 4.8 (20% off)",
|
|
16766
|
+
"api": "openai-completions",
|
|
16767
|
+
"provider": "kilo",
|
|
16768
|
+
"baseUrl": "https://api.kilo.ai/api/gateway",
|
|
16769
|
+
"reasoning": false,
|
|
16770
|
+
"input": [
|
|
16771
|
+
"text"
|
|
16772
|
+
],
|
|
16773
|
+
"cost": {
|
|
16774
|
+
"input": 0,
|
|
16775
|
+
"output": 0,
|
|
16776
|
+
"cacheRead": 0,
|
|
16777
|
+
"cacheWrite": 0
|
|
16778
|
+
},
|
|
16779
|
+
"contextWindow": 222222,
|
|
16780
|
+
"maxTokens": 8888
|
|
16781
|
+
},
|
|
16348
16782
|
"stealth/claude-sonnet-4.6": {
|
|
16349
16783
|
"id": "stealth/claude-sonnet-4.6",
|
|
16350
16784
|
"name": "Stealth: Anthropic Sonnet 4.6 (20% off)",
|
|
@@ -16364,6 +16798,25 @@
|
|
|
16364
16798
|
"contextWindow": 222222,
|
|
16365
16799
|
"maxTokens": 8888
|
|
16366
16800
|
},
|
|
16801
|
+
"stealth/qwen3.6-plus": {
|
|
16802
|
+
"id": "stealth/qwen3.6-plus",
|
|
16803
|
+
"name": "Stealth: Qwen3.6 Plus (50% off)",
|
|
16804
|
+
"api": "openai-completions",
|
|
16805
|
+
"provider": "kilo",
|
|
16806
|
+
"baseUrl": "https://api.kilo.ai/api/gateway",
|
|
16807
|
+
"reasoning": false,
|
|
16808
|
+
"input": [
|
|
16809
|
+
"text"
|
|
16810
|
+
],
|
|
16811
|
+
"cost": {
|
|
16812
|
+
"input": 0,
|
|
16813
|
+
"output": 0,
|
|
16814
|
+
"cacheRead": 0,
|
|
16815
|
+
"cacheWrite": 0
|
|
16816
|
+
},
|
|
16817
|
+
"contextWindow": 222222,
|
|
16818
|
+
"maxTokens": 8888
|
|
16819
|
+
},
|
|
16367
16820
|
"stepfun/step-3.5-flash": {
|
|
16368
16821
|
"id": "stepfun/step-3.5-flash",
|
|
16369
16822
|
"name": "Step 3.5 Flash",
|
|
@@ -16402,6 +16855,44 @@
|
|
|
16402
16855
|
"contextWindow": 222222,
|
|
16403
16856
|
"maxTokens": 8888
|
|
16404
16857
|
},
|
|
16858
|
+
"stepfun/step-3.7-flash": {
|
|
16859
|
+
"id": "stepfun/step-3.7-flash",
|
|
16860
|
+
"name": "StepFun: Step 3.7 Flash",
|
|
16861
|
+
"api": "openai-completions",
|
|
16862
|
+
"provider": "kilo",
|
|
16863
|
+
"baseUrl": "https://api.kilo.ai/api/gateway",
|
|
16864
|
+
"reasoning": false,
|
|
16865
|
+
"input": [
|
|
16866
|
+
"text"
|
|
16867
|
+
],
|
|
16868
|
+
"cost": {
|
|
16869
|
+
"input": 0,
|
|
16870
|
+
"output": 0,
|
|
16871
|
+
"cacheRead": 0,
|
|
16872
|
+
"cacheWrite": 0
|
|
16873
|
+
},
|
|
16874
|
+
"contextWindow": 222222,
|
|
16875
|
+
"maxTokens": 8888
|
|
16876
|
+
},
|
|
16877
|
+
"stepfun/step-3.7-flash:free": {
|
|
16878
|
+
"id": "stepfun/step-3.7-flash:free",
|
|
16879
|
+
"name": "StepFun: Step 3.7 Flash (free)",
|
|
16880
|
+
"api": "openai-completions",
|
|
16881
|
+
"provider": "kilo",
|
|
16882
|
+
"baseUrl": "https://api.kilo.ai/api/gateway",
|
|
16883
|
+
"reasoning": false,
|
|
16884
|
+
"input": [
|
|
16885
|
+
"text"
|
|
16886
|
+
],
|
|
16887
|
+
"cost": {
|
|
16888
|
+
"input": 0,
|
|
16889
|
+
"output": 0,
|
|
16890
|
+
"cacheRead": 0,
|
|
16891
|
+
"cacheWrite": 0
|
|
16892
|
+
},
|
|
16893
|
+
"contextWindow": 222222,
|
|
16894
|
+
"maxTokens": 8888
|
|
16895
|
+
},
|
|
16405
16896
|
"switchpoint/router": {
|
|
16406
16897
|
"id": "switchpoint/router",
|
|
16407
16898
|
"name": "Switchpoint Router",
|
|
@@ -50967,6 +51458,31 @@
|
|
|
50967
51458
|
"maxLevel": "xhigh"
|
|
50968
51459
|
}
|
|
50969
51460
|
},
|
|
51461
|
+
"stepfun-ai/step-3.7-flash": {
|
|
51462
|
+
"id": "stepfun-ai/step-3.7-flash",
|
|
51463
|
+
"name": "Step 3.7 Flash",
|
|
51464
|
+
"api": "openai-completions",
|
|
51465
|
+
"provider": "nvidia",
|
|
51466
|
+
"baseUrl": "https://integrate.api.nvidia.com/v1",
|
|
51467
|
+
"reasoning": true,
|
|
51468
|
+
"input": [
|
|
51469
|
+
"text",
|
|
51470
|
+
"image"
|
|
51471
|
+
],
|
|
51472
|
+
"cost": {
|
|
51473
|
+
"input": 0,
|
|
51474
|
+
"output": 0,
|
|
51475
|
+
"cacheRead": 0,
|
|
51476
|
+
"cacheWrite": 0
|
|
51477
|
+
},
|
|
51478
|
+
"contextWindow": 256000,
|
|
51479
|
+
"maxTokens": 16384,
|
|
51480
|
+
"thinking": {
|
|
51481
|
+
"mode": "effort",
|
|
51482
|
+
"minLevel": "minimal",
|
|
51483
|
+
"maxLevel": "xhigh"
|
|
51484
|
+
}
|
|
51485
|
+
},
|
|
50970
51486
|
"upstage/solar-10_7b-instruct": {
|
|
50971
51487
|
"id": "upstage/solar-10_7b-instruct",
|
|
50972
51488
|
"name": "solar-10.7b-instruct",
|
|
@@ -53322,6 +53838,31 @@
|
|
|
53322
53838
|
"maxLevel": "xhigh"
|
|
53323
53839
|
}
|
|
53324
53840
|
},
|
|
53841
|
+
"claude-opus-4-8": {
|
|
53842
|
+
"id": "claude-opus-4-8",
|
|
53843
|
+
"name": "Anthropic Opus 4.8",
|
|
53844
|
+
"api": "anthropic-messages",
|
|
53845
|
+
"provider": "opencode-zen",
|
|
53846
|
+
"baseUrl": "https://opencode.ai/zen",
|
|
53847
|
+
"reasoning": true,
|
|
53848
|
+
"input": [
|
|
53849
|
+
"text",
|
|
53850
|
+
"image"
|
|
53851
|
+
],
|
|
53852
|
+
"cost": {
|
|
53853
|
+
"input": 5,
|
|
53854
|
+
"output": 25,
|
|
53855
|
+
"cacheRead": 0.5,
|
|
53856
|
+
"cacheWrite": 6.25
|
|
53857
|
+
},
|
|
53858
|
+
"contextWindow": 1000000,
|
|
53859
|
+
"maxTokens": 128000,
|
|
53860
|
+
"thinking": {
|
|
53861
|
+
"mode": "anthropic-adaptive",
|
|
53862
|
+
"minLevel": "minimal",
|
|
53863
|
+
"maxLevel": "xhigh"
|
|
53864
|
+
}
|
|
53865
|
+
},
|
|
53325
53866
|
"claude-sonnet-4": {
|
|
53326
53867
|
"id": "claude-sonnet-4",
|
|
53327
53868
|
"name": "Anthropic Sonnet 4",
|
|
@@ -54687,13 +55228,13 @@
|
|
|
54687
55228
|
"image"
|
|
54688
55229
|
],
|
|
54689
55230
|
"cost": {
|
|
54690
|
-
"input": 0.
|
|
54691
|
-
"output": 3.
|
|
54692
|
-
"cacheRead": 0.
|
|
55231
|
+
"input": 0.684,
|
|
55232
|
+
"output": 3.42,
|
|
55233
|
+
"cacheRead": 0.144,
|
|
54693
55234
|
"cacheWrite": 0
|
|
54694
55235
|
},
|
|
54695
55236
|
"contextWindow": 262144,
|
|
54696
|
-
"maxTokens":
|
|
55237
|
+
"maxTokens": 262144,
|
|
54697
55238
|
"thinking": {
|
|
54698
55239
|
"mode": "effort",
|
|
54699
55240
|
"minLevel": "minimal",
|
|
@@ -55233,6 +55774,56 @@
|
|
|
55233
55774
|
"maxLevel": "high"
|
|
55234
55775
|
}
|
|
55235
55776
|
},
|
|
55777
|
+
"anthropic/claude-opus-4.8": {
|
|
55778
|
+
"id": "anthropic/claude-opus-4.8",
|
|
55779
|
+
"name": "Anthropic: Anthropic Opus 4.8",
|
|
55780
|
+
"api": "openai-completions",
|
|
55781
|
+
"provider": "openrouter",
|
|
55782
|
+
"baseUrl": "https://openrouter.ai/api/v1",
|
|
55783
|
+
"reasoning": true,
|
|
55784
|
+
"input": [
|
|
55785
|
+
"text",
|
|
55786
|
+
"image"
|
|
55787
|
+
],
|
|
55788
|
+
"cost": {
|
|
55789
|
+
"input": 5,
|
|
55790
|
+
"output": 25,
|
|
55791
|
+
"cacheRead": 0.5,
|
|
55792
|
+
"cacheWrite": 6.25
|
|
55793
|
+
},
|
|
55794
|
+
"contextWindow": 1000000,
|
|
55795
|
+
"maxTokens": 128000,
|
|
55796
|
+
"thinking": {
|
|
55797
|
+
"mode": "effort",
|
|
55798
|
+
"minLevel": "minimal",
|
|
55799
|
+
"maxLevel": "high"
|
|
55800
|
+
}
|
|
55801
|
+
},
|
|
55802
|
+
"anthropic/claude-opus-4.8-fast": {
|
|
55803
|
+
"id": "anthropic/claude-opus-4.8-fast",
|
|
55804
|
+
"name": "Anthropic: Anthropic Opus 4.8 (Fast)",
|
|
55805
|
+
"api": "openai-completions",
|
|
55806
|
+
"provider": "openrouter",
|
|
55807
|
+
"baseUrl": "https://openrouter.ai/api/v1",
|
|
55808
|
+
"reasoning": true,
|
|
55809
|
+
"input": [
|
|
55810
|
+
"text",
|
|
55811
|
+
"image"
|
|
55812
|
+
],
|
|
55813
|
+
"cost": {
|
|
55814
|
+
"input": 10,
|
|
55815
|
+
"output": 50,
|
|
55816
|
+
"cacheRead": 1,
|
|
55817
|
+
"cacheWrite": 12.5
|
|
55818
|
+
},
|
|
55819
|
+
"contextWindow": 1000000,
|
|
55820
|
+
"maxTokens": 128000,
|
|
55821
|
+
"thinking": {
|
|
55822
|
+
"mode": "effort",
|
|
55823
|
+
"minLevel": "minimal",
|
|
55824
|
+
"maxLevel": "high"
|
|
55825
|
+
}
|
|
55826
|
+
},
|
|
55236
55827
|
"anthropic/claude-sonnet-4": {
|
|
55237
55828
|
"id": "anthropic/claude-sonnet-4",
|
|
55238
55829
|
"name": "Anthropic Sonnet 4",
|
|
@@ -55923,13 +56514,13 @@
|
|
|
55923
56514
|
"text"
|
|
55924
56515
|
],
|
|
55925
56516
|
"cost": {
|
|
55926
|
-
"input": 0.
|
|
55927
|
-
"output": 0.
|
|
55928
|
-
"cacheRead": 0.
|
|
56517
|
+
"input": 0.0983,
|
|
56518
|
+
"output": 0.1966,
|
|
56519
|
+
"cacheRead": 0.019700000000000002,
|
|
55929
56520
|
"cacheWrite": 0
|
|
55930
56521
|
},
|
|
55931
56522
|
"contextWindow": 1048576,
|
|
55932
|
-
"maxTokens":
|
|
56523
|
+
"maxTokens": 131072,
|
|
55933
56524
|
"thinking": {
|
|
55934
56525
|
"mode": "effort",
|
|
55935
56526
|
"minLevel": "minimal",
|
|
@@ -56020,7 +56611,7 @@
|
|
|
56020
56611
|
"cacheRead": 0.024999999999999998,
|
|
56021
56612
|
"cacheWrite": 0.08333333333333334
|
|
56022
56613
|
},
|
|
56023
|
-
"contextWindow":
|
|
56614
|
+
"contextWindow": 1048576,
|
|
56024
56615
|
"maxTokens": 8192
|
|
56025
56616
|
},
|
|
56026
56617
|
"google/gemini-2.0-flash-lite-001": {
|
|
@@ -57110,13 +57701,13 @@
|
|
|
57110
57701
|
"text"
|
|
57111
57702
|
],
|
|
57112
57703
|
"cost": {
|
|
57113
|
-
"input": 0.
|
|
57704
|
+
"input": 0.26,
|
|
57114
57705
|
"output": 1.2,
|
|
57115
57706
|
"cacheRead": 0.059,
|
|
57116
57707
|
"cacheWrite": 0
|
|
57117
57708
|
},
|
|
57118
57709
|
"contextWindow": 204800,
|
|
57119
|
-
"maxTokens":
|
|
57710
|
+
"maxTokens": 131070,
|
|
57120
57711
|
"thinking": {
|
|
57121
57712
|
"mode": "effort",
|
|
57122
57713
|
"minLevel": "minimal",
|
|
@@ -57757,13 +58348,13 @@
|
|
|
57757
58348
|
"image"
|
|
57758
58349
|
],
|
|
57759
58350
|
"cost": {
|
|
57760
|
-
"input": 0.
|
|
57761
|
-
"output": 3.
|
|
57762
|
-
"cacheRead": 0.
|
|
58351
|
+
"input": 0.684,
|
|
58352
|
+
"output": 3.42,
|
|
58353
|
+
"cacheRead": 0.144,
|
|
57763
58354
|
"cacheWrite": 0
|
|
57764
58355
|
},
|
|
57765
58356
|
"contextWindow": 262144,
|
|
57766
|
-
"maxTokens":
|
|
58357
|
+
"maxTokens": 262144,
|
|
57767
58358
|
"thinking": {
|
|
57768
58359
|
"mode": "effort",
|
|
57769
58360
|
"minLevel": "minimal",
|
|
@@ -59184,13 +59775,13 @@
|
|
|
59184
59775
|
"text"
|
|
59185
59776
|
],
|
|
59186
59777
|
"cost": {
|
|
59187
|
-
"input": 0.
|
|
59778
|
+
"input": 0.029,
|
|
59188
59779
|
"output": 0.14,
|
|
59189
59780
|
"cacheRead": 0.015,
|
|
59190
59781
|
"cacheWrite": 0
|
|
59191
59782
|
},
|
|
59192
59783
|
"contextWindow": 131072,
|
|
59193
|
-
"maxTokens":
|
|
59784
|
+
"maxTokens": 65536,
|
|
59194
59785
|
"thinking": {
|
|
59195
59786
|
"mode": "effort",
|
|
59196
59787
|
"minLevel": "minimal",
|
|
@@ -59945,13 +60536,13 @@
|
|
|
59945
60536
|
"text"
|
|
59946
60537
|
],
|
|
59947
60538
|
"cost": {
|
|
59948
|
-
"input": 0.
|
|
59949
|
-
"output":
|
|
59950
|
-
"cacheRead": 0.
|
|
60539
|
+
"input": 0.09999999999999999,
|
|
60540
|
+
"output": 0.09999999999999999,
|
|
60541
|
+
"cacheRead": 0.09999999999999999,
|
|
59951
60542
|
"cacheWrite": 0
|
|
59952
60543
|
},
|
|
59953
60544
|
"contextWindow": 262144,
|
|
59954
|
-
"maxTokens":
|
|
60545
|
+
"maxTokens": 262144,
|
|
59955
60546
|
"thinking": {
|
|
59956
60547
|
"mode": "effort",
|
|
59957
60548
|
"minLevel": "minimal",
|
|
@@ -60581,13 +61172,13 @@
|
|
|
60581
61172
|
"image"
|
|
60582
61173
|
],
|
|
60583
61174
|
"cost": {
|
|
60584
|
-
"input": 0.
|
|
61175
|
+
"input": 0.14,
|
|
60585
61176
|
"output": 1,
|
|
60586
61177
|
"cacheRead": 0.049999999999999996,
|
|
60587
61178
|
"cacheWrite": 0
|
|
60588
61179
|
},
|
|
60589
61180
|
"contextWindow": 262144,
|
|
60590
|
-
"maxTokens":
|
|
61181
|
+
"maxTokens": 262144,
|
|
60591
61182
|
"thinking": {
|
|
60592
61183
|
"mode": "effort",
|
|
60593
61184
|
"minLevel": "minimal",
|
|
@@ -61085,6 +61676,34 @@
|
|
|
61085
61676
|
"maxLevel": "high"
|
|
61086
61677
|
}
|
|
61087
61678
|
},
|
|
61679
|
+
"stepfun/step-3.7-flash": {
|
|
61680
|
+
"id": "stepfun/step-3.7-flash",
|
|
61681
|
+
"name": "StepFun: Step 3.7 Flash",
|
|
61682
|
+
"api": "openai-completions",
|
|
61683
|
+
"provider": "openrouter",
|
|
61684
|
+
"baseUrl": "https://openrouter.ai/api/v1",
|
|
61685
|
+
"reasoning": true,
|
|
61686
|
+
"input": [
|
|
61687
|
+
"text",
|
|
61688
|
+
"image"
|
|
61689
|
+
],
|
|
61690
|
+
"cost": {
|
|
61691
|
+
"input": 0.19999999999999998,
|
|
61692
|
+
"output": 1.15,
|
|
61693
|
+
"cacheRead": 0.04,
|
|
61694
|
+
"cacheWrite": 0
|
|
61695
|
+
},
|
|
61696
|
+
"contextWindow": 256000,
|
|
61697
|
+
"maxTokens": 256000,
|
|
61698
|
+
"compat": {
|
|
61699
|
+
"supportsToolChoice": false
|
|
61700
|
+
},
|
|
61701
|
+
"thinking": {
|
|
61702
|
+
"mode": "effort",
|
|
61703
|
+
"minLevel": "minimal",
|
|
61704
|
+
"maxLevel": "high"
|
|
61705
|
+
}
|
|
61706
|
+
},
|
|
61088
61707
|
"tencent/hy3-preview": {
|
|
61089
61708
|
"id": "tencent/hy3-preview",
|
|
61090
61709
|
"name": "Hy3 preview",
|
|
@@ -61729,8 +62348,8 @@
|
|
|
61729
62348
|
],
|
|
61730
62349
|
"cost": {
|
|
61731
62350
|
"input": 0.125,
|
|
61732
|
-
"output": 0.
|
|
61733
|
-
"cacheRead": 0.
|
|
62351
|
+
"output": 0.85,
|
|
62352
|
+
"cacheRead": 0.06,
|
|
61734
62353
|
"cacheWrite": 0
|
|
61735
62354
|
},
|
|
61736
62355
|
"contextWindow": 131072,
|
|
@@ -62834,6 +63453,56 @@
|
|
|
62834
63453
|
"supportsUsageInStreaming": false
|
|
62835
63454
|
}
|
|
62836
63455
|
},
|
|
63456
|
+
"claude-opus-4-8": {
|
|
63457
|
+
"id": "claude-opus-4-8",
|
|
63458
|
+
"name": "Anthropic Opus 4.8",
|
|
63459
|
+
"api": "openai-completions",
|
|
63460
|
+
"provider": "venice",
|
|
63461
|
+
"baseUrl": "https://api.venice.ai/api/v1",
|
|
63462
|
+
"reasoning": true,
|
|
63463
|
+
"input": [
|
|
63464
|
+
"text",
|
|
63465
|
+
"image"
|
|
63466
|
+
],
|
|
63467
|
+
"cost": {
|
|
63468
|
+
"input": 0,
|
|
63469
|
+
"output": 0,
|
|
63470
|
+
"cacheRead": 0,
|
|
63471
|
+
"cacheWrite": 0
|
|
63472
|
+
},
|
|
63473
|
+
"contextWindow": 1000000,
|
|
63474
|
+
"maxTokens": 128000,
|
|
63475
|
+
"compat": {
|
|
63476
|
+
"supportsUsageInStreaming": false
|
|
63477
|
+
},
|
|
63478
|
+
"thinking": {
|
|
63479
|
+
"mode": "effort",
|
|
63480
|
+
"minLevel": "minimal",
|
|
63481
|
+
"maxLevel": "xhigh"
|
|
63482
|
+
}
|
|
63483
|
+
},
|
|
63484
|
+
"claude-opus-4-8-fast": {
|
|
63485
|
+
"id": "claude-opus-4-8-fast",
|
|
63486
|
+
"name": "anthropic-opus-4-8-fast",
|
|
63487
|
+
"api": "openai-completions",
|
|
63488
|
+
"provider": "venice",
|
|
63489
|
+
"baseUrl": "https://api.venice.ai/api/v1",
|
|
63490
|
+
"reasoning": false,
|
|
63491
|
+
"input": [
|
|
63492
|
+
"text"
|
|
63493
|
+
],
|
|
63494
|
+
"cost": {
|
|
63495
|
+
"input": 0,
|
|
63496
|
+
"output": 0,
|
|
63497
|
+
"cacheRead": 0,
|
|
63498
|
+
"cacheWrite": 0
|
|
63499
|
+
},
|
|
63500
|
+
"contextWindow": 1000000,
|
|
63501
|
+
"maxTokens": 8888,
|
|
63502
|
+
"compat": {
|
|
63503
|
+
"supportsUsageInStreaming": false
|
|
63504
|
+
}
|
|
63505
|
+
},
|
|
62837
63506
|
"claude-opus-45": {
|
|
62838
63507
|
"id": "claude-opus-45",
|
|
62839
63508
|
"name": "Anthropic Opus 4.5",
|
|
@@ -65001,7 +65670,7 @@
|
|
|
65001
65670
|
},
|
|
65002
65671
|
"alibaba/qwen-3-235b": {
|
|
65003
65672
|
"id": "alibaba/qwen-3-235b",
|
|
65004
|
-
"name": "Qwen3 235B
|
|
65673
|
+
"name": "Qwen3 235B A22B",
|
|
65005
65674
|
"api": "anthropic-messages",
|
|
65006
65675
|
"baseUrl": "https://ai-gateway.vercel.sh",
|
|
65007
65676
|
"provider": "vercel-ai-gateway",
|
|
@@ -65010,13 +65679,13 @@
|
|
|
65010
65679
|
"text"
|
|
65011
65680
|
],
|
|
65012
65681
|
"cost": {
|
|
65013
|
-
"input": 0.
|
|
65014
|
-
"output":
|
|
65682
|
+
"input": 0.22,
|
|
65683
|
+
"output": 0.88,
|
|
65015
65684
|
"cacheRead": 0.6,
|
|
65016
65685
|
"cacheWrite": 0
|
|
65017
65686
|
},
|
|
65018
|
-
"contextWindow":
|
|
65019
|
-
"maxTokens":
|
|
65687
|
+
"contextWindow": 262144,
|
|
65688
|
+
"maxTokens": 16384
|
|
65020
65689
|
},
|
|
65021
65690
|
"alibaba/qwen-3-30b": {
|
|
65022
65691
|
"id": "alibaba/qwen-3-30b",
|
|
@@ -65664,6 +66333,31 @@
|
|
|
65664
66333
|
"maxLevel": "xhigh"
|
|
65665
66334
|
}
|
|
65666
66335
|
},
|
|
66336
|
+
"anthropic/claude-opus-4.8": {
|
|
66337
|
+
"id": "anthropic/claude-opus-4.8",
|
|
66338
|
+
"name": "Anthropic Opus 4.8",
|
|
66339
|
+
"api": "anthropic-messages",
|
|
66340
|
+
"provider": "vercel-ai-gateway",
|
|
66341
|
+
"baseUrl": "https://ai-gateway.vercel.sh",
|
|
66342
|
+
"reasoning": true,
|
|
66343
|
+
"input": [
|
|
66344
|
+
"text",
|
|
66345
|
+
"image"
|
|
66346
|
+
],
|
|
66347
|
+
"cost": {
|
|
66348
|
+
"input": 5,
|
|
66349
|
+
"output": 25,
|
|
66350
|
+
"cacheRead": 0.5,
|
|
66351
|
+
"cacheWrite": 6.25
|
|
66352
|
+
},
|
|
66353
|
+
"contextWindow": 1000000,
|
|
66354
|
+
"maxTokens": 128000,
|
|
66355
|
+
"thinking": {
|
|
66356
|
+
"mode": "anthropic-adaptive",
|
|
66357
|
+
"minLevel": "minimal",
|
|
66358
|
+
"maxLevel": "xhigh"
|
|
66359
|
+
}
|
|
66360
|
+
},
|
|
65667
66361
|
"anthropic/claude-sonnet-4": {
|
|
65668
66362
|
"id": "anthropic/claude-sonnet-4",
|
|
65669
66363
|
"name": "Anthropic Sonnet 4",
|
|
@@ -68194,6 +68888,31 @@
|
|
|
68194
68888
|
"maxLevel": "xhigh"
|
|
68195
68889
|
}
|
|
68196
68890
|
},
|
|
68891
|
+
"stepfun/step-3.7-flash": {
|
|
68892
|
+
"id": "stepfun/step-3.7-flash",
|
|
68893
|
+
"name": "Step 3.7 Flash",
|
|
68894
|
+
"api": "anthropic-messages",
|
|
68895
|
+
"provider": "vercel-ai-gateway",
|
|
68896
|
+
"baseUrl": "https://ai-gateway.vercel.sh",
|
|
68897
|
+
"reasoning": true,
|
|
68898
|
+
"input": [
|
|
68899
|
+
"text",
|
|
68900
|
+
"image"
|
|
68901
|
+
],
|
|
68902
|
+
"cost": {
|
|
68903
|
+
"input": 0.19999999999999998,
|
|
68904
|
+
"output": 1.15,
|
|
68905
|
+
"cacheRead": 0.04,
|
|
68906
|
+
"cacheWrite": 0
|
|
68907
|
+
},
|
|
68908
|
+
"contextWindow": 256000,
|
|
68909
|
+
"maxTokens": 256000,
|
|
68910
|
+
"thinking": {
|
|
68911
|
+
"mode": "budget",
|
|
68912
|
+
"minLevel": "minimal",
|
|
68913
|
+
"maxLevel": "xhigh"
|
|
68914
|
+
}
|
|
68915
|
+
},
|
|
68197
68916
|
"vercel/v0-1.0-md": {
|
|
68198
68917
|
"id": "vercel/v0-1.0-md",
|
|
68199
68918
|
"name": "v0-1.0-md",
|