Exception: DeepAgents::ToolNotFoundError

Inherits:
ToolError show all
Defined in:
lib/deepagents/errors.rb

Overview

Error raised when a tool is not found

Instance Attribute Summary

Attributes inherited from ToolError

#tool_name

Instance Method Summary collapse

Constructor Details

#initialize(tool_name) ⇒ ToolNotFoundError

Returns a new instance of ToolNotFoundError.



20
21
22
# File 'lib/deepagents/errors.rb', line 20

def initialize(tool_name)
  super(tool_name, "Tool not found")
end