create method
Create a provider instance from the given configuration
Implementation
@override
ChatCapability create(LLMConfig config) {
return createProviderSafely<AnthropicConfig>(
config,
() => AnthropicConfig.fromLLMConfig(config),
(anthropicConfig) => AnthropicProvider(anthropicConfig),
);
}