claude-evolve 1.9.2 → 1.9.3
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.py +7 -0
- package/package.json +1 -1
package/lib/ai_cli.py
CHANGED
|
@@ -6,6 +6,7 @@ AIDEV-NOTE: This keeps ai-cli.sh as the source of truth for model configs and ti
|
|
|
6
6
|
|
|
7
7
|
import os
|
|
8
8
|
import subprocess
|
|
9
|
+
import sys
|
|
9
10
|
import tempfile
|
|
10
11
|
from pathlib import Path
|
|
11
12
|
from typing import Optional, Tuple
|
|
@@ -125,6 +126,12 @@ def call_ai(
|
|
|
125
126
|
stderr = result.stderr
|
|
126
127
|
exit_code = result.returncode
|
|
127
128
|
|
|
129
|
+
# Print stderr (contains model selection and debug info)
|
|
130
|
+
if stderr:
|
|
131
|
+
for line in stderr.strip().split('\n'):
|
|
132
|
+
if line:
|
|
133
|
+
print(f" {line}", file=sys.stderr)
|
|
134
|
+
|
|
128
135
|
# Read model name from temp file
|
|
129
136
|
model_name = "unknown"
|
|
130
137
|
if os.path.exists(model_file):
|