Skip to main content
Agno supports using SQLite as a database with the SqliteDb class.

Usage

Install Agno with the sqlalchemy and openai packages:
sqlite_for_agent.py

Params

ParameterTypeDefaultDescription
idOptional[str]NoneDatabase ID. Generated when omitted.
db_engineOptional[Engine]NoneSQLAlchemy database engine. Takes precedence over db_url and db_file.
db_urlOptional[str]NoneDatabase URL. Used when db_engine is omitted.
db_fileOptional[str]NoneDatabase file. Creates ./agno.db when no connection option is provided.
session_tableOptional[str]NoneTable for Agent, Team, and Workflow sessions. Uses "agno_sessions" when omitted.
memory_tableOptional[str]NoneTable for user memories. Uses "agno_memories" when omitted.
metrics_tableOptional[str]NoneTable for metrics. Uses "agno_metrics" when omitted.
eval_tableOptional[str]NoneTable for evaluation run data. Uses "agno_eval_runs" when omitted.
knowledge_tableOptional[str]NoneTable for knowledge documents. Uses "agno_knowledge" when omitted.
culture_tableOptional[str]NoneTable for cultural knowledge. Uses "agno_culture" when omitted.
traces_tableOptional[str]NoneTable for traces. Uses "agno_traces" when omitted.
spans_tableOptional[str]NoneTable for spans. Uses "agno_spans" when omitted.
versions_tableOptional[str]NoneTable for schema versions. Uses "agno_schema_versions" when omitted.
components_tableOptional[str]NoneTable for components. Uses "agno_components" when omitted.
component_configs_tableOptional[str]NoneTable for component configurations. Uses "agno_component_configs" when omitted.
component_links_tableOptional[str]NoneTable for component links. Uses "agno_component_links" when omitted.
learnings_tableOptional[str]NoneTable for learnings. Uses "agno_learnings" when omitted.
schedules_tableOptional[str]NoneTable for cron schedules. Uses "agno_schedules" when omitted.
schedule_runs_tableOptional[str]NoneTable for schedule run history. Uses "agno_schedule_runs" when omitted.
approvals_tableOptional[str]NoneTable for human approval requests. Uses "agno_approvals" when omitted.
auth_tokens_tableOptional[str]NoneTable for OAuth tokens. Uses "agno_auth_tokens" when omitted.
service_accounts_tableOptional[str]NoneTable for service accounts. Uses "agno_service_accounts" when omitted.
mcp_oauth_clients_tableOptional[str]NoneTable for MCP OAuth client registrations. Uses "agno_mcp_oauth_clients" when omitted.
mcp_oauth_transactions_tableOptional[str]NoneTable for MCP OAuth transactions. Uses "agno_mcp_oauth_transactions" when omitted.
mcp_oauth_codes_tableOptional[str]NoneTable for MCP OAuth authorization codes. Uses "agno_mcp_oauth_codes" when omitted.
mcp_oauth_refresh_tokens_tableOptional[str]NoneTable for MCP OAuth refresh tokens. Uses "agno_mcp_oauth_refresh_tokens" when omitted.
mcp_oauth_keys_tableOptional[str]NoneTable for MCP OAuth signing keys. Uses "agno_mcp_oauth_keys" when omitted.