ForcePilot/backend/package/yuxi/knowledge/implementations/__init__.py

15 lines
435 B
Python
Raw Normal View History

"""知识库具体实现模块
包含各种知识库的具体实现
- MilvusKB: 基于 Milvus 的向量知识库
- DifyKB: 基于 Dify 检索 API 的只读知识库
2026-05-18 16:02:21 +08:00
- NotionKB: 基于 Notion Data Source 的只读知识库
"""
from .dify import DifyKB
from .milvus import MilvusKB
2026-05-18 16:02:21 +08:00
from .notion import NotionKB
from .read_only_connectors import ReadOnlyConnectors
2026-05-18 16:02:21 +08:00
__all__ = ["MilvusKB", "DifyKB", "NotionKB", "ReadOnlyConnectors"]