File size: 455 Bytes
6bf2a1e
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# coding: utf-8
# Copyright (c) 2025 inclusionAI.

from aworld.core.tool.base import ToolFactory
from aworld.tools.template_tool import TemplateTool
from examples.tools.tool_action import SearchAction


@ToolFactory.register(name="search_api",
                      desc="search tool",
                      supported_action=SearchAction,
                      conf_file_name=f'search_api_tool.yaml')
class SearchTool(TemplateTool):
    """Search Tool"""