| 479 | } |
| 480 | |
| 481 | export interface Chunk { |
| 482 | type: 'content' | 'toolCall' | 'unknown'; |
| 483 | content?: string; |
| 484 | toolCall?: ToolCallResult; |
| 485 | rawChunk?: ChunkStream; |
| 486 | } |
| 487 | |
| 488 | /** |
| 489 | * Processes a chunk and returns a Chunk object. |
nothing calls this directly
no outgoing calls
no test coverage detected