claude-all-config 3.6.2 → 3.6.3
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/VERSION +1 -1
- package/claude-all +7 -7
- package/models/README.md +3 -3
- package/models/agentrouter/config.json +2 -2
- package/models/glm/config.json +7 -12
- package/package.json +1 -1
- package/providers/claude-glm-wrapper.sh +1 -1
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.6.
|
|
1
|
+
3.6.3
|
package/claude-all
CHANGED
|
@@ -1913,8 +1913,8 @@ case $choice in
|
|
|
1913
1913
|
echo ""
|
|
1914
1914
|
echo -e "${GREEN}✨ AVAILABLE MODELS:${NC}"
|
|
1915
1915
|
echo ""
|
|
1916
|
-
echo " 1) 🚀 glm-
|
|
1917
|
-
echo " 2)
|
|
1916
|
+
echo " 1) 🚀 glm-5 (Flagship - latest gen) ⭐"
|
|
1917
|
+
echo " 2) ⚡ glm-5.1 (Tuned - balanced speed + quality)"
|
|
1918
1918
|
echo ""
|
|
1919
1919
|
|
|
1920
1920
|
read -p "Select model [1-2, default: 1]: " model_choice
|
|
@@ -1922,15 +1922,15 @@ case $choice in
|
|
|
1922
1922
|
|
|
1923
1923
|
case "$model_choice" in
|
|
1924
1924
|
1)
|
|
1925
|
-
MODEL_NAME="glm-
|
|
1926
|
-
echo -e "${GREEN}✓ Selected: glm-
|
|
1925
|
+
MODEL_NAME="glm-5"
|
|
1926
|
+
echo -e "${GREEN}✓ Selected: glm-5${NC}"
|
|
1927
1927
|
;;
|
|
1928
1928
|
2)
|
|
1929
|
-
MODEL_NAME="glm-
|
|
1930
|
-
echo -e "${GREEN}✓ Selected: glm-
|
|
1929
|
+
MODEL_NAME="glm-5.1"
|
|
1930
|
+
echo -e "${GREEN}✓ Selected: glm-5.1${NC}"
|
|
1931
1931
|
;;
|
|
1932
1932
|
*)
|
|
1933
|
-
MODEL_NAME="glm-
|
|
1933
|
+
MODEL_NAME="glm-5"
|
|
1934
1934
|
;;
|
|
1935
1935
|
esac
|
|
1936
1936
|
|
package/models/README.md
CHANGED
package/models/glm/config.json
CHANGED
|
@@ -4,21 +4,16 @@
|
|
|
4
4
|
"api_base": "https://open.bigmodel.cn/api/paas/v4",
|
|
5
5
|
"models": [
|
|
6
6
|
{
|
|
7
|
-
"id": "glm-
|
|
8
|
-
"name": "GLM-
|
|
9
|
-
"description": "Flagship model
|
|
7
|
+
"id": "glm-5",
|
|
8
|
+
"name": "GLM-5",
|
|
9
|
+
"description": "Flagship model — latest generation, coding + reasoning ⭐"
|
|
10
10
|
},
|
|
11
11
|
{
|
|
12
|
-
"id": "glm-
|
|
13
|
-
"name": "GLM-
|
|
14
|
-
"description": "
|
|
15
|
-
},
|
|
16
|
-
{
|
|
17
|
-
"id": "glm-4.7-flash",
|
|
18
|
-
"name": "GLM-4.7-Flash",
|
|
19
|
-
"description": "Free unlimited model"
|
|
12
|
+
"id": "glm-5.1",
|
|
13
|
+
"name": "GLM-5.1",
|
|
14
|
+
"description": "Tuned variant — balanced speed + quality ⚡"
|
|
20
15
|
}
|
|
21
16
|
],
|
|
22
|
-
"default_model": "glm-
|
|
17
|
+
"default_model": "glm-5",
|
|
23
18
|
"context_window": 128000
|
|
24
19
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-all-config",
|
|
3
|
-
"version": "3.6.
|
|
3
|
+
"version": "3.6.3",
|
|
4
4
|
"description": "🦾 MONSTER ENGINEER v2 - Ultimate AI CLI with 63 Skills, 12 Superpowers, 14 Agents. Multi-Agent Orchestration, Cost-Aware, Security Scorecard, Parallel-First.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -45,7 +45,7 @@ export ANTHROPIC_BASE_URL="https://api.z.ai/api/anthropic"
|
|
|
45
45
|
export ANTHROPIC_API_KEY="$API_KEY"
|
|
46
46
|
|
|
47
47
|
# Model name from argument or default
|
|
48
|
-
MODEL_NAME="${1:-glm-
|
|
48
|
+
MODEL_NAME="${1:-glm-5}"
|
|
49
49
|
|
|
50
50
|
echo -e "${BLUE}Starting GLM Chat${NC}"
|
|
51
51
|
echo -e "${GREEN}Model: $MODEL_NAME${NC}"
|