Duibonduil's picture
Upload 2 files
3a3f97e verified
# coding: utf-8
# Copyright (c) 2025 inclusionAI.
from examples.tools.tool_action import ShellAction
from aworld.core.tool.action_factory import ActionFactory
from aworld.core.tool.action import ExecutableAction
@ActionFactory.register(name=ShellAction.EXECUTE_SCRIPT.value.name,
desc=ShellAction.EXECUTE_SCRIPT.value.desc,
tool_name="shell")
class ShellAction(ExecutableAction):
"""Only one action, define it, implemented can be omitted. Act in tool."""