| 3 | export type CloudProvider = 'openrouter' | 'claude' | 'openai'; |
| 4 | |
| 5 | export interface CloudModel { |
| 6 | id: string; |
| 7 | name: string; |
| 8 | provider: CloudProvider; |
| 9 | description: string; |
| 10 | contextWindow?: string; |
| 11 | } |
| 12 | |
| 13 | export const OPENROUTER_MODELS: CloudModel[] = [ |
| 14 | { id: 'google/gemma-4-27b-it:free', name: 'Gemma 4 27B IT (Free)', provider: 'openrouter', description: 'Google Gemma 4 27B — Free tier' }, |
nothing calls this directly
no outgoing calls
no test coverage detected