get_builtin_tool()

Get a specific built-in tool by name.

Usage

Source

get_builtin_tool(name)

This allows cherry-picking individual tools from the Tool Box rather than loading all tools with load_tool_box(). The tool will be automatically loaded into the registry if it’s not already there.

Parameters

name: str
Name of the tool to retrieve

Returns

TalkBoxTool
The requested tool

Examples

>>> calculate_tool = get_builtin_tool("calculate")
>>> email_tool = get_builtin_tool("validate_email")