Back to Agno

Async SQLite Integration

cookbook/06_storage/sqlite/async_sqlite/README.md

2.6.4609 B
Original Source

Async SQLite Integration

Examples demonstrating asynchronous SQLite integration with Agno agents, teams, and workflows.

Setup

shell
uv pip install sqlalchemy aiosqlite

Configuration

python
from agno.db.sqlite import AsyncSqliteDb

db = AsyncSqliteDb(db_file="path/to/database.db")

Examples