Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 547 Bytes

ai-no-such-tool-error.mdx

File metadata and controls

26 lines (18 loc) · 547 Bytes
title description
AI_NoSuchToolError
Learn how to fix AI_NoSuchToolError

AI_NoSuchToolError

This error occurs when a model tries to call an unavailable tool.

Properties

  • toolName: The name of the tool that was not found
  • availableTools: Array of available tool names
  • message: The error message

Checking for this Error

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

import { NoSuchToolError } from 'ai';

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