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