(providerId: string)
| 25 | |
| 26 | /** Whether the Pi Coding Agent can run a given provider via a single API key. */ |
| 27 | export function isPiSupportedProvider(providerId: string): providerId is PiSupportedProvider { |
| 28 | return PI_SUPPORTED_PROVIDER_SET.has(providerId) |
| 29 | } |
no outgoing calls
no test coverage detected