| 16 | } |
| 17 | |
| 18 | export interface FileAttachment { |
| 19 | id: string |
| 20 | name: string |
| 21 | type: string |
| 22 | size: number |
| 23 | localPath: string |
| 24 | createdAt: number |
| 25 | } |
| 26 | |
| 27 | export interface ChatMessage { |
| 28 | role: 'user' | 'assistant' | 'system' |
nothing calls this directly
no outgoing calls
no test coverage detected