from agno.agent import Agentfrom agno.db.sqlite import SqliteDb# Setup the SQLite databasedb = SqliteDb(db_file="tmp/data.db")# Setup a basic agent with the SQLite databaseagent = Agent( db=db, update_memory_on_run=True,)agent.print_response("My name is John Doe and I like to play basketball on the weekends.")agent.print_response("What's do I do in weekends?")