mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-08-28 05:25:04 +00:00
16 lines
310 B
Python
16 lines
310 B
Python
"""execute tool"""
|
|
|
|
from .execute_code import ExecuteCode
|
|
from .execute_shell import ExecuteShell
|
|
from .think_tool import ThinkTool
|
|
from ...core import R
|
|
|
|
__all__ = [
|
|
"ExecuteCode",
|
|
"ExecuteShell",
|
|
"ThinkTool",
|
|
]
|
|
|
|
for name in __all__:
|
|
tool_class = globals()[name]
|
|
R.op.register(tool_class)
|