claude-evolve 1.8.31 → 1.8.33
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.sh +3 -2
- package/lib/config.sh +2 -2
- package/package.json +1 -1
- package/templates/config.yaml +2 -2
package/lib/ai-cli.sh
CHANGED
|
@@ -337,8 +337,9 @@ call_ai_with_round_robin() {
|
|
|
337
337
|
# Use the shuffled array directly
|
|
338
338
|
local ordered_models=("${models[@]}")
|
|
339
339
|
|
|
340
|
-
|
|
341
|
-
|
|
340
|
+
# Debug output (commented out - no need to show shuffled order every time)
|
|
341
|
+
# echo "[AI] Model order for $command (random): ${ordered_models[*]}" >&2
|
|
342
|
+
|
|
342
343
|
# Track models that hit usage limits
|
|
343
344
|
local limited_models=()
|
|
344
345
|
local tried_models=()
|
package/lib/config.sh
CHANGED
|
@@ -58,9 +58,9 @@ DEFAULT_MEMORY_LIMIT_MB=12288
|
|
|
58
58
|
DEFAULT_WORKER_MAX_CANDIDATES=3
|
|
59
59
|
|
|
60
60
|
# Default LLM CLI configuration
|
|
61
|
-
DEFAULT_LLM_RUN="glm-zai
|
|
61
|
+
DEFAULT_LLM_RUN="glm-zai kimi-coder glm-zai kimi-coder glm-zai kimi-coder codex-oss-local haiku"
|
|
62
62
|
# Ideate: Commercial models for idea generation + local fallback
|
|
63
|
-
DEFAULT_LLM_IDEATE="opus-
|
|
63
|
+
DEFAULT_LLM_IDEATE="opus-think kimi-k2-openrouter gemini-3-pro-preview sonnet-think gpt5high grok-4-openrouter deepseek-openrouter glm-zai"
|
|
64
64
|
|
|
65
65
|
# Load configuration from a YAML file and update variables
|
|
66
66
|
_load_yaml_config() {
|
package/package.json
CHANGED
package/templates/config.yaml
CHANGED
|
@@ -77,9 +77,9 @@ llm_cli:
|
|
|
77
77
|
# Models are tried in order, with round-robin distribution across candidates
|
|
78
78
|
# You can repeat models for weighted selection (e.g., "sonnet sonnet gemini" for 2:1 ratio)
|
|
79
79
|
|
|
80
|
-
# Default configuration:
|
|
80
|
+
# Default configuration: 50/50 split between glm-zai and kimi-coder, commercial ideation
|
|
81
81
|
# Commented out because these change over time; uncomment to override
|
|
82
|
-
#run: glm-zai glm-zai kimi-coder codex-oss-local
|
|
82
|
+
#run: glm-zai kimi-coder glm-zai kimi-coder glm-zai kimi-coder codex-oss-local
|
|
83
83
|
#ideate: opus-openrouter kimi-k2-openrouter gemini-pro sonnet-think gpt5high grok-4-openrouter deepseek-openrouter glm-zai
|
|
84
84
|
|
|
85
85
|
# Available models:
|