claude-evolve 1.6.28 → 1.6.29
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 +8 -8
- package/package.json +1 -1
package/lib/ai-cli.sh
CHANGED
|
@@ -55,16 +55,16 @@ $prompt"
|
|
|
55
55
|
ai_output=$(timeout 500 codex exec -m o3-mini -c model_reasoning_effort="high" --dangerously-bypass-approvals-and-sandbox "$prompt" 2>&1)
|
|
56
56
|
local ai_exit_code=$?
|
|
57
57
|
;;
|
|
58
|
-
gemini
|
|
59
|
-
# Unified Gemini handling; gemini-flash behaves like standard gemini.
|
|
60
|
-
# Debug: Show exact command
|
|
61
|
-
echo "[DEBUG] Running: timeout 1200 gemini -y -p <prompt>" >&2
|
|
62
|
-
echo "[DEBUG] Working directory: $(pwd)" >&2
|
|
63
|
-
echo "[DEBUG] Files in current dir:" >&2
|
|
64
|
-
ls -la temp-csv-*.csv 2>&1 | head -5 >&2
|
|
58
|
+
gemini)
|
|
65
59
|
local ai_output
|
|
66
60
|
# Gemini needs longer timeout as it streams output while working (20 minutes)
|
|
67
|
-
ai_output=$(timeout 1200 gemini -y -p "$prompt" 2>&1)
|
|
61
|
+
ai_output=$(timeout 1200 gemini -y -m gemini-2.5-pro -p "$prompt" 2>&1)
|
|
62
|
+
local ai_exit_code=$?
|
|
63
|
+
;;
|
|
64
|
+
gemini-flash)
|
|
65
|
+
local ai_output
|
|
66
|
+
# Gemini needs longer timeout as it streams output while working (20 minutes)
|
|
67
|
+
ai_output=$(timeout 1200 gemini -y -m gemini-2.5-flash -p "$prompt" 2>&1)
|
|
68
68
|
local ai_exit_code=$?
|
|
69
69
|
;;
|
|
70
70
|
cursor-sonnet)
|