@blockrun/clawrouter 0.6.3 → 0.6.4
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/dist/index.js +20 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -26,6 +26,7 @@ var MODEL_ALIASES = {
|
|
|
26
26
|
// NVIDIA (free)
|
|
27
27
|
nvidia: "nvidia/gpt-oss-120b",
|
|
28
28
|
"gpt-120b": "nvidia/gpt-oss-120b",
|
|
29
|
+
"gpt-20b": "nvidia/gpt-oss-20b",
|
|
29
30
|
free: "nvidia/gpt-oss-120b"
|
|
30
31
|
};
|
|
31
32
|
function resolveModelAlias(model) {
|
|
@@ -168,7 +169,15 @@ var BLOCKRUN_MODELS = [
|
|
|
168
169
|
maxOutput: 65536,
|
|
169
170
|
reasoning: true
|
|
170
171
|
},
|
|
171
|
-
|
|
172
|
+
{
|
|
173
|
+
id: "openai/o4-mini",
|
|
174
|
+
name: "o4-mini",
|
|
175
|
+
inputPrice: 1.1,
|
|
176
|
+
outputPrice: 4.4,
|
|
177
|
+
contextWindow: 128e3,
|
|
178
|
+
maxOutput: 65536,
|
|
179
|
+
reasoning: true
|
|
180
|
+
},
|
|
172
181
|
// Anthropic - all Claude models excel at agentic workflows
|
|
173
182
|
{
|
|
174
183
|
id: "anthropic/claude-haiku-4.5",
|
|
@@ -365,7 +374,15 @@ var BLOCKRUN_MODELS = [
|
|
|
365
374
|
inputPrice: 0,
|
|
366
375
|
outputPrice: 0,
|
|
367
376
|
contextWindow: 128e3,
|
|
368
|
-
maxOutput:
|
|
377
|
+
maxOutput: 16384
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
id: "nvidia/gpt-oss-20b",
|
|
381
|
+
name: "NVIDIA GPT-OSS 20B",
|
|
382
|
+
inputPrice: 0,
|
|
383
|
+
outputPrice: 0,
|
|
384
|
+
contextWindow: 128e3,
|
|
385
|
+
maxOutput: 16384
|
|
369
386
|
},
|
|
370
387
|
{
|
|
371
388
|
id: "nvidia/kimi-k2.5",
|
|
@@ -373,7 +390,7 @@ var BLOCKRUN_MODELS = [
|
|
|
373
390
|
inputPrice: 1e-3,
|
|
374
391
|
outputPrice: 1e-3,
|
|
375
392
|
contextWindow: 262144,
|
|
376
|
-
maxOutput:
|
|
393
|
+
maxOutput: 16384
|
|
377
394
|
}
|
|
378
395
|
];
|
|
379
396
|
function toOpenClawModel(m) {
|