Spaces:
Build error
Build error
File size: 347 Bytes
51ff9e5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
"""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,
]
|