| 11 | export type CLIType = 'claude' | 'cursor' | 'codex' | 'gemini' | 'qwen' | 'glm'; |
| 12 | |
| 13 | export interface CLIModel { |
| 14 | id: string; |
| 15 | name: string; |
| 16 | description?: string; |
| 17 | supportsImages?: boolean; |
| 18 | } |
| 19 | |
| 20 | export interface CLIOption { |
| 21 | id: CLIType; |
nothing calls this directly
no outgoing calls
no test coverage detected