get_team.py
"""
Load Team from Database
=======================
Demonstrates loading a team from the database by ID and running it.
"""
from agno.db.postgres import PostgresDb
from agno.team.team import get_team_by_id, get_teams # noqa: F401
# ---------------------------------------------------------------------------
# Create Database Client
# ---------------------------------------------------------------------------
db = PostgresDb(db_url="postgresql+psycopg://ai:ai@localhost:5532/ai")
# ---------------------------------------------------------------------------
# Run Team Load Example
# ---------------------------------------------------------------------------
if __name__ == "__main__":
team = get_team_by_id(db=db, id="content-team")
if team:
team.print_response("Write about the history of the internet.", stream=True)
else:
print("Team not found")
# You can also get all teams from the database
# teams = get_teams(db=db)
# for team in teams:
# print(team)
Run the Example
1
Set up your virtual environment
uv venv --python 3.12
source .venv/bin/activate
uv venv --python 3.12
.venv\Scripts\activate
2
Install dependencies
uv pip install -U agno psycopg-binary sqlalchemy
3
Run PgVector
docker run -d \
-e POSTGRES_DB=ai \
-e POSTGRES_USER=ai \
-e POSTGRES_PASSWORD=ai \
-e PGDATA=/var/lib/postgresql/data/pgdata \
-v pgvolume:/var/lib/postgresql/data \
-p 5532:5432 \
--name pgvector \
agnohq/pgvector:18
4
Run the example
Save the code above as
get_team.py, then run:python get_team.py