| 25 | } |
| 26 | |
| 27 | export interface AIStreamChunk { |
| 28 | requestId: string |
| 29 | type: 'chunk' | 'complete' | 'error' | 'reasoning_content' |
| 30 | content?: string |
| 31 | reasoning_content?: string |
| 32 | error?: string |
| 33 | } |
| 34 | |
| 35 | export interface AIStreamCallbacks { |
| 36 | onChunk: (chunk: string) => void |
nothing calls this directly
no outgoing calls
no test coverage detected