from pathlib import Pathfrom agno.agent import Agentfrom agno.tools.file import FileToolsagent = Agent(tools=[FileTools(Path("tmp/file"))], show_tool_calls=True)agent.print_response( "What is the most advanced LLM currently? Save the answer to a file.", markdown=True)
from pathlib import Pathfrom agno.agent import Agentfrom agno.tools.file import FileToolsagent = Agent(tools=[FileTools(Path("tmp/file"))], show_tool_calls=True)agent.print_response( "What is the most advanced LLM currently? Save the answer to a file.", markdown=True)