claude-evolve 1.5.32 → 1.5.34
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 +10 -0
- package/lib/config.sh +1 -1
- package/package.json +1 -1
- package/templates/config.yaml +2 -0
package/lib/ai-cli.sh
CHANGED
|
@@ -86,6 +86,16 @@ $prompt"
|
|
|
86
86
|
ai_output=$(timeout 300 opencode -m openrouter/deepseek/deepseek-v3.1-terminus run "$prompt" 2>&1)
|
|
87
87
|
local ai_exit_code=$?
|
|
88
88
|
;;
|
|
89
|
+
grok-code-fast)
|
|
90
|
+
local ai_output
|
|
91
|
+
ai_output=$(timeout 300 opencode -m openrouter/x-ai/grok-code-fast-1 run "$prompt" 2>&1)
|
|
92
|
+
local ai_exit_code=$?
|
|
93
|
+
;;
|
|
94
|
+
grok-4)
|
|
95
|
+
local ai_output
|
|
96
|
+
ai_output=$(timeout 300 opencode -m openrouter/x-ai/grok-4 run "$prompt" 2>&1)
|
|
97
|
+
local ai_exit_code=$?
|
|
98
|
+
;;
|
|
89
99
|
*)
|
|
90
100
|
echo "[ERROR] Unknown model: $model_name" >&2
|
|
91
101
|
return 1
|
package/lib/config.sh
CHANGED
|
@@ -54,7 +54,7 @@ DEFAULT_MAX_RETRIES=3
|
|
|
54
54
|
DEFAULT_MEMORY_LIMIT_MB=12288
|
|
55
55
|
|
|
56
56
|
# Default LLM CLI configuration - use simple variables instead of arrays
|
|
57
|
-
DEFAULT_LLM_RUN="gpt5 cursor-sonnet deepseek"
|
|
57
|
+
DEFAULT_LLM_RUN="sonnet gpt5 cursor-sonnet deepseek"
|
|
58
58
|
DEFAULT_LLM_IDEATE="gemini sonnet-think gpt5high o3high glm"
|
|
59
59
|
|
|
60
60
|
# Load configuration from config file
|
package/package.json
CHANGED
package/templates/config.yaml
CHANGED