Skip to content
English
  • There are no suggestions because the search field is empty.

How can I create custom tools for my CrewAI agents?

You can create custom tools by subclassing the BaseTool class provided by CrewAI or by using the tool decorator. Subclassing involves defining a new class that inherits from BaseTool, specifying the name, description, and the _run method for operational logic. The tool decorator allows you to create a Tool object directly with the required attributes and a functional logic.

Click here for more details