> ## 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.

# DB

> Store session history for Claude on Bedrock in Postgres with add_history_to_context.

```python db.py theme={null}
"""Run `uv pip install ddgs sqlalchemy anthropic` to install dependencies."""

from agno.agent import Agent
from agno.db.postgres import PostgresDb
from agno.models.aws import Claude
from agno.tools.websearch import WebSearchTools

# ---------------------------------------------------------------------------
# Create Agent
# ---------------------------------------------------------------------------

# Setup the database
db_url = "postgresql+psycopg://ai:ai@localhost:5532/ai"
db = PostgresDb(db_url=db_url)

agent = Agent(
    model=Claude(id="global.anthropic.claude-sonnet-4-5-20250929-v1:0"),
    db=db,
    tools=[WebSearchTools()],
    add_history_to_context=True,
)
agent.print_response("How many people live in Canada?")
agent.print_response("What is their national anthem called?")

# ---------------------------------------------------------------------------
# Run Agent
# ---------------------------------------------------------------------------

if __name__ == "__main__":
    pass
```

## Run the Example

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

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

  <Step title="Export environment variables">
    <CodeGroup>
      ```bash Mac/Linux theme={null}
      export AWS_ACCESS_KEY_ID="your_aws_access_key_id_here"
      export AWS_REGION="your_aws_region_here"
      export AWS_SECRET_ACCESS_KEY="your_aws_secret_access_key_here"
      ```

      ```bash Windows theme={null}
      $Env:AWS_ACCESS_KEY_ID="your_aws_access_key_id_here"
      $Env:AWS_REGION="your_aws_region_here"
      $Env:AWS_SECRET_ACCESS_KEY="your_aws_secret_access_key_here"
      ```
    </CodeGroup>
  </Step>

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

  <Step title="Run the example">
    Save the code above as `db.py`, then run:

    ```bash theme={null}
    python db.py
    ```
  </Step>
</Steps>

Full source: [cookbook/90\_models/aws/claude/db.py](https://github.com/agno-agi/agno/blob/main/cookbook/90_models/aws/claude/db.py)
