| 471 | } |
| 472 | |
| 473 | export interface ChunkStream { |
| 474 | id: string; |
| 475 | object: string; |
| 476 | created: number; |
| 477 | model: string; |
| 478 | choices: ChoiceStream[]; |
| 479 | } |
| 480 | |
| 481 | export interface Chunk { |
| 482 | type: 'content' | 'toolCall' | 'unknown'; |
nothing calls this directly
no outgoing calls
no test coverage detected