AI_InvalidToolInputError
This error occurs when invalid tool input was provided.
Properties
toolName: The name of the tool with invalid inputstoolInput: The invalid tool inputsmessage: The error messagecause: The cause of the error
Checking for this Error
You can check if an error is an instance of AI_InvalidToolInputError using:
import { InvalidToolInputError } from 'ai';
if (InvalidToolInputError.isInstance(error)) { // Handle the error}