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.
Files changed (2) hide show
  1. package/lib/ai-cli.sh +3 -2
  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 1200 gemini -y -m gemini-2.5-pro -p "$prompt" 2>&1)
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 1200 opencode -m zai-coding-plan/glm-4.6 run "$prompt" 2>&1)
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-evolve",
3
- "version": "1.7.13",
3
+ "version": "1.7.14",
4
4
  "bin": {
5
5
  "claude-evolve": "./bin/claude-evolve",
6
6
  "claude-evolve-main": "./bin/claude-evolve-main",