@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/cli.js
CHANGED
|
@@ -40448,6 +40448,10 @@ var MODEL_ALIASES = {
|
|
|
40448
40448
|
"gpt-120b": "nvidia/gpt-oss-120b",
|
|
40449
40449
|
// MiniMax
|
|
40450
40450
|
minimax: "minimax/minimax-m2.5",
|
|
40451
|
+
// Z.AI GLM-5
|
|
40452
|
+
glm: "zai/glm-5",
|
|
40453
|
+
"glm-5": "zai/glm-5",
|
|
40454
|
+
"glm-5-turbo": "zai/glm-5-turbo",
|
|
40451
40455
|
// Routing profile aliases (common variations)
|
|
40452
40456
|
"auto-router": "auto",
|
|
40453
40457
|
router: "auto"
|
|
@@ -40982,6 +40986,27 @@ var BLOCKRUN_MODELS = [
|
|
|
40982
40986
|
contextWindow: 262144,
|
|
40983
40987
|
maxOutput: 16384,
|
|
40984
40988
|
toolCalling: true
|
|
40989
|
+
},
|
|
40990
|
+
// Z.AI GLM-5 Models
|
|
40991
|
+
{
|
|
40992
|
+
id: "zai/glm-5",
|
|
40993
|
+
name: "GLM-5",
|
|
40994
|
+
version: "5",
|
|
40995
|
+
inputPrice: 1,
|
|
40996
|
+
outputPrice: 3.2,
|
|
40997
|
+
contextWindow: 2e5,
|
|
40998
|
+
maxOutput: 128e3,
|
|
40999
|
+
toolCalling: true
|
|
41000
|
+
},
|
|
41001
|
+
{
|
|
41002
|
+
id: "zai/glm-5-turbo",
|
|
41003
|
+
name: "GLM-5 Turbo",
|
|
41004
|
+
version: "5-turbo",
|
|
41005
|
+
inputPrice: 1.2,
|
|
41006
|
+
outputPrice: 4,
|
|
41007
|
+
contextWindow: 2e5,
|
|
41008
|
+
maxOutput: 128e3,
|
|
41009
|
+
toolCalling: true
|
|
40985
41010
|
}
|
|
40986
41011
|
];
|
|
40987
41012
|
function toOpenClawModel(m) {
|