Resend
Prerequisites
pip install -U resendexport RESEND_API_KEY=***Example
from bitca.agent import Agent
from bitca.tools.resend_tools import ResendTools
from_email = "<enter_from_email>"
to_email = "<enter_to_email>"
agent = Agent(tools=[ResendTools(from_email=from_email)], show_tool_calls=True)
agent.print_response(f"Send an email to {to_email} greeting them with hello world")Toolkit Params
Parameter
Type
Default
Description
Toolkit Functions
Function
Description
Last updated