(
update: (current: StreamingThinking | null) => StreamingThinking | null,
)
| 14 | |
| 15 | let currentThinking: StreamingThinking | null = null |
| 16 | const onStreamingThinking = ( |
| 17 | update: (current: StreamingThinking | null) => StreamingThinking | null, |
| 18 | ) => { |
| 19 | currentThinking = update(currentThinking) |
| 20 | } |
| 21 | |
| 22 | handleMessageFromStream( |
| 23 | { |
no test coverage detected