claude-evolve 1.12.0 → 1.13.0
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 +3 -3
- package/package.json +1 -1
package/lib/ai-cli.sh
CHANGED
|
@@ -96,12 +96,12 @@ $prompt"
|
|
|
96
96
|
;;
|
|
97
97
|
opus-openrouter)
|
|
98
98
|
local ai_output
|
|
99
|
-
ai_output=$(opencode -m openrouter/anthropic/claude-opus-4.
|
|
99
|
+
ai_output=$(opencode -m openrouter/anthropic/claude-opus-4.7 run "$prompt" 2>&1)
|
|
100
100
|
local ai_exit_code=$?
|
|
101
101
|
;;
|
|
102
102
|
cursor-sonnet)
|
|
103
103
|
local ai_output
|
|
104
|
-
ai_output=$(cursor-agent sonnet-4.
|
|
104
|
+
ai_output=$(cursor-agent sonnet-4.6 -p "$prompt" 2>&1)
|
|
105
105
|
local ai_exit_code=$?
|
|
106
106
|
;;
|
|
107
107
|
cursor-opus)
|
|
@@ -258,7 +258,7 @@ $prompt"
|
|
|
258
258
|
;;
|
|
259
259
|
ollama-qwen)
|
|
260
260
|
local ai_output
|
|
261
|
-
ai_output=$(codex exec --dangerously-bypass-approvals-and-sandbox --skip-git-repo-check --oss --local-provider=ollama -m qwen3.
|
|
261
|
+
ai_output=$(codex exec --dangerously-bypass-approvals-and-sandbox --skip-git-repo-check --oss --local-provider=ollama -m qwen3.6:cloud "$prompt" 2>&1)
|
|
262
262
|
local ai_exit_code=$?
|
|
263
263
|
;;
|
|
264
264
|
# --- Local inference ---
|