Spaces:
Sleeping
Sleeping
File size: 559 Bytes
b87e166 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
# coding: utf-8
# Copyright (c) 2025 inclusionAI.
from examples.tools.tool_action import DocumentExecuteAction
from aworld.core.tool.action_factory import ActionFactory
from aworld.core.tool.action import ExecutableAction
@ActionFactory.register(name=DocumentExecuteAction.DOCUMENT_ANALYSIS.value.name,
desc=DocumentExecuteAction.DOCUMENT_ANALYSIS.value.desc,
tool_name="document_analysis")
class ExecuteAction(ExecutableAction):
"""Only one action, define it, implemented can be omitted. Act in tool."""
|