@blockrun/clawrouter 0.12.55 → 0.12.56
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 +25 -0
- package/dist/cli.js.map +1 -1
- package/dist/index.js +25 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/scripts/reinstall.sh +2 -1
- package/scripts/update.sh +2 -1
package/dist/index.js
CHANGED
|
@@ -32883,6 +32883,10 @@ var MODEL_ALIASES = {
|
|
|
32883
32883
|
"gpt-120b": "nvidia/gpt-oss-120b",
|
|
32884
32884
|
// MiniMax
|
|
32885
32885
|
minimax: "minimax/minimax-m2.5",
|
|
32886
|
+
// Z.AI GLM-5
|
|
32887
|
+
glm: "zai/glm-5",
|
|
32888
|
+
"glm-5": "zai/glm-5",
|
|
32889
|
+
"glm-5-turbo": "zai/glm-5-turbo",
|
|
32886
32890
|
// Routing profile aliases (common variations)
|
|
32887
32891
|
"auto-router": "auto",
|
|
32888
32892
|
router: "auto"
|
|
@@ -33417,6 +33421,27 @@ var BLOCKRUN_MODELS = [
|
|
|
33417
33421
|
contextWindow: 262144,
|
|
33418
33422
|
maxOutput: 16384,
|
|
33419
33423
|
toolCalling: true
|
|
33424
|
+
},
|
|
33425
|
+
// Z.AI GLM-5 Models
|
|
33426
|
+
{
|
|
33427
|
+
id: "zai/glm-5",
|
|
33428
|
+
name: "GLM-5",
|
|
33429
|
+
version: "5",
|
|
33430
|
+
inputPrice: 1,
|
|
33431
|
+
outputPrice: 3.2,
|
|
33432
|
+
contextWindow: 2e5,
|
|
33433
|
+
maxOutput: 128e3,
|
|
33434
|
+
toolCalling: true
|
|
33435
|
+
},
|
|
33436
|
+
{
|
|
33437
|
+
id: "zai/glm-5-turbo",
|
|
33438
|
+
name: "GLM-5 Turbo",
|
|
33439
|
+
version: "5-turbo",
|
|
33440
|
+
inputPrice: 1.2,
|
|
33441
|
+
outputPrice: 4,
|
|
33442
|
+
contextWindow: 2e5,
|
|
33443
|
+
maxOutput: 128e3,
|
|
33444
|
+
toolCalling: true
|
|
33420
33445
|
}
|
|
33421
33446
|
];
|
|
33422
33447
|
function toOpenClawModel(m) {
|