(overrides: Partial<ProviderRequest>)
| 55 | import { azureAnthropicProvider } from '@/providers/azure-anthropic/index' |
| 56 | |
| 57 | function request(overrides: Partial<ProviderRequest>): ProviderRequest { |
| 58 | return { model: 'azure-anthropic/claude-3-5-sonnet', apiKey: 'k', messages: [], ...overrides } |
| 59 | } |
| 60 | |
| 61 | /** Invokes the createClient factory handed to the Anthropic core and returns the SDK options it built. */ |
| 62 | function buildClientOptions(): Record<string, unknown> { |