mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 13:52:43 +08:00
22 lines
347 B
Python
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,
|
|
]
|