from agno.agent import Agentfrom agno.db.postgres import PostgresDbdb_url = "postgresql+psycopg://ai:ai@localhost:5532/ai" # Replace with your own connection string# Setup your Databasedb = PostgresDb(db_url=db_url)# Setup your Agent with the Databaseagent = Agent(db=db)