| 22 | type TextRouterTier = 't0' | 't1' | 't2' | 't3' |
| 23 | |
| 24 | interface ProviderCatalogEntry { |
| 25 | id: string |
| 26 | label: string |
| 27 | model: string |
| 28 | baseUrl: string |
| 29 | apiKeyEnv: string |
| 30 | requiresApiKey: boolean |
| 31 | routerSupported: boolean |
| 32 | deployment: 'cloud' | 'local' |
| 33 | note: string |
| 34 | } |
| 35 | |
| 36 | interface SearchProviderCatalogEntry { |
| 37 | providerId: string |
nothing calls this directly
no outgoing calls
no test coverage detected