@blockrun/clawrouter 0.9.28 → 0.9.30
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/cli.js +8 -1
- package/dist/cli.js.map +1 -1
- package/dist/index.js +8 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -1483,6 +1483,10 @@ var MODEL_ALIASES = {
|
|
|
1483
1483
|
"anthropic/claude-opus-4.6": "anthropic/claude-opus-4-6",
|
|
1484
1484
|
"anthropic/claude-opus-4.5": "anthropic/claude-opus-4-5",
|
|
1485
1485
|
"anthropic/claude-haiku-4.5": "anthropic/claude-haiku-4-5",
|
|
1486
|
+
// Base model names without version -> route to latest
|
|
1487
|
+
"anthropic/claude-sonnet-4": "anthropic/claude-sonnet-4-6",
|
|
1488
|
+
"anthropic/claude-opus-4": "anthropic/claude-opus-4-6",
|
|
1489
|
+
"anthropic/claude-haiku-4": "anthropic/claude-haiku-4-5",
|
|
1486
1490
|
// OpenAI
|
|
1487
1491
|
gpt: "openai/gpt-4o",
|
|
1488
1492
|
gpt4: "openai/gpt-4o",
|
|
@@ -1506,7 +1510,10 @@ var MODEL_ALIASES = {
|
|
|
1506
1510
|
nvidia: "nvidia/gpt-oss-120b",
|
|
1507
1511
|
"gpt-120b": "nvidia/gpt-oss-120b",
|
|
1508
1512
|
// MiniMax
|
|
1509
|
-
minimax: "minimax/minimax-m2.5"
|
|
1513
|
+
minimax: "minimax/minimax-m2.5",
|
|
1514
|
+
// Routing profile aliases (common variations)
|
|
1515
|
+
"auto-router": "auto",
|
|
1516
|
+
router: "auto"
|
|
1510
1517
|
// Note: auto, free, eco, premium are virtual routing profiles registered in BLOCKRUN_MODELS
|
|
1511
1518
|
// They don't need aliases since they're already top-level model IDs
|
|
1512
1519
|
};
|