@oh-my-pi/pi-ai 13.15.2 → 13.15.3

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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/src/models.json +441 -122
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@oh-my-pi/pi-ai",
4
- "version": "13.15.2",
4
+ "version": "13.15.3",
5
5
  "description": "Unified LLM API with automatic model discovery and provider configuration",
6
6
  "homepage": "https://github.com/can1357/oh-my-pi",
7
7
  "author": "Can Boluk",
@@ -41,7 +41,7 @@
41
41
  "@aws-sdk/client-bedrock-runtime": "^3",
42
42
  "@bufbuild/protobuf": "^2.11",
43
43
  "@google/genai": "^1.43",
44
- "@oh-my-pi/pi-utils": "13.15.2",
44
+ "@oh-my-pi/pi-utils": "13.15.3",
45
45
  "@sinclair/typebox": "^0.34",
46
46
  "@smithy/node-http-handler": "^4.4",
47
47
  "ajv": "^8.18",
package/src/models.json CHANGED
@@ -1115,6 +1115,30 @@
1115
1115
  "maxLevel": "high"
1116
1116
  }
1117
1117
  },
1118
+ "minimax.minimax-m2.5": {
1119
+ "id": "minimax.minimax-m2.5",
1120
+ "name": "MiniMax M2.5",
1121
+ "api": "bedrock-converse-stream",
1122
+ "provider": "amazon-bedrock",
1123
+ "baseUrl": "https://bedrock-runtime.us-east-1.amazonaws.com",
1124
+ "reasoning": true,
1125
+ "input": [
1126
+ "text"
1127
+ ],
1128
+ "cost": {
1129
+ "input": 0.3,
1130
+ "output": 1.2,
1131
+ "cacheRead": 0,
1132
+ "cacheWrite": 0
1133
+ },
1134
+ "contextWindow": 196608,
1135
+ "maxTokens": 98304,
1136
+ "thinking": {
1137
+ "mode": "budget",
1138
+ "minLevel": "minimal",
1139
+ "maxLevel": "high"
1140
+ }
1141
+ },
1118
1142
  "mistral.devstral-2-123b": {
1119
1143
  "id": "mistral.devstral-2-123b",
1120
1144
  "name": "Devstral 2 123B",
@@ -1426,6 +1450,30 @@
1426
1450
  "contextWindow": 128000,
1427
1451
  "maxTokens": 4096
1428
1452
  },
1453
+ "nvidia.nemotron-super-3-120b": {
1454
+ "id": "nvidia.nemotron-super-3-120b",
1455
+ "name": "NVIDIA Nemotron 3 Super 120B A12B",
1456
+ "api": "bedrock-converse-stream",
1457
+ "provider": "amazon-bedrock",
1458
+ "baseUrl": "https://bedrock-runtime.us-east-1.amazonaws.com",
1459
+ "reasoning": true,
1460
+ "input": [
1461
+ "text"
1462
+ ],
1463
+ "cost": {
1464
+ "input": 0.15,
1465
+ "output": 0.65,
1466
+ "cacheRead": 0,
1467
+ "cacheWrite": 0
1468
+ },
1469
+ "contextWindow": 262144,
1470
+ "maxTokens": 131072,
1471
+ "thinking": {
1472
+ "mode": "budget",
1473
+ "minLevel": "minimal",
1474
+ "maxLevel": "high"
1475
+ }
1476
+ },
1429
1477
  "openai.gpt-oss-120b-1:0": {
1430
1478
  "id": "openai.gpt-oss-120b-1:0",
1431
1479
  "name": "gpt-oss-120b",
@@ -2182,6 +2230,30 @@
2182
2230
  "minLevel": "minimal",
2183
2231
  "maxLevel": "high"
2184
2232
  }
2233
+ },
2234
+ "zai.glm-5": {
2235
+ "id": "zai.glm-5",
2236
+ "name": "GLM-5",
2237
+ "api": "bedrock-converse-stream",
2238
+ "provider": "amazon-bedrock",
2239
+ "baseUrl": "https://bedrock-runtime.us-east-1.amazonaws.com",
2240
+ "reasoning": true,
2241
+ "input": [
2242
+ "text"
2243
+ ],
2244
+ "cost": {
2245
+ "input": 1,
2246
+ "output": 3.2,
2247
+ "cacheRead": 0,
2248
+ "cacheWrite": 0
2249
+ },
2250
+ "contextWindow": 202752,
2251
+ "maxTokens": 101376,
2252
+ "thinking": {
2253
+ "mode": "budget",
2254
+ "minLevel": "minimal",
2255
+ "maxLevel": "high"
2256
+ }
2185
2257
  }
2186
2258
  },
2187
2259
  "anthropic": {
@@ -6973,6 +7045,56 @@
6973
7045
  "minLevel": "low",
6974
7046
  "maxLevel": "high"
6975
7047
  }
7048
+ },
7049
+ "gemini-3.1-pro-preview": {
7050
+ "id": "gemini-3.1-pro-preview",
7051
+ "name": "Gemini 3.1 Pro Preview",
7052
+ "api": "google-vertex",
7053
+ "provider": "google-vertex",
7054
+ "baseUrl": "https://{location}-aiplatform.googleapis.com",
7055
+ "reasoning": true,
7056
+ "input": [
7057
+ "text",
7058
+ "image"
7059
+ ],
7060
+ "cost": {
7061
+ "input": 2,
7062
+ "output": 12,
7063
+ "cacheRead": 0.2,
7064
+ "cacheWrite": 0
7065
+ },
7066
+ "contextWindow": 1048576,
7067
+ "maxTokens": 65536,
7068
+ "thinking": {
7069
+ "mode": "google-level",
7070
+ "minLevel": "low",
7071
+ "maxLevel": "high"
7072
+ }
7073
+ },
7074
+ "gemini-3.1-pro-preview-customtools": {
7075
+ "id": "gemini-3.1-pro-preview-customtools",
7076
+ "name": "Gemini 3.1 Pro Preview Custom Tools",
7077
+ "api": "google-vertex",
7078
+ "provider": "google-vertex",
7079
+ "baseUrl": "https://{location}-aiplatform.googleapis.com",
7080
+ "reasoning": true,
7081
+ "input": [
7082
+ "text",
7083
+ "image"
7084
+ ],
7085
+ "cost": {
7086
+ "input": 2,
7087
+ "output": 12,
7088
+ "cacheRead": 0.2,
7089
+ "cacheWrite": 0
7090
+ },
7091
+ "contextWindow": 1048576,
7092
+ "maxTokens": 65536,
7093
+ "thinking": {
7094
+ "mode": "google-level",
7095
+ "minLevel": "low",
7096
+ "maxLevel": "high"
7097
+ }
6976
7098
  }
6977
7099
  },
6978
7100
  "groq": {
@@ -11012,6 +11134,30 @@
11012
11134
  "contextWindow": 128000,
11013
11135
  "maxTokens": 4096
11014
11136
  },
