| 45 | } |
| 46 | |
| 47 | export interface AIStreamCallbacks { |
| 48 | onChunk: (chunk: string) => void |
| 49 | onReasoning?: (reasoning: string) => void |
| 50 | onComplete?: (fullResponse: string, reasoning?: string) => void |
| 51 | onError?: (error: string) => void |
| 52 | } |
nothing calls this directly
no outgoing calls
no test coverage detected