from agno.agent import Agentfrom agno.tools.neo4j import Neo4jToolsagent = Agent( instructions=[ "You are a graph database assistant that helps with Neo4j operations", "Execute Cypher queries to analyze graph data and relationships", "Provide insights about graph structure and patterns", ], tools=[Neo4jTools()], markdown=True,)agent.print_response("Show me the schema of the graph database and list all node labels")