AI_NoSuchProviderReferenceError
This error occurs when a provider reference cannot be resolved because the specified provider is not found in the provider reference mapping.
Properties
provider: The provider that was not foundreference: The full provider reference mapping that was searchedmessage: The error message
Checking for this Error
You can check if an error is an instance of AI_NoSuchProviderReferenceError using:
import { NoSuchProviderReferenceError } from 'ai';
if (NoSuchProviderReferenceError.isInstance(error)) { // Handle the error}