claude-evolve 1.6.6 → 1.6.8
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 +2 -2
- package/package.json +1 -1
- package/templates/config.yaml +2 -2
package/lib/config.sh
CHANGED
|
@@ -56,8 +56,8 @@ DEFAULT_MEMORY_LIMIT_MB=12288
|
|
|
56
56
|
# Default LLM CLI configuration - use simple variables instead of arrays
|
|
57
57
|
# Run: 100% local with qwen3 via Codex+Ollama (more reliable than aider)
|
|
58
58
|
DEFAULT_LLM_RUN="codex-qwen3"
|
|
59
|
-
# Ideate: Commercial models for idea generation
|
|
60
|
-
DEFAULT_LLM_IDEATE="gemini sonnet-think gpt5high o3high glm grok-4"
|
|
59
|
+
# Ideate: Commercial models for idea generation + local fallback
|
|
60
|
+
DEFAULT_LLM_IDEATE="gemini sonnet-think gpt5high o3high glm grok-4 codex-qwen3"
|
|
61
61
|
|
|
62
62
|
# Load configuration from config file
|
|
63
63
|
load_config() {
|
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
|
-
# Default configuration: 100% local code generation, commercial ideation
|
|
73
|
+
# Default configuration: 100% local code generation, commercial ideation + local fallback
|
|
74
74
|
# Commented out because these change over time; uncomment to override
|
|
75
75
|
#run: codex-qwen3
|
|
76
|
-
#ideate: gemini sonnet-think gpt5high o3high glm grok-4
|
|
76
|
+
#ideate: gemini sonnet-think gpt5high o3high glm grok-4 codex-qwen3
|
|
77
77
|
|
|
78
78
|
# Available models:
|
|
79
79
|
# - sonnet: Claude 3.5 Sonnet via Claude CLI
|