from agno.agent import Agentfrom agno.db.postgres import PostgresDb# Setup Postgresdb_url = "postgresql+psycopg://ai:ai@localhost:5532/ai"db = PostgresDb(db_url=db_url)agent = 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?")