2025-09-23 13:07:50 +08:00
|
|
|
|
"""知识库具体实现模块
|
|
|
|
|
|
|
|
|
|
|
|
包含各种知识库的具体实现:
|
|
|
|
|
|
- MilvusKB: 基于 Milvus 的向量知识库
|
2026-02-24 12:12:02 +08:00
|
|
|
|
- DifyKB: 基于 Dify 检索 API 的只读知识库
|
2026-05-18 16:02:21 +08:00
|
|
|
|
- NotionKB: 基于 Notion Data Source 的只读知识库
|
2025-09-23 13:07:50 +08:00
|
|
|
|
"""
|
|
|
|
|
|
|
2026-02-24 12:12:02 +08:00
|
|
|
|
from .dify import DifyKB
|
2025-10-02 19:59:35 +08:00
|
|
|
|
from .milvus import MilvusKB
|
2026-05-18 16:02:21 +08:00
|
|
|
|
from .notion import NotionKB
|
2026-05-18 09:40:34 +08:00
|
|
|
|
from .read_only_connectors import ReadOnlyConnectors
|
2025-09-23 13:07:50 +08:00
|
|
|
|
|
2026-05-18 16:02:21 +08:00
|
|
|
|
__all__ = ["MilvusKB", "DifyKB", "NotionKB", "ReadOnlyConnectors"]
|