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 42617d1 commit 27697fdCopy full SHA for 27697fd
2 files changed
CHANGELOG.md
@@ -3,6 +3,7 @@
3
## Unreleased
4
5
- Fix setting the `web-search` capability in the relevant models
6
+- Fix summary text for tool calls using `openai-chat` api.
7
8
## 0.50.1
9
src/eca/llm_providers/openai_chat.clj
@@ -136,7 +136,7 @@
136
(filter #(every? % [:id :name :arguments-text]))
137
(map (fn [{:keys [arguments-text name] :as tool-call}]
138
(try
139
- (assoc tool-call :arguments (json/parse-string arguments-text true))
+ (assoc tool-call :arguments (json/parse-string arguments-text))
140
(catch Exception e
141
(let [error-msg (format "Failed to parse JSON arguments for tool '%s': %s"
142
name (ex-message e))]
0 commit comments