| 8 | */ |
| 9 | |
| 10 | export interface LeadingThinkingSplit { |
| 11 | startedWithThinking: boolean; |
| 12 | complete: boolean; |
| 13 | thinkingContent: string; |
| 14 | remainder: string; |
| 15 | } |
| 16 | |
| 17 | export interface IncrementalTextStreamerOptions { |
| 18 | warmupChars?: number; |
nothing calls this directly
no outgoing calls
no test coverage detected