claude-evolve 1.5.16 → 1.5.18
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 -8
- package/package.json +1 -1
package/lib/ai-cli.sh
CHANGED
|
@@ -24,22 +24,17 @@ call_ai_model_configured() {
|
|
|
24
24
|
;;
|
|
25
25
|
gpt5high)
|
|
26
26
|
local ai_output
|
|
27
|
-
ai_output=$(timeout 420 codex exec
|
|
27
|
+
ai_output=$(timeout 420 codex exec -m gpt-5 -c model_reasoning_effort="high" --dangerously-bypass-approvals-and-sandbox "$prompt" 2>&1)
|
|
28
28
|
local ai_exit_code=$?
|
|
29
29
|
;;
|
|
30
30
|
gpt5)
|
|
31
31
|
local ai_output
|
|
32
|
-
ai_output=$(timeout 420 codex exec --dangerously-bypass-approvals-and-sandbox "$prompt" 2>&1)
|
|
32
|
+
ai_output=$(timeout 420 codex exec -m gpt-5 --dangerously-bypass-approvals-and-sandbox "$prompt" 2>&1)
|
|
33
33
|
local ai_exit_code=$?
|
|
34
34
|
;;
|
|
35
35
|
o3high)
|
|
36
36
|
local ai_output
|
|
37
|
-
ai_output=$(timeout 500 codex exec
|
|
38
|
-
local ai_exit_code=$?
|
|
39
|
-
;;
|
|
40
|
-
codex)
|
|
41
|
-
local ai_output
|
|
42
|
-
ai_output=$(timeout 420 codex exec --dangerously-bypass-approvals-and-sandbox "$prompt" 2>&1)
|
|
37
|
+
ai_output=$(timeout 500 codex exec -m o3-mini -c model_reasoning_effort="high" --dangerously-bypass-approvals-and-sandbox "$prompt" 2>&1)
|
|
43
38
|
local ai_exit_code=$?
|
|
44
39
|
;;
|
|
45
40
|
gemini)
|