| 1013 | export type ApiType = 'antigravity' | 'kiro'; |
| 1014 | |
| 1015 | export interface ChatMessage { |
| 1016 | role: 'user' | 'assistant' | 'system'; |
| 1017 | content: string | Array<{ |
| 1018 | type: 'text' | 'image_url'; |
| 1019 | text?: string; |
| 1020 | image_url?: { url: string }; |
| 1021 | }>; |
| 1022 | } |
| 1023 | |
| 1024 | export interface ChatCompletionRequest { |
| 1025 | model: string; |
nothing calls this directly
no outgoing calls
no test coverage detected