English
Automate workflows and integrate with external platforms and services
from crewai_tools import ApifyActorTool, ComposioTool, MultiOnTool # Create automation tools apify_automation = ApifyActorTool() platform_integration = ComposioTool() browser_automation = MultiOnTool() # Add to your agent agent = Agent( role="Automation Specialist", tools=[apify_automation, platform_integration, browser_automation], goal="Automate workflows and integrate systems" )
Was this page helpful?