pip install pilott
from pilottai import Serve from pilottai.core import AgentConfig, LLMConfig # Initialize pilott = Serve(name="LearningAgent") # Create agent learning_agent = await pilott.add_agent( title="learner", goal="Acquire and organize knowledge", tools=["knowledge_base", "pattern_recognizer"] ) # Learn new topic job = { "type": "learn_topic", "content": "Machine Learning Basics", "store_results": True } result = await pilott.execute([job])