The private database analysis agent has been basically completed.

This commit is contained in:
戒酒的李白
2025-08-23 14:17:24 +08:00
parent a33e4b3ad2
commit c35a6baf05
5 changed files with 367 additions and 142 deletions
+7 -9
View File
@@ -1,20 +1,18 @@
"""
工具调用模块
提供外部工具接口,如网络搜索
提供外部工具接口,如本地数据库查询
"""
from .search import (
TavilyNewsAgency,
SearchResult,
TavilyResponse,
ImageResult,
MediaCrawlerDB,
QueryResult,
DBResponse,
print_response_summary
)
__all__ = [
"TavilyNewsAgency",
"SearchResult",
"TavilyResponse",
"ImageResult",
"MediaCrawlerDB",
"QueryResult",
"DBResponse",
"print_response_summary"
]