| 36 | type CursorModelDetails = z.infer<typeof CursorModelDetailsSchema>; |
| 37 | |
| 38 | export interface CursorModel { |
| 39 | id: string; |
| 40 | name: string; |
| 41 | reasoning: boolean; |
| 42 | contextWindow: number; |
| 43 | maxTokens: number; |
| 44 | } |
| 45 | |
| 46 | const FALLBACK_MODELS: CursorModel[] = [ |
| 47 | // Composer models |
nothing calls this directly
no outgoing calls
no test coverage detected