File size: 507 Bytes
5fad09e
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
# coding: utf-8
# Copyright (c) 2025 inclusionAI.
from examples.tools.tool_action import PythonToolAction
from aworld.core.tool.action_factory import ActionFactory
from aworld.core.tool.action import ExecutableAction


@ActionFactory.register(name=PythonToolAction.EXECUTE.value.name,
                        desc=PythonToolAction.EXECUTE.value.desc,
                        tool_name="python_execute")
class ExecuteAction(ExecutableAction):
    """Only one action, define it, implemented can be omitted."""