The multimodal agent has been basically completed.

This commit is contained in:
戒酒的李白
2025-08-22 23:39:11 +08:00
parent 062f66cb2e
commit 431cf6a12c
5 changed files with 99 additions and 144 deletions
+9 -7
View File
@@ -1,20 +1,22 @@
"""
工具调用模块
提供外部工具接口,如网络搜索等
提供外部工具接口,如多模态搜索等
"""
from .search import (
TavilyNewsAgency,
SearchResult,
TavilyResponse,
BochaMultimodalSearch,
WebpageResult,
ImageResult,
ModalCardResult,
BochaResponse,
print_response_summary
)
__all__ = [
"TavilyNewsAgency",
"SearchResult",
"TavilyResponse",
"BochaMultimodalSearch",
"WebpageResult",
"ImageResult",
"ModalCardResult",
"BochaResponse",
"print_response_summary"
]