title | description |
---|---|
AI_InvalidArgumentError |
Learn how to fix AI_InvalidArgumentError |
This error occurs when an invalid argument was provided.
parameter
: The name of the parameter that is invalidvalue
: The invalid valuemessage
: The error message
You can check if an error is an instance of AI_InvalidArgumentError
using:
import { InvalidArgumentError } from 'ai';
if (InvalidArgumentError.isInstance(error)) {
// Handle the error
}