create method
Create a provider instance from the given configuration
Implementation
@override
ChatCapability create(LLMConfig config) {
return createProviderSafely<GoogleConfig>(
config,
() => _transformConfig(config),
(googleConfig) => GoogleProvider(googleConfig),
);
}