"""from agno.agent import Agentfrom agno.db.postgres import PostgresDbfrom agno.models.ollama.chat import Ollama# Setup the databasedb_url = "postgresql+psycopg://ai:ai@localhost:5532/ai"db = PostgresDb(db_url=db_url)agent = Agent( model=Ollama(id="qwen2.5:latest"), # Pass the database to the Agent db=db, # Enable user memories enable_user_memories=True, # Enable session summaries enable_session_summaries=True, # Show debug logs so, you can see the memory being created)# -*- Share personal informationagent.print_response("My name is john billings?", stream=True)# -*- Share personal informationagent.print_response("I live in nyc?", stream=True)# -*- Share personal informationagent.print_response("I'm going to a concert tomorrow?", stream=True)# Ask about the conversationagent.print_response( "What have we been talking about, do you know my name?", stream=True)