Xingyao Wang 91c691d526
[agent] Read-only Agent (#6947)
Co-authored-by: openhands <openhands@all-hands.dev>
2025-04-19 02:46:24 +08:00

22 lines
347 B
Python

"""Tools for the ReadOnlyAgent.
This module defines the read-only tools for the ReadOnlyAgent.
"""
from .glob import GlobTool
from .grep import GrepTool
from .view import ViewTool
__all__ = [
'ViewTool',
'GrepTool',
'GlobTool',
]
# Define the list of read-only tools
READ_ONLY_TOOLS = [
ViewTool,
GrepTool,
GlobTool,
]