(configuredProviders: string[])
| 11 | const EXPLICIT_COPILOT_MODEL = "github-copilot:gpt-5.5"; |
| 12 | |
| 13 | function createIsConfigured(configuredProviders: string[]): (provider: string) => boolean { |
| 14 | const configuredSet = new Set(configuredProviders); |
| 15 | return (provider: string): boolean => configuredSet.has(provider); |
| 16 | } |
| 17 | |
| 18 | function createIsGatewayModelAccessible( |
| 19 | inaccessibleGatewayModels: Array<[gateway: string, modelId: string]> |
no test coverage detected