mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-11 09:08:31 +00:00
657 B
657 B
ComposioTool Documentation
Description
This tools is a wrapper around the composio toolset and gives your agent access to a wide variety of tools from the composio SDK.
Installation
To incorporate this tool into your project, follow the installation instructions below:
pip install composio-core
pip install 'crewai[tools]'
Example
The following example demonstrates how to initialize the tool and execute a mathematical operation:
from composio import Action
from crewai_tools.tools.composio_tool.composio_tool import ComposioTool
tool = ComposioTool.from_tool(
tool=Action.MATHEMATICAL_CALCULATOR,
)