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 74ce1cd commit 1b7e2c3Copy full SHA for 1b7e2c3
CHANGELOG.md
@@ -2,6 +2,8 @@
2
3
## Unreleased
4
5
+- Fix reasoning titles in thoughts blocks for openai-responses.
6
+
7
## 0.32.4
8
9
- Disable `eca_plan_edit_file` in plan behavior until better idea on what plan behavior should do.
src/eca/llm_providers/openai.clj
@@ -126,6 +126,11 @@
126
:id (:item_id data)
127
:text (:delta data)})
128
129
+ "response.reasoning_summary_text.done"
130
+ (on-reason {:status :thinking
131
+ :id (:item_id data)
132
+ :text "\n"})
133
134
"response.output_item.added"
135
(case (-> data :item :type)
136
"reasoning" (on-reason {:status :started
0 commit comments