| 33 | } |
| 34 | |
| 35 | export interface AIStreamCallbacks { |
| 36 | onChunk: (chunk: string) => void |
| 37 | onReasoning?: (reasoning: string) => void |
| 38 | onComplete?: (fullResponse: string, reasoning?: string) => void |
| 39 | onError?: (error: string) => void |
| 40 | } |
| 41 | |
| 42 | export interface TestConnectionResult { |
| 43 | success: boolean |
nothing calls this directly
no outgoing calls
no test coverage detected