11137
+ "nvidia/llama-3.1-nemotron-ultra-253b-v1": {
11138
+ "id": "nvidia/llama-3.1-nemotron-ultra-253b-v1",
11139
+ "name": "Llama-3.1-Nemotron-Ultra-253B-v1",
11140
+ "api": "openai-completions",
11141
+ "provider": "kilo",
11142
+ "baseUrl": "https://api.kilo.ai/api/gateway",
11143
+ "reasoning": true,
11144
+ "input": [
11145
+ "text"
11146
+ ],
11147
+ "cost": {
11148
+ "input": 0,
11149
+ "output": 0,
11150
+ "cacheRead": 0,
11151
+ "cacheWrite": 0
11152
+ },
11153
+ "contextWindow": 131072,
11154
+ "maxTokens": 8192,
11155
+ "thinking": {
11156
+ "mode": "effort",
11157
+ "minLevel": "minimal",
11158
+ "maxLevel": "xhigh"
11159
+ }
11160
+ },
11015
11161
  "nvidia/llama-3.3-nemotron-super-49b-v1.5": {
11016
11162
  "id": "nvidia/llama-3.3-nemotron-super-49b-v1.5",
11017
11163
  "name": "NVIDIA: Llama 3.3 Nemotron Super 49B V1.5",
@@ -11057,11 +11203,11 @@
11057
11203
  },
11058
11204
  "nvidia/nemotron-3-super-120b-a12b": {
11059
11205
  "id": "nvidia/nemotron-3-super-120b-a12b",
11060
- "name": "NVIDIA: Nemotron 3 Super",
11206
+ "name": "Nemotron 3 Super",
11061
11207
  "api": "openai-completions",
11062
11208
  "provider": "kilo",
11063
11209
  "baseUrl": "https://api.kilo.ai/api/gateway",
11064
- "reasoning": false,
11210
+ "reasoning": true,
11065
11211
  "input": [
11066
11212
  "text"
11067
11213
  ],
@@ -11071,8 +11217,13 @@
11071
11217
  "cacheRead": 0,
11072
11218
  "cacheWrite": 0
11073
11219
  },
11074
- "contextWindow": 222222,
11075
- "maxTokens": 8888
11220
+ "contextWindow": 262144,
11221
+ "maxTokens": 262144,
11222
+ "thinking": {
11223
+ "mode": "effort",
11224
+ "minLevel": "minimal",
11225
+ "maxLevel": "xhigh"
11226
+ }
11076
11227
  },
11077
11228
  "nvidia/nemotron-3-super-120b-a12b:free": {
11078
11229
  "id": "nvidia/nemotron-3-super-120b-a12b:free",
@@ -13584,6 +13735,25 @@
13584
13735
  "contextWindow": 222222,
13585
13736
  "maxTokens": 8888
13586
13737
  },
13738
+ "reka/reka-edge": {
13739
+ "id": "reka/reka-edge",
13740
+ "name": "Reka Edge",
13741
+ "api": "openai-completions",
13742
+ "provider": "kilo",
13743
+ "baseUrl": "https://api.kilo.ai/api/gateway",
13744
+ "reasoning": false,
13745
+ "input": [
13746
+ "text"
13747
+ ],
13748
+ "cost": {
13749
+ "input": 0,
13750
+ "output": 0,
13751
+ "cacheRead": 0,
13752
+ "cacheWrite": 0
13753
+ },
13754
+ "contextWindow": 222222,
13755
+ "maxTokens": 8888
13756
+ },
13587
13757
  "relace/relace-apply-3": {
13588
13758
  "id": "relace/relace-apply-3",
13589
13759
  "name": "Relace: Relace Apply 3",
@@ -18341,6 +18511,25 @@
18341
18511
  "maxLevel": "xhigh"
18342
18512
  }
18343
18513
  },
18514
+ "claude-haiku-4-5-20251001-thinking": {
18515
+ "id": "claude-haiku-4-5-20251001-thinking",
18516
+ "name": "claude-haiku-4-5-20251001-thinking",
18517
+ "api": "openai-completions",
18518
+ "provider": "nanogpt",
18519
+ "baseUrl": "https://nano-gpt.com/api/v1",
18520
+ "reasoning": false,
18521
+ "input": [
18522
+ "text"
18523
+ ],
18524
+ "cost": {
18525
+ "input": 0,
18526
+ "output": 0,
18527
+ "cacheRead": 0,
18528
+ "cacheWrite": 0
18529
+ },
18530
+ "contextWindow": 222222,
18531
+ "maxTokens": 8888
18532
+ },
18344
18533
  "claude-opus-4-1-20250805": {
18345
18534
  "id": "claude-opus-4-1-20250805",
18346
18535
  "name": "Claude Opus 4.1",
@@ -23992,7 +24181,7 @@
23992
24181
  },
23993
24182
  "nvidia/nemotron-3-super-120b-a12b": {
23994
24183
  "id": "nvidia/nemotron-3-super-120b-a12b",
23995
- "name": "NVIDIA: Nemotron 3 Super",
24184
+ "name": "Nemotron 3 Super",
23996
24185
  "api": "openai-completions",
23997
24186
  "provider": "nanogpt",
23998
24187
  "baseUrl": "https://nano-gpt.com/api/v1",
@@ -24007,7 +24196,7 @@
24007
24196
  "cacheWrite": 0
24008
24197
  },
24009
24198
  "contextWindow": 262144,
24010
- "maxTokens": 8888,
24199
+ "maxTokens": 262144,
24011
24200
  "thinking": {
24012
24201
  "mode": "effort",
24013
24202
  "minLevel": "minimal",
@@ -27201,6 +27390,25 @@
27201
27390
  "contextWindow": 222222,
27202
27391
  "maxTokens": 8888
27203
27392
  },
27393
+ "TheDrummer/Skyfall-31B-v4.2": {
27394
+ "id": "TheDrummer/Skyfall-31B-v4.2",
27395
+ "name": "TheDrummer/Skyfall-31B-v4.2",
27396
+ "api": "openai-completions",
27397
+ "provider": "nanogpt",
27398
+ "baseUrl": "https://nano-gpt.com/api/v1",
27399
+ "reasoning": false,
27400
+ "input": [
27401
+ "text"
27402
+ ],
27403
+ "cost": {
27404
+ "input": 0,
27405
+ "output": 0,
27406
+ "cacheRead": 0,
27407
+ "cacheWrite": 0
27408
+ },
27409
+ "contextWindow": 222222,
27410
+ "maxTokens": 8888
27411
+ },
27204
27412
  "thedrummer/skyfall-36b-v2": {
27205
27413
  "id": "thedrummer/skyfall-36b-v2",
27206
27414
  "name": "thedrummer/skyfall-36b-v2",
@@ -29364,6 +29572,30 @@
29364
29572
  "maxLevel": "xhigh"
29365
29573
  }
29366
29574
  },
