14 lines
424 B
Python
14 lines
424 B
Python
"""搜索 Agent 装配层 — prompt 管理、skill 注册、工具分发、LLM 摘要、视觉观察。"""
|
|
|
|
from app.search.prompt import PromptManager
|
|
from app.search.skills import SkillRegistry, discover_skills
|
|
from app.search.tools import SearchToolDispatcher, get_tool_descriptions
|
|
|
|
__all__ = [
|
|
"PromptManager",
|
|
"SkillRegistry",
|
|
"SearchToolDispatcher",
|
|
"discover_skills",
|
|
"get_tool_descriptions",
|
|
]
|