User Guide
The simplest way to create an AI agent using Xpander SDK - learn backend integration, configuration management, and stateful memory
Prerequisites
python3 -m venv .venv source .venv/bin/activate pip install "xpander-sdk[agno]"
.env
xpander init
from dotenv import load_dotenv load_dotenv() from xpander_sdk import Backend from agno.agent import Agent # Initialize Xpander Backend backend = Backend() # Create agent with backend configuration agno_agent = Agent(**backend.get_args()) # Test stateful conversation agno_agent.print_response(message="What's your role?") agno_agent.print_response(message="What did I ask you?")
python hello_world_example.py
Was this page helpful?