Tool that copies a file.
Tool that deletes a file.
Tool that searches for files in a subdirectory that match a regex pattern.
Tool that lists files and directories in a specified folder.
Tool that moves a file.
Tool that reads a file.
Tool that writes a file to disk.
Toolkit for interacting with local files.
Security Notice: This toolkit provides methods to interact with local files. If providing this toolkit to an agent on an LLM, ensure you scope the agent's permissions to only include the necessary permissions to perform the desired operations.
By **default** the agent will have access to all files within
the root dir and will be able to Copy, Delete, Move, Read, Write
and List files in that directory.
Consider the following:
- Limit access to particular directories using `root_dir`.
- Use filesystem permissions to restrict access and permissions to only
the files and directories required by the agent.
- Limit the tools available to the agent to only the file operations
necessary for the agent's intended use.
- Sandbox the agent by running it in a container.
See https://python.langchain.com/docs/security for more information.