| 15 | } |
| 16 | |
| 17 | export interface Message { |
| 18 | |
| 19 | id: string; |
| 20 | sessionId: string; |
| 21 | role: 'user' | 'assistant' | 'system'; |
| 22 | content: string; |
| 23 | createdAt: string; |
| 24 | } |
| 25 | |
| 26 | export interface Provider { |
| 27 | id: string; |
nothing calls this directly
no outgoing calls
no test coverage detected