mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-14 23:21:04 +00:00
16 lines
324 B
Python
16 lines
324 B
Python
"""search tool"""
|
|
|
|
from .dashscope_search import DashscopeSearch
|
|
from .mock_search import MockSearch
|
|
from .tavily_search import TavilySearch
|
|
from ...core import R
|
|
|
|
__all__ = [
|
|
"DashscopeSearch",
|
|
"MockSearch",
|
|
"TavilySearch",
|
|
]
|
|
|
|
for name in __all__:
|
|
tool_class = globals()[name]
|
|
R.op.register(tool_class)
|