| 1 | export interface LLMModel { |
| 2 | value: string; |
| 3 | label: string; |
| 4 | provider: string; |
| 5 | contextWindow?: string; |
| 6 | } |
| 7 | |
| 8 | // Comprehensive LLM models database organized by provider |
| 9 | export const LLM_MODELS: LLMModel[] = [ |
nothing calls this directly
no outgoing calls
no test coverage detected