Copy
Ask AI
"""
Persistent Session
==================
Demonstrates persistent team sessions with optional history injection.
"""
from agno.agent import Agent
from agno.db.postgres import PostgresDb
from agno.models.openai import OpenAIResponses
from agno.team import Team
# ---------------------------------------------------------------------------
# Setup
# ---------------------------------------------------------------------------
db_url = "postgresql+psycopg://ai:ai@localhost:5532/ai"
db = PostgresDb(db_url=db_url, session_table="sessions")
# ---------------------------------------------------------------------------
# Create Members
# ---------------------------------------------------------------------------
agent = Agent(model=OpenAIResponses(id="gpt-5.2-mini"))
# ---------------------------------------------------------------------------
# Create Team
# ---------------------------------------------------------------------------
basic_team = Team(
model=OpenAIResponses(id="gpt-5.2-mini"),
members=[agent],
db=db,
)
history_team = Team(
model=OpenAIResponses(id="gpt-5.2-mini"),
members=[agent],
db=db,
add_history_to_context=True,
num_history_runs=3,
)
# ---------------------------------------------------------------------------
# Run Team
# ---------------------------------------------------------------------------
if __name__ == "__main__":
basic_team.print_response("Tell me a new interesting fact about space")
history_team.print_response("Tell me a new interesting fact about space")
history_team.print_response("Tell me a new interesting fact about oceans")
history_team.print_response("What have we been talking about?")
Run the Example
Copy
Ask AI
# Clone and setup repo
git clone https://github.com/agno-agi/agno.git
cd agno/cookbook/03_teams/session
# Create and activate virtual environment
./scripts/demo_setup.sh
source .venvs/demo/bin/activate
python persistent_session.py