2026-04-21 11:02:16 +08:00
|
|
|
"""
|
2026-04-27 15:23:50 +08:00
|
|
|
工具定义模块 - 子图工具 + RAG 工具
|
|
|
|
|
Subgraph Tools + RAG Tools
|
2026-04-21 11:02:16 +08:00
|
|
|
"""
|
|
|
|
|
|
2026-04-27 15:23:50 +08:00
|
|
|
# 子图工具
|
|
|
|
|
from .subgraph_tools import (
|
|
|
|
|
SUBGRAPH_TOOLS,
|
|
|
|
|
SUBGRAPH_TOOLS_BY_NAME,
|
|
|
|
|
dictionary_tool,
|
|
|
|
|
news_analysis_tool,
|
|
|
|
|
contact_tool
|
|
|
|
|
)
|
2026-04-21 11:02:16 +08:00
|
|
|
|
|
|
|
|
# 工具列表和映射(全局常量)
|
2026-04-27 15:23:50 +08:00
|
|
|
AVAILABLE_TOOLS = SUBGRAPH_TOOLS.copy()
|
|
|
|
|
TOOLS_BY_NAME = SUBGRAPH_TOOLS_BY_NAME.copy()
|