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 cfedb9b commit 040d0bcCopy full SHA for 040d0bc
2 files changed
CHANGELOG.md
@@ -3,6 +3,7 @@
3
## Unreleased
4
5
- Fix native image on Windows not running on older CPUs by enabling `-march=compatibility`. #362
6
+- Fix simple summaries in tool calls for ollama.
7
8
## 0.114.0
9
src/eca/llm_providers/ollama.clj
@@ -143,7 +143,7 @@
143
call-id (str (random-uuid))
144
tool-call {:id call-id
145
:full-name (:name function)
146
- :arguments (:arguments function)}]
+ :arguments (update-keys (:arguments function) name)}]
147
(on-prepare-tool-call (assoc tool-call :arguments-text ""))
148
(swap! tool-calls* assoc rid tool-call))
149
0 commit comments