Spaces:
Sleeping
Sleeping
File size: 301 Bytes
ee1b838 |
1 2 3 4 5 6 7 8 9 10 11 |
# coding: utf-8
from aworld.tools.template_tool import TemplateTool
from examples.tools.tool_action import WriteAction
from aworld.core.tool.base import ToolFactory
@ToolFactory.register(name="html", desc="html tool", supported_action=WriteAction)
class HtmlTool(TemplateTool):
"""Html tool"""
|