pip install pilottai
from pilottai import Serve from pilottai.core import AgentConfig, LLMConfig # Initialize pilott = Serve(name="SalesRepresentative") # Create agent sales_agent = await pilott.add_agent( title="sales_representative", goal="Manage leads and close sales effectively", tools=["lead_manager", "proposal_generator"] ) # Manage lead job = { "type": "manage_lead", "lead_id": "LEAD123", "action": "qualify", "details": { "company": "TechCorp", "budget": "100k" } } result = await pilott.execute([job])