claude-evolve 1.8.20 → 1.8.21
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 +6 -0
- package/lib/config.sh +2 -2
- package/package.json +1 -1
package/lib/ai-cli.sh
CHANGED
|
@@ -85,6 +85,12 @@ $prompt"
|
|
|
85
85
|
ai_output=$(timeout -k 30 1200 gemini -y -m gemini-2.5-flash -p "$prompt" 2>&1)
|
|
86
86
|
local ai_exit_code=$?
|
|
87
87
|
;;
|
|
88
|
+
gemini-3-pro-preview)
|
|
89
|
+
local ai_output
|
|
90
|
+
# Gemini v3 Pro Preview via OpenRouter (30 minute timeout)
|
|
91
|
+
ai_output=$(timeout -k 30 1800 opencode -m openrouter/google/gemini-3-pro-preview run "$prompt" 2>&1)
|
|
92
|
+
local ai_exit_code=$?
|
|
93
|
+
;;
|
|
88
94
|
cursor-sonnet)
|
|
89
95
|
local ai_output
|
|
90
96
|
ai_output=$(timeout -k 30 600 cursor-agent sonnet-4.5 -p "$prompt" 2>&1)
|
package/lib/config.sh
CHANGED
|
@@ -58,9 +58,9 @@ 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
|
|
61
|
+
DEFAULT_LLM_RUN="glm-zai glm-zai glm-zai glm-zai glm-zai codex-oss-local haiku"
|
|
62
62
|
# Ideate: Commercial models for idea generation + local fallback
|
|
63
|
-
DEFAULT_LLM_IDEATE="opus-openrouter kimi-k2-think-moonshot gemini-pro sonnet-think gpt5high grok-4-openrouter deepseek-openrouter glm-zai"
|
|
63
|
+
DEFAULT_LLM_IDEATE="opus-openrouter kimi-k2-think-moonshot gemini-3-pro-preview sonnet-think gpt5high grok-4-openrouter deepseek-openrouter glm-zai"
|
|
64
64
|
|
|
65
65
|
# Load configuration from a YAML file and update variables
|
|
66
66
|
_load_yaml_config() {
|