29575
+ "nvidia/nemotron-3-super-120b-a12b": {
29576
+ "id": "nvidia/nemotron-3-super-120b-a12b",
29577
+ "name": "Nemotron 3 Super",
29578
+ "api": "openai-completions",
29579
+ "provider": "nvidia",
29580
+ "baseUrl": "https://integrate.api.nvidia.com/v1",
29581
+ "reasoning": true,
29582
+ "input": [
29583
+ "text"
29584
+ ],
29585
+ "cost": {
29586
+ "input": 0.2,
29587
+ "output": 0.8,
29588
+ "cacheRead": 0,
29589
+ "cacheWrite": 0
29590
+ },
29591
+ "contextWindow": 262144,
29592
+ "maxTokens": 262144,
29593
+ "thinking": {
29594
+ "mode": "effort",
29595
+ "minLevel": "minimal",
29596
+ "maxLevel": "xhigh"
29597
+ }
29598
+ },
29367
29599
  "nvidia/nemotron-4-340b-instruct": {
29368
29600
  "id": "nvidia/nemotron-4-340b-instruct",
29369
29601
  "name": "Nemotron 4 340b Instruct",
@@ -32218,7 +32450,7 @@
32218
32450
  "thinking": {
32219
32451
  "mode": "effort",
32220
32452
  "minLevel": "minimal",
32221
- "maxLevel": "xhigh"
32453
+ "maxLevel": "high"
32222
32454
  }
32223
32455
  },
32224
32456
  "allenai/olmo-3.1-32b-instruct": {
@@ -32262,7 +32494,7 @@
32262
32494
  "thinking": {
32263
32495
  "mode": "effort",
32264
32496
  "minLevel": "minimal",
32265
- "maxLevel": "xhigh"
32497
+ "maxLevel": "high"
32266
32498
  }
32267
32499
  },
32268
32500
  "amazon/nova-lite-v1": {
@@ -32438,7 +32670,7 @@
32438
32670
  "thinking": {
32439
32671
  "mode": "effort",
32440
32672
  "minLevel": "minimal",
32441
- "maxLevel": "xhigh"
32673
+ "maxLevel": "high"
32442
32674
  }
32443
32675
  },
32444
32676
  "anthropic/claude-3.7-sonnet:thinking": {
@@ -32463,7 +32695,7 @@
32463
32695
  "thinking": {
32464
32696
  "mode": "effort",
32465
32697
  "minLevel": "minimal",
32466
- "maxLevel": "xhigh"
32698
+ "maxLevel": "high"
32467
32699
  }
32468
32700
  },
32469
32701
  "anthropic/claude-haiku-4.5": {
@@ -32508,7 +32740,7 @@
32508
32740
  "thinking": {
32509
32741
  "mode": "effort",
32510
32742
  "minLevel": "minimal",
32511
- "maxLevel": "xhigh"
32743
+ "maxLevel": "high"
32512
32744
  }
32513
32745
  },
32514
32746
  "anthropic/claude-opus-4.1": {
@@ -32533,7 +32765,7 @@
32533
32765
  "thinking": {
32534
32766
  "mode": "effort",
32535
32767
  "minLevel": "minimal",
32536
- "maxLevel": "xhigh"
32768
+ "maxLevel": "high"
32537
32769
  }
32538
32770
  },
32539
32771
  "anthropic/claude-opus-4.5": {
@@ -32558,7 +32790,7 @@
32558
32790
  "thinking": {
32559
32791
  "mode": "effort",
32560
32792
  "minLevel": "minimal",
32561
- "maxLevel": "xhigh"
32793
+ "maxLevel": "high"
32562
32794
  }
32563
32795
  },
32564
32796
  "anthropic/claude-opus-4.6": {
@@ -32583,7 +32815,7 @@
32583
32815
  "thinking": {
32584
32816
  "mode": "effort",
32585
32817
  "minLevel": "minimal",
32586
- "maxLevel": "xhigh"
32818
+ "maxLevel": "high"
32587
32819
  }
32588
32820
  },
32589
32821
  "anthropic/claude-sonnet-4": {
@@ -32608,7 +32840,7 @@
32608
32840
  "thinking": {
32609
32841
  "mode": "effort",
32610
32842
  "minLevel": "minimal",
32611
- "maxLevel": "xhigh"
32843
+ "maxLevel": "high"
32612
32844
  }
32613
32845
  },
32614
32846
  "anthropic/claude-sonnet-4.5": {
@@ -32633,7 +32865,7 @@
32633
32865
  "thinking": {
32634
32866
  "mode": "effort",
32635
32867
  "minLevel": "minimal",
32636
- "maxLevel": "xhigh"
32868
+ "maxLevel": "high"
32637
32869
  }
32638
32870
  },
32639
32871
  "anthropic/claude-sonnet-4.6": {
@@ -32658,7 +32890,7 @@
32658
32890
  "thinking": {
32659
32891
  "mode": "effort",
32660
32892
  "minLevel": "minimal",
32661
- "maxLevel": "xhigh"
32893
+ "maxLevel": "high"
32662
32894
  }
32663
32895
  },
32664
32896
  "arcee-ai/trinity-large-preview:free": {
@@ -32704,7 +32936,7 @@
32704
32936
  "thinking": {
32705
32937
  "mode": "effort",
32706
32938
  "minLevel": "minimal",
32707
- "maxLevel": "xhigh"
32939
+ "maxLevel": "high"
32708
32940
  }
32709
32941
  },
32710
32942
  "arcee-ai/trinity-mini:free": {
@@ -32728,7 +32960,7 @@
32728
32960
  "thinking": {
32729
32961
  "mode": "effort",
32730
32962
  "minLevel": "minimal",
32731
- "maxLevel": "xhigh"
32963
+ "maxLevel": "high"
32732
32964
  }
32733
32965
  },
32734
32966
  "arcee-ai/virtuoso-large": {
@@ -32772,7 +33004,7 @@
32772
33004
  "thinking": {
32773
33005
  "mode": "effort",
32774
33006
  "minLevel": "minimal",
32775
- "maxLevel": "xhigh"
33007
+ "maxLevel": "high"
32776
33008
  }
32777
33009
  },
32778
33010
  "baidu/ernie-4.5-21b-a3b": {
@@ -32816,7 +33048,7 @@
32816
33048
  "thinking": {
32817
33049
  "mode": "effort",
32818
33050
  "minLevel": "minimal",
32819
- "maxLevel": "xhigh"
33051
+ "maxLevel": "high"
32820
33052
  }
32821
33053
  },
32822
33054
  "bytedance-seed/seed-1.6": {
@@ -32841,7 +33073,7 @@
32841
33073
  "thinking": {
32842
33074
  "mode": "effort",
32843
33075
  "minLevel": "minimal",
32844
- "maxLevel": "xhigh"
33076
+ "maxLevel": "high"
32845
33077
  }
32846
33078
  },
32847
33079
  "bytedance-seed/seed-1.6-flash": {
@@ -32866,7 +33098,7 @@
32866
33098
  "thinking": {
32867
33099
  "mode": "effort",
32868
33100
  "minLevel": "minimal",
32869
- "maxLevel": "xhigh"
33101
+ "maxLevel": "high"
32870
33102
  }
32871
33103
  },
32872
33104
  "bytedance-seed/seed-2.0-lite": {
@@ -32891,7 +33123,7 @@
32891
33123
  "thinking": {
32892
33124
  "mode": "effort",
32893
33125
  "minLevel": "minimal",
32894
- "maxLevel": "xhigh"
33126
+ "maxLevel": "high"
32895
33127
  }
32896
33128
  },
32897
33129
  "bytedance-seed/seed-2.0-mini": {
@@ -32916,7 +33148,7 @@
32916
33148
  "thinking": {
32917
33149
  "mode": "effort",
32918
33150
  "minLevel": "minimal",
32919
- "maxLevel": "xhigh"
33151
+ "maxLevel": "high"
32920
33152
  }
32921
33153
  },
