| 1 | import { splitStoredStreamText } from "streamhtml"; |
| 2 | |
| 3 | export interface ChatMessage { |
| 4 | id: string; |
| 5 | role: "user" | "assistant"; |
| 6 | content: string; |
| 7 | reasoning?: string; |
| 8 | at: string; |
| 9 | } |
| 10 | |
| 11 | export interface ChatSession { |
| 12 | id: string; |
nothing calls this directly
no outgoing calls
no test coverage detected