claude-evolve 1.7.12 → 1.7.14
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/lib/ai-cli.sh +3 -2
- package/lib/config.sh +1 -1
- package/package.json +1 -1
package/lib/ai-cli.sh
CHANGED
|
@@ -68,7 +68,7 @@ $prompt"
|
|
|
68
68
|
gemini-pro)
|
|
69
69
|
local ai_output
|
|
70
70
|
# Gemini needs longer timeout as it streams output while working (20 minutes)
|
|
71
|
-
ai_output=$(timeout
|
|
71
|
+
ai_output=$(timeout 1800 gemini -y -m gemini-2.5-pro -p "$prompt" 2>&1)
|
|
72
72
|
local ai_exit_code=$?
|
|
73
73
|
;;
|
|
74
74
|
gemini-flash)
|
|
@@ -93,8 +93,9 @@ $prompt"
|
|
|
93
93
|
local ai_exit_code=$?
|
|
94
94
|
;;
|
|
95
95
|
glm-zai)
|
|
96
|
+
# GLM -- can be slow sometimes
|
|
96
97
|
local ai_output
|
|
97
|
-
ai_output=$(timeout
|
|
98
|
+
ai_output=$(timeout 1800 opencode -m zai-coding-plan/glm-4.6 run "$prompt" 2>&1)
|
|
98
99
|
local ai_exit_code=$?
|
|
99
100
|
;;
|
|
100
101
|
deepseek-openrouter)
|
package/lib/config.sh
CHANGED
|
@@ -58,7 +58,7 @@ DEFAULT_MEMORY_LIMIT_MB=12288
|
|
|
58
58
|
DEFAULT_WORKER_MAX_CANDIDATES=3
|
|
59
59
|
|
|
60
60
|
# Default LLM CLI configuration
|
|
61
|
-
DEFAULT_LLM_RUN="glm-zai glm-zai glm-zai glm-zai glm-zai codex-oss-local gemini-flash haiku
|
|
61
|
+
DEFAULT_LLM_RUN="glm-zai glm-zai glm-zai glm-zai glm-zai codex-oss-local gemini-flash haiku"
|
|
62
62
|
# Ideate: Commercial models for idea generation + local fallback
|
|
63
63
|
DEFAULT_LLM_IDEATE="gemini-pro sonnet-think gpt5high glm-openrouter grok-4-openrouter deepseek-openrouter glm-zai"
|
|
64
64
|
|