32922
33154
  "cohere/command-r-08-2024": {
@@ -32997,7 +33229,7 @@
32997
33229
  "thinking": {
32998
33230
  "mode": "effort",
32999
33231
  "minLevel": "minimal",
33000
- "maxLevel": "xhigh"
33232
+ "maxLevel": "high"
33001
33233
  }
33002
33234
  },
33003
33235
  "deepseek/deepseek-chat-v3.1": {
@@ -33021,7 +33253,7 @@
33021
33253
  "thinking": {
33022
33254
  "mode": "effort",
33023
33255
  "minLevel": "minimal",
33024
- "maxLevel": "xhigh"
33256
+ "maxLevel": "high"
33025
33257
  }
33026
33258
  },
33027
33259
  "deepseek/deepseek-r1": {
@@ -33045,7 +33277,7 @@
33045
33277
  "thinking": {
33046
33278
  "mode": "effort",
33047
33279
  "minLevel": "minimal",
33048
- "maxLevel": "xhigh"
33280
+ "maxLevel": "high"
33049
33281
  }
33050
33282
  },
33051
33283
  "deepseek/deepseek-r1-0528": {
@@ -33069,7 +33301,7 @@
33069
33301
  "thinking": {
33070
33302
  "mode": "effort",
33071
33303
  "minLevel": "minimal",
33072
- "maxLevel": "xhigh"
33304
+ "maxLevel": "high"
33073
33305
  }
33074
33306
  },
33075
33307
  "deepseek/deepseek-v3.1-terminus": {
@@ -33084,16 +33316,16 @@
33084
33316
  ],
33085
33317
  "cost": {
33086
33318
  "input": 0.21,
33087
- "output": 0.78,
33088
- "cacheRead": 0.105,
33319
+ "output": 0.7899999999999999,
33320
+ "cacheRead": 0.1300000002,
33089
33321
  "cacheWrite": 0
33090
33322
  },
33091
33323
  "contextWindow": 163840,
33092
- "maxTokens": 65536,
33324
+ "maxTokens": 8888,
33093
33325
  "thinking": {
33094
33326
  "mode": "effort",
33095
33327
  "minLevel": "minimal",
33096
- "maxLevel": "xhigh"
33328
+ "maxLevel": "high"
33097
33329
  }
33098
33330
  },
33099
33331
  "deepseek/deepseek-v3.1-terminus:exacto": {
@@ -33117,7 +33349,7 @@
33117
33349
  "thinking": {
33118
33350
  "mode": "effort",
33119
33351
  "minLevel": "minimal",
33120
- "maxLevel": "xhigh"
33352
+ "maxLevel": "high"
33121
33353
  }
33122
33354
  },
33123
33355
  "deepseek/deepseek-v3.2": {
@@ -33141,7 +33373,7 @@
33141
33373
  "thinking": {
33142
33374
  "mode": "effort",
33143
33375
  "minLevel": "minimal",
33144
- "maxLevel": "xhigh"
33376
+ "maxLevel": "high"
33145
33377
  }
33146
33378
  },
33147
33379
  "deepseek/deepseek-v3.2-exp": {
@@ -33165,7 +33397,7 @@
33165
33397
  "thinking": {
33166
33398
  "mode": "effort",
33167
33399
  "minLevel": "minimal",
33168
- "maxLevel": "xhigh"
33400
+ "maxLevel": "high"
33169
33401
  }
33170
33402
  },
33171
33403
  "essentialai/rnj-1-instruct": {
@@ -33539,7 +33771,7 @@
33539
33771
  "thinking": {
33540
33772
  "mode": "effort",
33541
33773
  "minLevel": "minimal",
33542
- "maxLevel": "xhigh"
33774
+ "maxLevel": "high"
33543
33775
  }
33544
33776
  },
33545
33777
  "google/gemma-3-27b-it:free": {
@@ -33602,7 +33834,7 @@
33602
33834
  "thinking": {
33603
33835
  "mode": "effort",
33604
33836
  "minLevel": "minimal",
33605
- "maxLevel": "xhigh"
33837
+ "maxLevel": "high"
33606
33838
  }
33607
33839
  },
33608
33840
  "inception/mercury-coder": {
@@ -33837,7 +34069,7 @@
33837
34069
  "thinking": {
33838
34070
  "mode": "effort",
33839
34071
  "minLevel": "minimal",
33840
- "maxLevel": "xhigh"
34072
+ "maxLevel": "high"
33841
34073
  }
33842
34074
  },
33843
34075
  "minimax/minimax-m2": {
@@ -33861,7 +34093,7 @@
33861
34093
  "thinking": {
33862
34094
  "mode": "effort",
33863
34095
  "minLevel": "minimal",
33864
- "maxLevel": "xhigh"
34096
+ "maxLevel": "high"
33865
34097
  }
33866
34098
  },
33867
34099
  "minimax/minimax-m2.1": {
@@ -33885,7 +34117,7 @@
33885
34117
  "thinking": {
33886
34118
  "mode": "effort",
33887
34119
  "minLevel": "minimal",
33888
- "maxLevel": "xhigh"
34120
+ "maxLevel": "high"
33889
34121
  }
33890
34122
  },
33891
34123
  "minimax/minimax-m2.5": {
@@ -33909,7 +34141,7 @@
33909
34141
  "thinking": {
33910
34142
  "mode": "effort",
33911
34143
  "minLevel": "minimal",
33912
- "maxLevel": "xhigh"
34144
+ "maxLevel": "high"
33913
34145
  }
33914
34146
  },
33915
34147
  "minimax/minimax-m2.5:free": {
@@ -33936,7 +34168,7 @@
33936
34168
  "thinking": {
33937
34169
  "mode": "effort",
33938
34170
  "minLevel": "minimal",
33939
- "maxLevel": "xhigh"
34171
+ "maxLevel": "high"
33940
34172
  }
33941
34173
  },
33942
34174
  "minimax/minimax-m2.7": {
@@ -33960,7 +34192,7 @@
33960
34192
  "thinking": {
33961
34193
  "mode": "effort",
33962
34194
  "minLevel": "minimal",
33963
- "maxLevel": "xhigh"
34195
+ "maxLevel": "high"
33964
34196
  }
33965
34197
  },
33966
34198
  "mistralai/codestral-2508": {
@@ -34295,7 +34527,7 @@
34295
34527
  "thinking": {
34296
34528
  "mode": "effort",
34297
34529
  "minLevel": "minimal",
34298
- "maxLevel": "xhigh"
34530
+ "maxLevel": "high"
34299
34531
  }
34300
34532
  },
34301
34533
  "mistralai/mistral-small-3.1-24b-instruct": {
@@ -34465,13 +34697,13 @@
34465
34697
  "text"
34466
34698
  ],
34467
34699
  "cost": {
34468
- "input": 0.55,
34469
- "output": 2.2,
34700
+ "input": 0.5700000000000001,
34701
+ "output": 2.3,
34470
34702
  "cacheRead": 0,
34471
34703
  "cacheWrite": 0
34472
34704
  },
