()
| 143 | } |
| 144 | |
| 145 | function* closeText(): Generator<StreamChunk> { |
| 146 | if (openTextId !== null) { |
| 147 | yield { |
| 148 | type: EventType.TEXT_MESSAGE_END, |
| 149 | messageId: openTextId, |
| 150 | model, |
| 151 | timestamp: now(), |
| 152 | } |
| 153 | openTextId = null |
| 154 | } |
| 155 | } |
| 156 | |
| 157 | function* closeReasoning(): Generator<StreamChunk> { |
| 158 | if (openReasoningId !== null) { |
no test coverage detected