Back to Ai

AI_InvalidArgumentError

content/docs/07-reference/05-ai-sdk-errors/ai-invalid-argument-error.mdx

2.1.10455 B
Original Source

AI_InvalidArgumentError

This error occurs when an invalid argument was provided.

Properties

  • parameter: The name of the parameter that is invalid
  • value: The invalid value
  • message: The error message

Checking for this Error

You can check if an error is an instance of AI_InvalidArgumentError using:

typescript
import { InvalidArgumentError } from 'ai';

if (InvalidArgumentError.isInstance(error)) {
  // Handle the error
}