34473
- "contextWindow": 131000,
34474
- "maxTokens": 8888
34705
+ "contextWindow": 131072,
34706
+ "maxTokens": 131072
34475
34707
  },
34476
34708
  "moonshotai/kimi-k2-0905": {
34477
34709
  "id": "moonshotai/kimi-k2-0905",
@@ -34532,7 +34764,7 @@
34532
34764
  "thinking": {
34533
34765
  "mode": "effort",
34534
34766
  "minLevel": "minimal",
34535
- "maxLevel": "xhigh"
34767
+ "maxLevel": "high"
34536
34768
  }
34537
34769
  },
34538
34770
  "moonshotai/kimi-k2.5": {
@@ -34557,7 +34789,7 @@
34557
34789
  "thinking": {
34558
34790
  "mode": "effort",
34559
34791
  "minLevel": "minimal",
34560
- "maxLevel": "xhigh"
34792
+ "maxLevel": "high"
34561
34793
  }
34562
34794
  },
34563
34795
  "nex-agi/deepseek-v3.1-nex-n1": {
@@ -34571,8 +34803,8 @@
34571
34803
  "text"
34572
34804
  ],
34573
34805
  "cost": {
34574
- "input": 0.27,
34575
- "output": 1,
34806
+ "input": 0.135,
34807
+ "output": 0.5,
34576
34808
  "cacheRead": 0,
34577
34809
  "cacheWrite": 0
34578
34810
  },
@@ -34600,7 +34832,7 @@
34600
34832
  "thinking": {
34601
34833
  "mode": "effort",
34602
34834
  "minLevel": "minimal",
34603
- "maxLevel": "xhigh"
34835
+ "maxLevel": "high"
34604
34836
  }
34605
34837
  },
34606
34838
  "nousresearch/hermes-4-70b": {
@@ -34624,7 +34856,7 @@
34624
34856
  "thinking": {
34625
34857
  "mode": "effort",
34626
34858
  "minLevel": "minimal",
34627
- "maxLevel": "xhigh"
34859
+ "maxLevel": "high"
34628
34860
  }
34629
34861
  },
34630
34862
  "nvidia/llama-3.1-nemotron-70b-instruct": {
@@ -34667,7 +34899,7 @@
34667
34899
  "thinking": {
34668
34900
  "mode": "effort",
34669
34901
  "minLevel": "minimal",
34670
- "maxLevel": "xhigh"
34902
+ "maxLevel": "high"
34671
34903
  }
34672
34904
  },
34673
34905
  "nvidia/nemotron-3-nano-30b-a3b": {
@@ -34691,7 +34923,7 @@
34691
34923
  "thinking": {
34692
34924
  "mode": "effort",
34693
34925
  "minLevel": "minimal",
34694
- "maxLevel": "xhigh"
34926
+ "maxLevel": "high"
34695
34927
  }
34696
34928
  },
34697
34929
  "nvidia/nemotron-3-nano-30b-a3b:free": {
@@ -34715,12 +34947,12 @@
34715
34947
  "thinking": {
34716
34948
  "mode": "effort",
34717
34949
  "minLevel": "minimal",
34718
- "maxLevel": "xhigh"
34950
+ "maxLevel": "high"
34719
34951
  }
34720
34952
  },
34721
34953
  "nvidia/nemotron-3-super-120b-a12b": {
34722
34954
  "id": "nvidia/nemotron-3-super-120b-a12b",
34723
- "name": "NVIDIA: Nemotron 3 Super",
34955
+ "name": "Nemotron 3 Super",
34724
34956
  "api": "openai-completions",
34725
34957
  "provider": "openrouter",
34726
34958
  "baseUrl": "https://openrouter.ai/api/v1",
@@ -34731,15 +34963,15 @@
34731
34963
  "cost": {
34732
34964
  "input": 0.09999999999999999,
34733
34965
  "output": 0.5,
34734
- "cacheRead": 0.04,
34966
+ "cacheRead": 0.09999999999999999,
34735
34967
  "cacheWrite": 0
34736
34968
  },
34737
34969
  "contextWindow": 262144,
34738
- "maxTokens": 8888,
34970
+ "maxTokens": 262144,
34739
34971
  "thinking": {
34740
34972
  "mode": "effort",
34741
34973
  "minLevel": "minimal",
34742
- "maxLevel": "xhigh"
34974
+ "maxLevel": "high"
34743
34975
  }
34744
34976
  },
34745
34977
  "nvidia/nemotron-3-super-120b-a12b:free": {
@@ -34763,7 +34995,7 @@
34763
34995
  "thinking": {
34764
34996
  "mode": "effort",
34765
34997
  "minLevel": "minimal",
34766
- "maxLevel": "xhigh"
34998
+ "maxLevel": "high"
34767
34999
  }
34768
35000
  },
34769
35001
  "nvidia/nemotron-nano-12b-v2-vl:free": {
@@ -34788,7 +35020,7 @@
34788
35020
  "thinking": {
34789
35021
  "mode": "effort",
34790
35022
  "minLevel": "minimal",
34791
- "maxLevel": "xhigh"
35023
+ "maxLevel": "high"
34792
35024
  }
34793
35025
  },
34794
35026
  "nvidia/nemotron-nano-9b-v2": {
@@ -34812,7 +35044,7 @@
34812
35044
  "thinking": {
34813
35045
  "mode": "effort",
34814
35046
  "minLevel": "minimal",
34815
- "maxLevel": "xhigh"
35047
+ "maxLevel": "high"
34816
35048
  }
34817
35049
  },
34818
35050
  "nvidia/nemotron-nano-9b-v2:free": {
@@ -34836,7 +35068,7 @@
34836
35068
  "thinking": {
34837
35069
  "mode": "effort",
34838
35070
  "minLevel": "minimal",
34839
- "maxLevel": "xhigh"
35071
+ "maxLevel": "high"
34840
35072
  }
34841
35073
  },
34842
35074
  "openai/gpt-3.5-turbo": {
@@ -35754,7 +35986,7 @@
35754
35986
  "thinking": {
35755
35987
  "mode": "effort",
35756
35988
  "minLevel": "minimal",
35757
- "maxLevel": "xhigh"
35989
+ "maxLevel": "high"
35758
35990
  }
35759
35991
  },
35760
35992
  "openai/gpt-oss-120b:exacto": {
@@ -35778,7 +36010,7 @@
35778
36010
  "thinking": {
35779
36011
  "mode": "effort",
35780
36012
  "minLevel": "minimal",
35781
- "maxLevel": "xhigh"
36013
+ "maxLevel": "high"
35782
36014
  }
35783
36015
  },
35784
36016
  "openai/gpt-oss-120b:free": {
@@ -35802,7 +36034,7 @@
35802
36034
  "thinking": {
35803
36035
  "mode": "effort",
35804
36036
  "minLevel": "minimal",
35805
- "maxLevel": "xhigh"
36037
+ "maxLevel": "high"
35806
36038
  }
35807
36039
  },
35808
36040
  "openai/gpt-oss-20b": {
@@ -35826,7 +36058,7 @@
35826
36058
  "thinking": {
35827
36059
  "mode": "effort",
35828
36060
  "minLevel": "minimal",
35829
- "maxLevel": "xhigh"
36061
+ "maxLevel": "high"
35830
36062
  }
35831
36063
  },
