| 6 | export type ImageGenProvider = 'openai' | 'gemini'; |
| 7 | |
| 8 | export interface ImageGenConfig { |
| 9 | provider: ImageGenProvider; |
| 10 | apiKey: string; |
| 11 | baseUrl: string; |
| 12 | model: string; |
| 13 | customHeaders?: string; |
| 14 | } |
| 15 | |
| 16 | export interface ImageGenResult { |
| 17 | base64: string; |
nothing calls this directly
no outgoing calls
no test coverage detected