AI SDK ErrorsAI_DownloadError
AI_DownloadError
This error occurs when a download fails.
Properties
url
: The URL that failed to downloadstatusCode
: The HTTP status code returned by the serverstatusText
: The HTTP status text returned by the servermessage
: The error message containing details about the download failure
Checking for this Error
You can check if an error is an instance of AI_DownloadError
using:
import { DownloadError } from 'ai';
if (DownloadError.isInstance(error)) { // Handle the error}