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 6757f4a commit 4c8beffCopy full SHA for 4c8beff
CHANGELOG.md
@@ -2,6 +2,8 @@
2
3
## Unreleased
4
5
+- Increase anthropic models maxTokens to 8196
6
+
7
## 0.9.0
8
9
- Include eca as a server with tools.
src/eca/llm_providers/anthropic.clj
@@ -78,7 +78,7 @@
78
(defn completion!
79
[{:keys [model user-prompt temperature instructions max-tokens
80
api-url api-key past-messages tools web-search]
81
- :or {max-tokens 4096
+ :or {max-tokens 8192
82
temperature 1.0}}
83
{:keys [on-message-received on-error on-prepare-tool-call on-tool-called]}]
84
(let [messages (conj (past-messages->messages past-messages)
0 commit comments