(provider: string)
| 343 | } |
| 344 | |
| 345 | export function getCachedModels(provider: string): string[] | null { |
| 346 | const cache = readCache(); |
| 347 | if (!cache || !cache.models[provider]) { |
| 348 | return null; |
| 349 | } |
| 350 | return cache.models[provider]; |
| 351 | } |
no test coverage detected