ChatBot.add_tools()
Add specific built-in tools.
Usage
ChatBot.add_tools(tool_names)Parameters
tool_names: list[str]- Names of specific Tool Box tools to add
Returns
ChatBot- The chatbot instance with selected tools for method chaining
Examples
>>> bot = ChatBot().add_tools(["calculate", "text_stats"])