claude-evolve 1.5.33 → 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/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/package.json
CHANGED
package/templates/config.yaml
CHANGED