pip install pilott
from pilottai import Serve from pilottai.core import AgentConfig, LLMConfig # Initialize pilott = Serve(name="MarketingExpert") # Create agent marketing_agent = await pilott.add_agent( title="marketing_expert", goal="Create and optimize marketing campaigns", tools=["content_creator", "campaign_analyzer"] ) # Create content job = { "type": "create_content", "content_type": "social_post", "target_audience": "tech professionals" } result = await pilott.execute([job])