We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6f241e commit b4dc8a3Copy full SHA for b4dc8a3
CHANGELOG.md
@@ -2,7 +2,7 @@
2
3
## Unreleased
4
5
-- Add env support for mcps
+- Add env support for MCPs
6
- Add web_search capability
7
- Add `o3` model support.
8
src/eca/features/chat.clj
@@ -102,7 +102,7 @@
102
chosen-model (or model (default-model db))
103
past-messages (get-in db [:chats chat-id :messages] [])
104
user-prompt message
105
- mcp-tools (when (get-in db [:models chosen-model :use-tools])
+ mcp-tools (when (get-in db [:models chosen-model :mcp-tools])
106
(all-mcp-tools! chat-id request-id messenger db*))
107
received-msgs* (atom "")]
108
(swap! db* update-in [:chats chat-id :messages] (fnil conj []) {:role "user" :content user-prompt})
0 commit comments