| 25 | } |
| 26 | |
| 27 | export interface ChatMessage { |
| 28 | role: 'user' | 'assistant' | 'system' |
| 29 | content: |
| 30 | | string |
| 31 | | Array<{ type: 'text' | 'image_url'; text?: string; image_url?: { url: string } }> |
| 32 | attachments?: FileAttachment[] |
| 33 | } |
| 34 | |
| 35 | export interface AIRequest { |
| 36 | requestId: string |
nothing calls this directly
no outgoing calls
no test coverage detected