AI SDK ErrorsAI_RetryError
AI_RetryError
This error occurs when a retry operation fails.
Properties
reason
: The reason for the retry failurelastError
: The most recent error that occurred during retrieserrors
: Array of all errors that occurred during retry attemptsmessage
: The error message
Checking for this Error
You can check if an error is an instance of AI_RetryError
using:
import { RetryError } from 'ai';
if (RetryError.isInstance(error)) { // Handle the error}