import asynciofrom agno.agent import Agentfrom agno.knowledge.knowledge import Knowledgefrom agno.vectordb.pgvector import PgVectordb_url = "postgresql+psycopg://ai:ai@localhost:5532/ai"knowledge = Knowledge( # Table name: ai.csv_documents vector_db=PgVector( table_name="csv_documents", db_url=db_url, ),)# Initialize the Agent with the knowledgeagent = Agent( knowledge=knowledge, search_knowledge=True,)if __name__ == "__main__": # Comment out after first run asyncio.run( knowledge.add_content_async( url="https://agno-public.s3.amazonaws.com/demo_data/IMDB-Movie-Data.csv" ) ) # Create and use the agent asyncio.run( agent.aprint_response("What genre of movies are present here?", markdown=True) )