Skip to content

Commit 1b7e2c3

Browse files
committed
Fix reasoning titles in thoughts blocks for openai-responses.
1 parent 74ce1cd commit 1b7e2c3

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
- Fix reasoning titles in thoughts blocks for openai-responses.
6+
57
## 0.32.4
68

79
- Disable `eca_plan_edit_file` in plan behavior until better idea on what plan behavior should do.

src/eca/llm_providers/openai.clj

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,11 @@
126126
:id (:item_id data)
127127
:text (:delta data)})
128128

129+
"response.reasoning_summary_text.done"
130+
(on-reason {:status :thinking
131+
:id (:item_id data)
132+
:text "\n"})
133+
129134
"response.output_item.added"
130135
(case (-> data :item :type)
131136
"reasoning" (on-reason {:status :started

0 commit comments

Comments
 (0)