claude-evolve 1.6.1 → 1.6.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/config.sh +3 -1
- package/package.json +1 -1
- package/templates/config.yaml +4 -4
package/lib/config.sh
CHANGED
|
@@ -54,7 +54,9 @@ DEFAULT_MAX_RETRIES=3
|
|
|
54
54
|
DEFAULT_MEMORY_LIMIT_MB=12288
|
|
55
55
|
|
|
56
56
|
# Default LLM CLI configuration - use simple variables instead of arrays
|
|
57
|
-
|
|
57
|
+
# Run: 100% local with qwen3 via Ollama
|
|
58
|
+
DEFAULT_LLM_RUN="aider-qwen3"
|
|
59
|
+
# Ideate: Commercial models for idea generation
|
|
58
60
|
DEFAULT_LLM_IDEATE="gemini sonnet-think gpt5high o3high glm"
|
|
59
61
|
|
|
60
62
|
# Load configuration from config file
|
package/package.json
CHANGED
package/templates/config.yaml
CHANGED
|
@@ -70,10 +70,10 @@ llm_cli:
|
|
|
70
70
|
# Models are tried in order, with round-robin distribution across candidates
|
|
71
71
|
# You can repeat models for weighted selection (e.g., "sonnet sonnet gemini" for 2:1 ratio)
|
|
72
72
|
|
|
73
|
-
#
|
|
74
|
-
#
|
|
75
|
-
#run:
|
|
76
|
-
#ideate: gemini sonnet-think
|
|
73
|
+
# Default configuration: 100% local code generation, commercial ideation
|
|
74
|
+
# Commented out because these change over time; uncomment to override
|
|
75
|
+
#run: aider-qwen3
|
|
76
|
+
#ideate: gemini sonnet-think gpt5high o3high glm
|
|
77
77
|
|
|
78
78
|
# Available models:
|
|
79
79
|
# - sonnet: Claude 3.5 Sonnet via Claude CLI
|