getEnhancers method
Get list of provider-specific enhancers
Implementation
@override
List<DioEnhancer> getEnhancers(dynamic config) {
final anthropicConfig = config as AnthropicConfig;
return [
// Always add the endpoint-specific headers interceptor
InterceptorEnhancer(
_createEndpointHeadersInterceptor(anthropicConfig),
'AnthropicEndpointHeaders',
),
];
}