from agno.agent import Agentfrom agno.tools.shell import ShellToolsagent = Agent( tools=[ShellTools()], show_tool_calls=True, markdown=True,)agent.print_response("List all files in the current directory")
from agno.agent import Agentfrom agno.tools.shell import ShellToolsagent = Agent( tools=[ShellTools()], show_tool_calls=True, markdown=True,)agent.print_response("List all files in the current directory")