@blockrun/clawrouter 0.9.24 → 0.9.26
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 +7 -6
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/scripts/reinstall.sh +51 -37
package/dist/index.js
CHANGED
|
@@ -5383,9 +5383,9 @@ function injectModelsConfig(logger) {
|
|
|
5383
5383
|
{ id: "eco", alias: "eco" },
|
|
5384
5384
|
{ id: "premium", alias: "premium" },
|
|
5385
5385
|
{ id: "free", alias: "free" },
|
|
5386
|
-
{ id: "sonnet", alias: "
|
|
5387
|
-
{ id: "opus", alias: "
|
|
5388
|
-
{ id: "haiku", alias: "
|
|
5386
|
+
{ id: "sonnet", alias: "sonnet4.6" },
|
|
5387
|
+
{ id: "opus", alias: "opus4.6" },
|
|
5388
|
+
{ id: "haiku", alias: "haiku" },
|
|
5389
5389
|
{ id: "gpt5", alias: "gpt5" },
|
|
5390
5390
|
{ id: "codex", alias: "codex" },
|
|
5391
5391
|
{ id: "grok-fast", alias: "grok-fast" },
|
|
@@ -5394,15 +5394,16 @@ function injectModelsConfig(logger) {
|
|
|
5394
5394
|
{ id: "reasoner", alias: "reasoner" },
|
|
5395
5395
|
{ id: "kimi", alias: "kimi" },
|
|
5396
5396
|
{ id: "minimax", alias: "minimax" },
|
|
5397
|
-
{ id: "gemini", alias: "gemini" }
|
|
5398
|
-
{ id: "flash", alias: "flash" }
|
|
5397
|
+
{ id: "gemini", alias: "gemini" }
|
|
5399
5398
|
];
|
|
5400
5399
|
const DEPRECATED_ALIASES = [
|
|
5401
5400
|
"blockrun/nvidia",
|
|
5402
5401
|
"blockrun/gpt",
|
|
5403
5402
|
"blockrun/o3",
|
|
5404
5403
|
"blockrun/grok",
|
|
5405
|
-
"blockrun/mini"
|
|
5404
|
+
"blockrun/mini",
|
|
5405
|
+
"blockrun/flash"
|
|
5406
|
+
// removed from picker - use gemini instead
|
|
5406
5407
|
];
|
|
5407
5408
|
if (!defaults.models) {
|
|
5408
5409
|
defaults.models = {};
|