cookbook/06_storage/README.md
This directory contains examples demonstrating how to integrate various databases with Agno agents, teams, and workflows for persistent storage.
# Install required database drivers based on your choice
uv pip install psycopg2-binary # PostgreSQL
uv pip install pymongo # MongoDB
uv pip install mysql-connector-python # MySQL
uv pip install redis # Redis
uv pip install valkey-glide-sync # Valkey
uv pip install google-cloud-firestore # Firestore
uv pip install boto3 # DynamoDB
uv pip install singlestoredb # SingleStore
uv pip install google-cloud-storage # GCS
Navigate to the specific integration directory for detailed documentation and examples.
from agno.agent import Agent
from agno.db.postgres import PostgresDb
db = PostgresDb(db_url="postgresql+psycopg://user:password@localhost:5432/dbname")
agent = Agent(
db=db,
add_history_to_context=True,
)
postgres - PostgreSQL relational database integrationsqlite - SQLite lightweight database integrationmongo - MongoDB document database integrationmysql - MySQL relational database integrationredis - Redis in-memory data structure store integrationvalkey - Valkey in-memory data structure store integrationsinglestore - SingleStore distributed SQL database integrationfirestore - Google Cloud Firestore NoSQL database integrationdynamodb - AWS DynamoDB NoSQL database integrationjson_db - JSON file-based storage integrationgcs - Google Cloud Storage JSON blob integrationin_memory - In-memory storage with optional persistence hooksin_memory_storage_for_agent.py - Basic session handling01_persistent_session_storage.py - Database persistence02_session_summary.py - Session summarization03_chat_history.py - Chat history management04_session_summary_limits.py - Session summary limits (last_n_runs / conversation_limit)Offload media content (images, audio, video, files) to external storage and keep only lightweight references in the database.
The S3 and GCS backends need their optional dependencies:
uv pip install 'agno[s3]' # S3 (boto3 + aioboto3)
uv pip install 'agno[gcs]' # GCS (google-cloud-storage)
05_media_storage_local.py - Offload media to the local filesystem (LocalMediaStorage)06_media_storage_s3.py - Offload media to S3-compatible object storage (S3MediaStorage)07_media_storage_multiturn.py - Multi-turn media reuse: offload on turn 1, reference reloaded on turn 208_media_storage_gcs.py - Offload media to Google Cloud Storage (GCSMediaStorage)09_media_storage_delete.py - Delete a session's stored objects along with its rows (delete_media=True)10_media_storage_workflow.py - Offload media across a workflow's steps (S3)11_media_storage_file_generation.py - Offload files the agent generates, and read one back with get_content_bytes(storage=...)Turning media storage on is a one-way door. There is no schema change — no new table, no new
column, no migration — but the shape of the media inside the existing column changes: an
offloaded image carries a media_reference and no content.
A reader that predates this feature validates that media has one of url, filepath, or
content, and an offloaded image has none of the three. It does not skip that image, it
raises — so one offloaded row makes get_sessions() fail for the whole session list,
including clean sessions written before the upgrade.
New code reads old rows fine, so the upgrade direction is safe. The rollback direction is not.
Roll the release out everywhere first, then enable media_storage — and expect that once rows
carry references, going back to an older build leaves that media unreadable until you return.