Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Use MySQL for session storage and persistence.
MySQLDb
from agno.agent import Agent from agno.db.mysql import MySQLDb # Setup your Database db = MySQLDb(db_url="mysql+pymysql://ai:ai@localhost:3306/ai") # Setup your Agent with the Database agent = Agent(db=db)
docker run -d \ --name mysql \ -e MYSQL_ROOT_PASSWORD=ai \ -e MYSQL_DATABASE=ai \ -e MYSQL_USER=ai \ -e MYSQL_PASSWORD=ai \ -p 3306:3306 \ -d mysql:8
id
Optional[str]
db_engine
Optional[Engine]
db_schema
db_url
session_table
memory_table
metrics_table
eval_table
knowledge_table
traces_table
spans_table
Was this page helpful?