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.
parallel_tool_calls
1 parent 9486636 commit ab53d8cCopy full SHA for ab53d8c
CHANGELOG.md
@@ -2,6 +2,8 @@
2
3
## Unreleased
4
5
+- Assoc `parallel_tool_calls` to openai-chat only if truth.
6
+
7
## 0.71.2
8
9
- Fix regression in `/compact` command. #162
src/eca/llm_providers/openai_chat.clj
@@ -287,8 +287,8 @@
287
:messages messages
288
:temperature temperature
289
:stream true
290
- :parallel_tool_calls parallel-tool-calls?
291
:max_completion_tokens 32000}
+ :parallel_tool_calls (or parallel-tool-calls? (:parallel_tool_calls extra-payload))
292
:tools (when (seq tools) (->tools tools)))
293
extra-payload)
294
0 commit comments