23 lines
389 B
Python
23 lines
389 B
Python
"""
|
|
工具调用模块
|
|
提供外部工具接口,如多模态搜索等
|
|
"""
|
|
|
|
from .search import (
|
|
BochaMultimodalSearch,
|
|
WebpageResult,
|
|
ImageResult,
|
|
ModalCardResult,
|
|
BochaResponse,
|
|
print_response_summary
|
|
)
|
|
|
|
__all__ = [
|
|
"BochaMultimodalSearch",
|
|
"WebpageResult",
|
|
"ImageResult",
|
|
"ModalCardResult",
|
|
"BochaResponse",
|
|
"print_response_summary"
|
|
]
|