(value: unknown)
| 119 | type Provider = (typeof PROVIDERS)[number] |
| 120 | |
| 121 | function isProvider(value: unknown): value is Provider { |
| 122 | return typeof value === 'string' && PROVIDERS.includes(value as Provider) |
| 123 | } |
| 124 | |
| 125 | /** |
| 126 | * Synthetic suffixes the dropdown uses to opt the route into reasoning |
no outgoing calls
no test coverage detected