AI SDK ErrorsAI_JSONParseError
AI_JSONParseError
This error occurs when JSON fails to parse.
Properties
text
: The text value that could not be parsedmessage
: The error message including parse error details
Checking for this Error
You can check if an error is an instance of AI_JSONParseError
using:
import { JSONParseError } from 'ai';
if (JSONParseError.isInstance(error)) { // Handle the error}