claude-evolve 1.0.3 → 1.0.4

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.
@@ -166,7 +166,7 @@ Format: One idea per line, no numbering, no extra formatting."
166
166
 
167
167
  # Call Claude and process response
168
168
  local response
169
- if ! response=$(echo "$prompt" | claude -p 2>&1); then
169
+ if ! response=$(echo "$prompt" | claude -p --model opus 2>&1); then
170
170
  echo "[WARN] Claude API call failed, falling back to manual entry."
171
171
  return 1
172
172
  fi
@@ -176,7 +176,7 @@ INSTRUCTIONS:
176
176
  The output should be a complete, executable Python file that builds upon the existing algorithm."
177
177
 
178
178
  # Generate mutation
179
- if ! generated_code=$(echo "$prompt" | "$claude_cmd"); then
179
+ if ! generated_code=$(echo "$prompt" | "$claude_cmd" --model sonnet); then
180
180
  echo "[ERROR] Claude failed to generate algorithm mutation" >&2
181
181
  update_csv_row "$row_num" "" "failed"
182
182
  exit 1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-evolve",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "bin": {
5
5
  "claude-evolve": "./bin/claude-evolve",
6
6
  "claude-evolve-main": "./bin/claude-evolve-main",