pip install pilott
from pilottai import Serve from pilottai.core import AgentConfig, LLMConfig # Initialize pilott = Serve(name="EmailAgent") # Create agent email_agent = await pilott.add_agent( title="email_manager", goal="Handle email communications", tools=["email_sender", "email_analyzer"] ) # Send email job = { "type": "send_email", "template": "welcome", "recipient": "user@example.com" } result = await pilott.execute([job])