claude-evolve 1.9.4 → 1.9.5
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 +14 -1
- package/lib/config.sh +4 -2
- package/package.json +1 -1
package/lib/ai-cli.sh
CHANGED
|
@@ -123,10 +123,16 @@ $prompt"
|
|
|
123
123
|
;;
|
|
124
124
|
gemini-3-pro-preview)
|
|
125
125
|
local ai_output
|
|
126
|
-
# Gemini v3 Pro Preview via OpenRouter (30 minute timeout)
|
|
126
|
+
# Gemini v3 Pro Preview via OpenRouter (30 minute timeout) - EXPENSIVE
|
|
127
127
|
ai_output=$(timeout -k 30 1800 opencode -m openrouter/google/gemini-3-pro-preview run "$prompt" 2>&1)
|
|
128
128
|
local ai_exit_code=$?
|
|
129
129
|
;;
|
|
130
|
+
gemini-3-flash)
|
|
131
|
+
local ai_output
|
|
132
|
+
# Gemini 3 Flash - fast, cheap, strong thinker
|
|
133
|
+
ai_output=$(timeout -k 30 600 opencode -m openrouter/google/gemini-3-flash-preview run "$prompt" 2>&1)
|
|
134
|
+
local ai_exit_code=$?
|
|
135
|
+
;;
|
|
130
136
|
cursor-sonnet)
|
|
131
137
|
local ai_output
|
|
132
138
|
ai_output=$(timeout -k 30 600 cursor-agent sonnet-4.5 -p "$prompt" 2>&1)
|
|
@@ -160,9 +166,16 @@ $prompt"
|
|
|
160
166
|
;;
|
|
161
167
|
grok-4-openrouter)
|
|
162
168
|
local ai_output
|
|
169
|
+
# EXPENSIVE - consider grok-4.1-fast instead
|
|
163
170
|
ai_output=$(timeout -k 30 600 opencode -m openrouter/x-ai/grok-4 run "$prompt" 2>&1)
|
|
164
171
|
local ai_exit_code=$?
|
|
165
172
|
;;
|
|
173
|
+
grok-4.1-fast)
|
|
174
|
+
local ai_output
|
|
175
|
+
# Grok 4.1 Fast - close to Grok 4 quality, much cheaper
|
|
176
|
+
ai_output=$(timeout -k 30 600 opencode -m openrouter/x-ai/grok-4.1-fast run "$prompt" 2>&1)
|
|
177
|
+
local ai_exit_code=$?
|
|
178
|
+
;;
|
|
166
179
|
opus-openrouter)
|
|
167
180
|
local ai_output
|
|
168
181
|
ai_output=$(timeout -k 30 600 opencode -m openrouter/anthropic/claude-opus-4.1 run "$prompt" 2>&1)
|
package/lib/config.sh
CHANGED
|
@@ -58,9 +58,11 @@ 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 kimi-coder codex-oss-local haiku"
|
|
61
|
+
DEFAULT_LLM_RUN="glm-zai glm-zai glm-zai glm-zai glm-zai kimi-coder gemini-3-flash codex-oss-local haiku"
|
|
62
62
|
# Ideate: Commercial models for idea generation + local fallback
|
|
63
|
-
|
|
63
|
+
# Removed: gemini-3-pro-preview (expensive), grok-4-openrouter (expensive)
|
|
64
|
+
# Added: gemini-3-flash (cheap thinker), grok-4.1-fast (cheaper than grok-4)
|
|
65
|
+
DEFAULT_LLM_IDEATE="opus-think kimi-k2-openrouter gemini-3-flash gpt5high grok-4.1-fast deepseek-openrouter glm-zai"
|
|
64
66
|
|
|
65
67
|
# Load configuration from a YAML file and update variables
|
|
66
68
|
_load_yaml_config() {
|