| 21 | } |
| 22 | |
| 23 | export interface ChatMessage { |
| 24 | id: string; |
| 25 | content: string | Array<Record<string, any>> | { steps: Step[] }; |
| 26 | sender: 'user' | 'assistant'; |
| 27 | timestamp: string; |
| 28 | isLoading?: boolean; |
| 29 | metadata?: Record<string, unknown>; |
| 30 | } |
| 31 | |
| 32 | export interface ChatSession { |
| 33 | id: string; |
nothing calls this directly
no outgoing calls
no test coverage detected