Code

cookbook/tools/local_file_system_tools.py
from agno.agent import Agent
from agno.tools.local_file_system import LocalFileSystemTools

agent = Agent(
    instructions=[
        "You are a file management assistant that helps save content to local files",
        "Create files with appropriate names and extensions",
        "Organize files in the specified directory structure",
    ],
    tools=[LocalFileSystemTools(target_directory="./output")],
    markdown=True,
)

agent.print_response("Save this meeting summary to a file: 'Discussed Q4 goals and budget allocation'")

Usage

1

Create a virtual environment

Open the Terminal and create a python virtual environment.
python3 -m venv .venv
source .venv/bin/activate
2

Set your API key

export OPENAI_API_KEY=xxx
3

Install libraries

pip install -U openai agno
4

Run Agent

python cookbook/tools/local_file_system_tools.py