mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-16 23:41:10 +00:00
17 lines
505 B
Python
17 lines
505 B
Python
"""Mock search tools for testing and demonstration purposes.
|
|
|
|
This module provides mock search operations that simulate different search tool behaviors,
|
|
including LLM-based query classification and result generation.
|
|
"""
|
|
|
|
from .llm_mock_search_op import LLMMockSearchOp
|
|
from .mock_search_tools import SearchToolA, SearchToolB, SearchToolC
|
|
from .use_mock_search_op import UseMockSearchOp
|
|
|
|
__all__ = [
|
|
"LLMMockSearchOp",
|
|
"SearchToolA",
|
|
"SearchToolB",
|
|
"SearchToolC",
|
|
"UseMockSearchOp",
|
|
]
|