pip install pilott
from pilottai import Serve from pilottai.core import AgentConfig, LLMConfig # Initialize pilott = Serve(name="ResearchAnalyst") # Create agent research_agent = await pilott.add_agent( title="research_analyst", goal="Conduct thorough research and provide insights", tools=["data_analyzer", "research_synthesizer"] ) # Analyze data job = { "type": "analyze_data", "data_source": "market_survey_2024", "analysis_type": "trend_analysis" } result = await pilott.execute([job])