claude-evolve 1.5.17 → 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.
Files changed (2) hide show
  1. package/lib/ai-cli.sh +1 -1
  2. package/package.json +1 -1
package/lib/ai-cli.sh CHANGED
@@ -34,7 +34,7 @@ call_ai_model_configured() {
34
34
  ;;
35
35
  o3high)
36
36
  local ai_output
37
- ai_output=$(timeout 500 codex exec --profile o3high --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)
38
38
  local ai_exit_code=$?
39
39
  ;;
40
40
  gemini)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-evolve",
3
- "version": "1.5.17",
3
+ "version": "1.5.18",
4
4
  "bin": {
5
5
  "claude-evolve": "./bin/claude-evolve",
6
6
  "claude-evolve-main": "./bin/claude-evolve-main",