| 60 | } |
| 61 | |
| 62 | interface CredentialValidation { |
| 63 | valid: boolean; |
| 64 | error?: string; |
| 65 | mode: 'api-key' | 'oauth' | 'custom-base-url' | 'bedrock' | 'vertex'; |
| 66 | } |
| 67 | |
| 68 | /** Check if a custom Anthropic-compatible base URL is configured. */ |
| 69 | function isCustomBaseUrlConfigured(): boolean { |
nothing calls this directly
no outgoing calls
no test coverage detected