File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 44
55- Fix mcp tool calls.
66- Improve eca filesystem calls for better tool usage from LLM.
7+ - Fix default model selection to check anthropic api key before.
78
89## 0.15.0
910
Original file line number Diff line number Diff line change 6565 model))
6666 (:models db)))]
6767 [:custom-provider-default-model custom-provider-default-model])
68- (when-let [ollama-model (first (filter #(string/starts-with? % config/ollama-model-prefix) (keys (:models db))))]
69- [:ollama-running ollama-model])
7068 (when (anthropic-api-key config)
7169 [:api-key-found " claude-sonnet-4-0" ])
7270 (when (openai-api-key config)
7371 [:api-key-found " o4-mini" ])
72+ (when-let [ollama-model (first (filter #(string/starts-with? % config/ollama-model-prefix) (keys (:models db))))]
73+ [:ollama-running ollama-model])
7474 [:default " claude-sonnet-4-0" ])]
7575 (logger/info logger-tag (format " Default LLM model '%s' decision '%s'" model decision))
7676 model))
You can’t perform that action at this time.
0 commit comments