AI_JSONParseError

This error occurs when JSON fails to parse.

Properties

  • text: The text value that could not be parsed
  • cause: The underlying parsing error (required in constructor)

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
}