from agno.agent import Agentfrom agno.db.redis import RedisDb# Setup Redis# Initialize Redis db (use the right db_url for your setup)db = RedisDb(db_url="redis://localhost:6379")# Create agent with Redis dbagent = 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?")