v2.2.2

October 23, 2025

Boost performance in async workflows with our new async database support

You can now use SQLite and MongoDB asynchronously with AsyncSqliteDb and AsyncMongoDb, enabling faster database operations and more efficient request handling in async workflows.

from agno.agent import Agent
from agno.db.sqlite import AsyncSqliteDb

agent = Agent(
    db=AsyncSqliteDb(db_file="sessions.db")
)

response = await agent.arun("Process this request")

View async SQLite docs | View async MongoDB docs