ForcePilot/src/knowledge/implementations/__init__.py

12 lines
274 B
Python
Raw Normal View History

"""知识库具体实现模块
包含各种知识库的具体实现
- MilvusKB: 基于 Milvus 的向量知识库
- LightRagKB: 基于 LightRAG 的图检索知识库
"""
from .lightrag import LightRagKB
from .milvus import MilvusKB
__all__ = ["MilvusKB", "LightRagKB"]