19 lines
406 B
Python
19 lines
406 B
Python
"""
|
|
Agent Tools - 所有工具统一定义
|
|
"""
|
|
|
|
from .rag import rag_search
|
|
from .web_search import web_search
|
|
from .subgraph import contact_lookup, dictionary_lookup, news_analysis
|
|
|
|
ALL_TOOLS = [rag_search, web_search, contact_lookup, dictionary_lookup, news_analysis]
|
|
|
|
__all__ = [
|
|
"rag_search",
|
|
"web_search",
|
|
"contact_lookup",
|
|
"dictionary_lookup",
|
|
"news_analysis",
|
|
"ALL_TOOLS",
|
|
]
|