35832
36064
  "openai/gpt-oss-20b:free": {
@@ -35850,7 +36082,7 @@
35850
36082
  "thinking": {
35851
36083
  "mode": "effort",
35852
36084
  "minLevel": "minimal",
35853
- "maxLevel": "xhigh"
36085
+ "maxLevel": "high"
35854
36086
  }
35855
36087
  },
35856
36088
  "openai/gpt-oss-safeguard-20b": {
@@ -35874,7 +36106,7 @@
35874
36106
  "thinking": {
35875
36107
  "mode": "effort",
35876
36108
  "minLevel": "minimal",
35877
- "maxLevel": "xhigh"
36109
+ "maxLevel": "high"
35878
36110
  }
35879
36111
  },
35880
36112
  "openai/o1": {
@@ -35899,7 +36131,7 @@
35899
36131
  "thinking": {
35900
36132
  "mode": "effort",
35901
36133
  "minLevel": "minimal",
35902
- "maxLevel": "xhigh"
36134
+ "maxLevel": "high"
35903
36135
  }
35904
36136
  },
35905
36137
  "openai/o3": {
@@ -35924,7 +36156,7 @@
35924
36156
  "thinking": {
35925
36157
  "mode": "effort",
35926
36158
  "minLevel": "minimal",
35927
- "maxLevel": "xhigh"
36159
+ "maxLevel": "high"
35928
36160
  }
35929
36161
  },
35930
36162
  "openai/o3-deep-research": {
@@ -35949,7 +36181,7 @@
35949
36181
  "thinking": {
35950
36182
  "mode": "effort",
35951
36183
  "minLevel": "minimal",
35952
- "maxLevel": "xhigh"
36184
+ "maxLevel": "high"
35953
36185
  }
35954
36186
  },
35955
36187
  "openai/o3-mini": {
@@ -35973,7 +36205,7 @@
35973
36205
  "thinking": {
35974
36206
  "mode": "effort",
35975
36207
  "minLevel": "minimal",
35976
- "maxLevel": "xhigh"
36208
+ "maxLevel": "high"
35977
36209
  }
35978
36210
  },
35979
36211
  "openai/o3-mini-high": {
@@ -35997,7 +36229,7 @@
35997
36229
  "thinking": {
35998
36230
  "mode": "effort",
35999
36231
  "minLevel": "minimal",
36000
- "maxLevel": "xhigh"
36232
+ "maxLevel": "high"
36001
36233
  }
36002
36234
  },
36003
36235
  "openai/o3-pro": {
@@ -36022,7 +36254,7 @@
36022
36254
  "thinking": {
36023
36255
  "mode": "effort",
36024
36256
  "minLevel": "minimal",
36025
- "maxLevel": "xhigh"
36257
+ "maxLevel": "high"
36026
36258
  }
36027
36259
  },
36028
36260
  "openai/o4-mini": {
@@ -36047,7 +36279,7 @@
36047
36279
  "thinking": {
36048
36280
  "mode": "effort",
36049
36281
  "minLevel": "minimal",
36050
- "maxLevel": "xhigh"
36282
+ "maxLevel": "high"
36051
36283
  }
36052
36284
  },
36053
36285
  "openai/o4-mini-deep-research": {
@@ -36072,7 +36304,7 @@
36072
36304
  "thinking": {
36073
36305
  "mode": "effort",
36074
36306
  "minLevel": "minimal",
36075
- "maxLevel": "xhigh"
36307
+ "maxLevel": "high"
36076
36308
  }
36077
36309
  },
36078
36310
  "openai/o4-mini-high": {
@@ -36097,7 +36329,7 @@
36097
36329
  "thinking": {
36098
36330
  "mode": "effort",
36099
36331
  "minLevel": "minimal",
36100
- "maxLevel": "xhigh"
36332
+ "maxLevel": "high"
36101
36333
  }
36102
36334
  },
36103
36335
  "openrouter/aurora-alpha": {
@@ -36121,7 +36353,7 @@
36121
36353
  "thinking": {
36122
36354
  "mode": "effort",
36123
36355
  "minLevel": "minimal",
36124
- "maxLevel": "xhigh"
36356
+ "maxLevel": "high"
36125
36357
  }
36126
36358
  },
36127
36359
  "openrouter/auto": {
@@ -36146,7 +36378,7 @@
36146
36378
  "thinking": {
36147
36379
  "mode": "effort",
36148
36380
  "minLevel": "minimal",
36149
- "maxLevel": "xhigh"
36381
+ "maxLevel": "high"
36150
36382
  }
36151
36383
  },
36152
36384
  "openrouter/free": {
@@ -36171,7 +36403,7 @@
36171
36403
  "thinking": {
36172
36404
  "mode": "effort",
36173
36405
  "minLevel": "minimal",
36174
- "maxLevel": "xhigh"
36406
+ "maxLevel": "high"
36175
36407
  }
36176
36408
  },
36177
36409
  "openrouter/healer-alpha": {
@@ -36196,7 +36428,7 @@
36196
36428
  "thinking": {
36197
36429
  "mode": "effort",
36198
36430
  "minLevel": "minimal",
36199
- "maxLevel": "xhigh"
36431
+ "maxLevel": "high"
36200
36432
  }
36201
36433
  },
36202
36434
  "openrouter/hunter-alpha": {
@@ -36220,7 +36452,7 @@
36220
36452
  "thinking": {
36221
36453
  "mode": "effort",
36222
36454
  "minLevel": "minimal",
36223
- "maxLevel": "xhigh"
36455
+ "maxLevel": "high"
36224
36456
  }
36225
36457
  },
36226
36458
  "prime-intellect/intellect-3": {
@@ -36244,7 +36476,7 @@
36244
36476
  "thinking": {
36245
36477
  "mode": "effort",
36246
36478
  "minLevel": "minimal",
36247
- "maxLevel": "xhigh"
36479
+ "maxLevel": "high"
36248
36480
  }
36249
36481
  },
36250
36482
  "qwen/qwen-2.5-72b-instruct": {
@@ -36283,7 +36515,7 @@
36283
36515
  "cacheWrite": 0
36284
36516
  },
36285
36517
  "contextWindow": 32768,
36286
- "maxTokens": 8888
36518
+ "maxTokens": 32768
36287
36519
  },
36288
36520
  "qwen/qwen-max": {
36289
36521
  "id": "qwen/qwen-max",
@@ -37180,7 +37412,7 @@
37180
37412
  "cacheWrite": 0
37181
37413
  },
37182
37414
  "contextWindow": 256000,
37183
- "maxTokens": 8888,
37415
+ "maxTokens": 65536,
37184
37416
  "thinking": {
37185
37417
  "mode": "effort",
37186
37418
  "minLevel": "minimal",
@@ -37261,6 +37493,26 @@
37261
37493
  "maxLevel": "high"
37262
37494
  }
37263
37495
  },
