Quick Start
Install the Dead Simple Email package with CrewAI support:
pip install deadsimple[crewai] crewai
Import the tools and assign them to your agents. Each function is decorated with CrewAI's @tool decorator, so they work out of the box:
from crewai import Agent from deadsimple.integrations.crewai import send_email, read_emails, create_inbox agent = Agent( role="Email Assistant", goal="Handle email communication", tools=[send_email, read_emails, create_inbox], )
Set your API key as an environment variable and the tools will pick it up automatically:
export DSE_API_KEY="dse_your_api_key"