> ## Documentation Index
> Fetch the complete documentation index at: https://agno-v2-docs-scavio-google-v2.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Load Team from Database

> Fetch a stored team from PostgresDb with get_team_by_id and stream its response, with get_teams shown for listing all.

Demonstrates loading a team from the database by ID and running it.

```python get_team.py theme={null}
"""
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

<Steps>
  <Snippet file="create-venv-step.mdx" />

  <Step title="Install dependencies">
    ```bash theme={null}
    uv pip install -U agno "psycopg[binary]" openai sqlalchemy
    ```
  </Step>

  <Step title="Export your API keys">
    <CodeGroup>
      ```bash Mac/Linux theme={null}
      export OPENAI_API_KEY="your_openai_api_key_here"
      ```

      ```bash Windows theme={null}
      $Env:OPENAI_API_KEY="your_openai_api_key_here"
      ```
    </CodeGroup>
  </Step>

  <Snippet file="run-pgvector-step.mdx" />

  <Step title="Clone Agno">
    Clone the repository and run the remaining commands from its root:

    ```bash theme={null}
    git clone https://github.com/agno-agi/agno.git
    cd agno
    ```
  </Step>

  <Step title="Save the team">
    Persist the `content-team` record before loading it:

    ```bash theme={null}
    python cookbook/93_components/save_team.py
    ```
  </Step>

  <Step title="Run the example">
    Run the example from the repository root:

    ```bash theme={null}
    python cookbook/93_components/get_team.py
    ```
  </Step>
</Steps>

Full source: [cookbook/93\_components/get\_team.py](https://github.com/agno-agi/agno/blob/main/cookbook/93_components/get_team.py)