37496
+ "reka/reka-edge": {
37497
+ "id": "reka/reka-edge",
37498
+ "name": "Reka Edge",
37499
+ "api": "openai-completions",
37500
+ "provider": "openrouter",
37501
+ "baseUrl": "https://openrouter.ai/api/v1",
37502
+ "reasoning": false,
37503
+ "input": [
37504
+ "text",
37505
+ "image"
37506
+ ],
37507
+ "cost": {
37508
+ "input": 0.19999999999999998,
37509
+ "output": 0.19999999999999998,
37510
+ "cacheRead": 0,
37511
+ "cacheWrite": 0
37512
+ },
37513
+ "contextWindow": 16384,
37514
+ "maxTokens": 16384
37515
+ },
37264
37516
  "relace/relace-search": {
37265
37517
  "id": "relace/relace-search",
37266
37518
  "name": "Relace: Relace Search",
@@ -37364,7 +37616,7 @@
37364
37616
  "thinking": {
37365
37617
  "mode": "effort",
37366
37618
  "minLevel": "minimal",
37367
- "maxLevel": "xhigh"
37619
+ "maxLevel": "high"
37368
37620
  }
37369
37621
  },
37370
37622
  "thedrummer/rocinante-12b": {
@@ -37416,9 +37668,9 @@
37416
37668
  "text"
37417
37669
  ],
37418
37670
  "cost": {
37419
- "input": 0.25,
37420
- "output": 0.85,
37421
- "cacheRead": 0.125,
37671
+ "input": 0.3,
37672
+ "output": 1.1,
37673
+ "cacheRead": 0.15,
37422
37674
  "cacheWrite": 0
37423
37675
  },
37424
37676
  "contextWindow": 163840,
@@ -37426,7 +37678,7 @@
37426
37678
  "thinking": {
37427
37679
  "mode": "effort",
37428
37680
  "minLevel": "minimal",
37429
- "maxLevel": "xhigh"
37681
+ "maxLevel": "high"
37430
37682
  }
37431
37683
  },
37432
37684
  "tngtech/tng-r1t-chimera": {
@@ -37450,7 +37702,7 @@
37450
37702
  "thinking": {
37451
37703
  "mode": "effort",
37452
37704
  "minLevel": "minimal",
37453
- "maxLevel": "xhigh"
37705
+ "maxLevel": "high"
37454
37706
  }
37455
37707
  },
37456
37708
  "upstage/solar-pro-3": {
@@ -37474,7 +37726,7 @@
37474
37726
  "thinking": {
37475
37727
  "mode": "effort",
37476
37728
  "minLevel": "minimal",
37477
- "maxLevel": "xhigh"
37729
+ "maxLevel": "high"
37478
37730
  }
37479
37731
  },
37480
37732
  "upstage/solar-pro-3:free": {
@@ -37498,7 +37750,7 @@
37498
37750
  "thinking": {
37499
37751
  "mode": "effort",
37500
37752
  "minLevel": "minimal",
37501
- "maxLevel": "xhigh"
37753
+ "maxLevel": "high"
37502
37754
  }
37503
37755
  },
37504
37756
  "x-ai/grok-3": {
@@ -37560,7 +37812,7 @@
37560
37812
  "thinking": {
37561
37813
  "mode": "effort",
37562
37814
  "minLevel": "minimal",
37563
- "maxLevel": "xhigh"
37815
+ "maxLevel": "high"
37564
37816
  }
37565
37817
  },
37566
37818
  "x-ai/grok-3-mini-beta": {
@@ -37584,7 +37836,7 @@
37584
37836
  "thinking": {
37585
37837
  "mode": "effort",
37586
37838
  "minLevel": "minimal",
37587
- "maxLevel": "xhigh"
37839
+ "maxLevel": "high"
37588
37840
  }
37589
37841
  },
37590
37842
  "x-ai/grok-4": {
@@ -37609,7 +37861,7 @@
37609
37861
  "thinking": {
37610
37862
  "mode": "effort",
37611
37863
  "minLevel": "minimal",
37612
- "maxLevel": "xhigh"
37864
+ "maxLevel": "high"
37613
37865
  }
37614
37866
  },
37615
37867
  "x-ai/grok-4-fast": {
@@ -37634,7 +37886,7 @@
37634
37886
  "thinking": {
37635
37887
  "mode": "effort",
37636
37888
  "minLevel": "minimal",
37637
- "maxLevel": "xhigh"
37889
+ "maxLevel": "high"
37638
37890
  }
37639
37891
  },
37640
37892
  "x-ai/grok-4.1-fast": {
@@ -37659,7 +37911,7 @@
37659
37911
  "thinking": {
37660
37912
  "mode": "effort",
37661
37913
  "minLevel": "minimal",
37662
- "maxLevel": "xhigh"
37914
+ "maxLevel": "high"
37663
37915
  }
37664
37916
  },
37665
37917
  "x-ai/grok-4.20-beta": {
@@ -37684,7 +37936,7 @@
37684
37936
  "thinking": {
37685
37937
  "mode": "effort",
37686
37938
  "minLevel": "minimal",
37687
- "maxLevel": "xhigh"
37939
+ "maxLevel": "high"
37688
37940
  }
37689
37941
  },
37690
37942
  "x-ai/grok-code-fast-1": {
@@ -37708,7 +37960,7 @@
37708
37960
  "thinking": {
37709
37961
  "mode": "effort",
37710
37962
  "minLevel": "minimal",
37711
- "maxLevel": "xhigh"
37963
+ "maxLevel": "high"
37712
37964
  }
37713
37965
  },
37714
37966
  "xiaomi/mimo-v2-flash": {
@@ -37732,7 +37984,7 @@
37732
37984
  "thinking": {
37733
37985
  "mode": "effort",
37734
37986
  "minLevel": "minimal",
37735
- "maxLevel": "xhigh"
37987
+ "maxLevel": "high"
37736
37988
  }
37737
37989
  },
37738
37990
  "xiaomi/mimo-v2-omni": {
@@ -37777,7 +38029,7 @@
37777
38029
  "thinking": {
37778
38030
  "mode": "effort",
37779
38031
  "minLevel": "minimal",
37780
- "maxLevel": "xhigh"
38032
+ "maxLevel": "high"
37781
38033
  }
37782
38034
  },
37783
38035
  "z-ai/glm-4-32b": {
@@ -37820,7 +38072,7 @@
37820
38072
  "thinking": {
37821
38073
  "mode": "effort",
37822
38074
  "minLevel": "minimal",
37823
- "maxLevel": "xhigh"
38075
+ "maxLevel": "high"
37824
38076
  }
37825
38077
  },
37826
38078
  "z-ai/glm-4.5-air": {
@@ -37844,7 +38096,7 @@
37844
38096
  "thinking": {
37845
38097
  "mode": "effort",
37846
38098
  "minLevel": "minimal",
37847
- "maxLevel": "xhigh"
38099
+ "maxLevel": "high"
37848
38100
  }
37849
38101
  },
37850
38102
  "z-ai/glm-4.5-air:free": {
@@ -37868,7 +38120,7 @@
37868
38120
  "thinking": {
37869
38121
  "mode": "effort",
37870
38122
  "minLevel": "minimal",
37871
- "maxLevel": "xhigh"
38123
+ "maxLevel": "high"
37872
38124
  }
37873
38125
  },
