title | description |
---|---|
AI_NoSuchToolError |
Learn how to fix AI_NoSuchToolError |
This error occurs when a model tries to call an unavailable tool.
toolName
: The name of the tool that was not foundavailableTools
: Array of available tool namesmessage
: The error message
You can check if an error is an instance of AI_NoSuchToolError
using:
import { NoSuchToolError } from 'ai';
if (NoSuchToolError.isInstance(error)) {
// Handle the error
}