AI SDK ErrorsAI_NoSuchProviderError
AI_NoSuchProviderError
This error occurs when a provider ID is not found.
Properties
providerId
: The ID of the provider that was not foundavailableProviders
: Array of available provider IDsmodelId
: The ID of the modelmodelType
: The type of modelmessage
: The error message
Checking for this Error
You can check if an error is an instance of AI_NoSuchProviderError
using:
import { NoSuchProviderError } from 'ai';
if (NoSuchProviderError.isInstance(error)) { // Handle the error}