(value: unknown)
| 236 | } |
| 237 | |
| 238 | export function isProvider(value: unknown): value is ProviderName { |
| 239 | return typeof value === 'string' && value in PROVIDERS |
| 240 | } |
| 241 | |
| 242 | /** |
| 243 | * Whether to use the host's logged-in Claude Code subscription instead of an API |
no outgoing calls
no test coverage detected