37874
38126
  "z-ai/glm-4.5v": {
@@ -37893,7 +38145,7 @@
37893
38145
  "thinking": {
37894
38146
  "mode": "effort",
37895
38147
  "minLevel": "minimal",
37896
- "maxLevel": "xhigh"
38148
+ "maxLevel": "high"
37897
38149
  }
37898
38150
  },
37899
38151
  "z-ai/glm-4.6": {
@@ -37917,7 +38169,7 @@
37917
38169
  "thinking": {
37918
38170
  "mode": "effort",
37919
38171
  "minLevel": "minimal",
37920
- "maxLevel": "xhigh"
38172
+ "maxLevel": "high"
37921
38173
  }
37922
38174
  },
37923
38175
  "z-ai/glm-4.6:exacto": {
@@ -37941,7 +38193,7 @@
37941
38193
  "thinking": {
37942
38194
  "mode": "effort",
37943
38195
  "minLevel": "minimal",
37944
- "maxLevel": "xhigh"
38196
+ "maxLevel": "high"
37945
38197
  }
37946
38198
  },
37947
38199
  "z-ai/glm-4.6v": {
@@ -37966,7 +38218,7 @@
37966
38218
  "thinking": {
37967
38219
  "mode": "effort",
37968
38220
  "minLevel": "minimal",
37969
- "maxLevel": "xhigh"
38221
+ "maxLevel": "high"
37970
38222
  }
37971
38223
  },
37972
38224
  "z-ai/glm-4.7": {
@@ -37990,7 +38242,7 @@
37990
38242
  "thinking": {
37991
38243
  "mode": "effort",
37992
38244
  "minLevel": "minimal",
37993
- "maxLevel": "xhigh"
38245
+ "maxLevel": "high"
37994
38246
  }
37995
38247
  },
37996
38248
  "z-ai/glm-4.7-flash": {
@@ -38014,7 +38266,7 @@
38014
38266
  "thinking": {
38015
38267
  "mode": "effort",
38016
38268
  "minLevel": "minimal",
38017
- "maxLevel": "xhigh"
38269
+ "maxLevel": "high"
38018
38270
  }
38019
38271
  },
38020
38272
  "z-ai/glm-5": {
@@ -38038,7 +38290,7 @@
38038
38290
  "thinking": {
38039
38291
  "mode": "effort",
38040
38292
  "minLevel": "minimal",
38041
- "maxLevel": "xhigh"
38293
+ "maxLevel": "high"
38042
38294
  }
38043
38295
  },
38044
38296
  "z-ai/glm-5-turbo": {
@@ -38052,9 +38304,9 @@
38052
38304
  "text"
38053
38305
  ],
38054
38306
  "cost": {
38055
- "input": 0.96,
38056
- "output": 3.1999999999999997,
38057
- "cacheRead": 0.192,
38307
+ "input": 1.2,
38308
+ "output": 4,
38309
+ "cacheRead": 0.24,
38058
38310
  "cacheWrite": 0
38059
38311
  },
38060
38312
  "contextWindow": 200000,
@@ -38062,7 +38314,7 @@
38062
38314
  "thinking": {
38063
38315
  "mode": "effort",
38064
38316
  "minLevel": "minimal",
38065
- "maxLevel": "xhigh"
38317
+ "maxLevel": "high"
38066
38318
  }
38067
38319
  }
38068
38320
  },
@@ -38640,6 +38892,28 @@
38640
38892
  }
38641
38893
  },
38642
38894
  "venice": {
38895
+ "aion-labs.aion-2-0": {
38896
+ "id": "aion-labs.aion-2-0",
38897
+ "name": "aion-labs.aion-2-0",
38898
+ "api": "openai-completions",
38899
+ "provider": "venice",
38900
+ "baseUrl": "https://api.venice.ai/api/v1",
38901
+ "reasoning": false,
38902
+ "input": [
38903
+ "text"
38904
+ ],
38905
+ "cost": {
38906
+ "input": 0,
38907
+ "output": 0,
38908
+ "cacheRead": 0,
38909
+ "cacheWrite": 0
38910
+ },
38911
+ "contextWindow": 222222,
38912
+ "maxTokens": 8888,
38913
+ "compat": {
38914
+ "supportsUsageInStreaming": false
38915
+ }
38916
+ },
38643
38917
  "claude-opus-4-5": {
38644
38918
  "id": "claude-opus-4-5",
38645
38919
  "name": "Claude Opus 4.5 (latest)",
@@ -43428,6 +43702,51 @@
43428
43702
  "contextWindow": 2000000,
43429
43703
  "maxTokens": 30000
43430
43704
  },
43705
+ "grok-4.20-0309-non-reasoning": {
43706
+ "id": "grok-4.20-0309-non-reasoning",
43707
+ "name": "Grok 4.20 (Non-Reasoning)",
43708
+ "api": "openai-completions",
43709
+ "provider": "xai",
43710
+ "baseUrl": "https://api.x.ai/v1",
43711
+ "reasoning": false,
43712
+ "input": [
43713
+ "text",
43714
+ "image"
43715
+ ],
43716
+ "cost": {
43717
+ "input": 2,
43718
+ "output": 6,
43719
+ "cacheRead": 0.2,
43720
+ "cacheWrite": 0
43721
+ },
43722
+ "contextWindow": 2000000,
43723
+ "maxTokens": 30000
43724
+ },
43725
+ "grok-4.20-0309-reasoning": {
43726
+ "id": "grok-4.20-0309-reasoning",
43727
+ "name": "Grok 4.20 (Reasoning)",
43728
+ "api": "openai-completions",
43729
+ "provider": "xai",
43730
+ "baseUrl": "https://api.x.ai/v1",
43731
+ "reasoning": true,
43732
+ "input": [
43733
+ "text",
43734
+ "image"
43735
+ ],
43736
+ "cost": {
43737
+ "input": 2,
43738
+ "output": 6,
43739
+ "cacheRead": 0.2,
43740
+ "cacheWrite": 0
43741
+ },
43742
+ "contextWindow": 2000000,
43743
+ "maxTokens": 30000,
43744
+ "thinking": {
43745
+ "mode": "effort",
43746
+ "minLevel": "minimal",
43747
+ "maxLevel": "high"
43748
+ }
43749
+ },
43431
43750
  "grok-4.20-beta-latest-non-reasoning": {
43432
43751
  "id": "grok-4.20-beta-latest-non-reasoning",
43433
43752
  "name": "Grok 4.20 Beta (Non-Reasoning)",
@@ -44592,7 +44911,7 @@
44592
44911
  "cost": {
44593
44912
  "input": 0.024,
44594
44913
  "output": 0.096,
44595
- "cacheRead": 0,
44914
+ "cacheRead": 0.0048,
44596
44915
  "cacheWrite": 0
44597
44916
  },
44598
44917
  "contextWindow": 128000,
@@ -45754,7 +46073,7 @@
45754
46073
  },
45755
46074
  "qwen/qwen3-14b": {
45756
46075
  "id": "qwen/qwen3-14b",
45757
- "name": "Qwen: Qwen3 14B",
46076
+ "name": "Qwen: Qwen3-14B",
45758
46077
  "api": "openai-completions",
45759
46078
  "provider": "zenmux",
45760
46079
  "baseUrl": "https://zenmux.ai/api/v1",