from agno.agent import Agentfrom agno.tools.knowledge import KnowledgeToolsfrom agno.knowledge import Knowledge# Initialize knowledge baseknowledge = Knowledge()knowledge.load_documents("./docs/")agent = Agent( instructions=[ "You are a knowledge assistant that helps find and analyze information", "Search through the knowledge base to answer questions", "Provide detailed analysis and reasoning about the information found", ], tools=[KnowledgeTools(knowledge=knowledge)], markdown=True,)agent.print_response("What are the best practices for API design?")