| 1 | // Common types |
| 2 | |
| 3 | export interface Message { |
| 4 | id: string; |
| 5 | role: 'user' | 'assistant' | 'system'; |
| 6 | content: string; |
| 7 | timestamp: string; |
| 8 | metadata?: Record<string, unknown>; |
| 9 | } |
| 10 | |
| 11 | export interface Notification { |
| 12 | id: string; |
nothing calls this directly
no outgoing calls
no test coverage detected