claude-evolve 1.7.13 → 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/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)
|