1
0

__init__.py 483 B

123456789101112131415161718
  1. """存储层模块
  2. 按照第8章架构设计的存储层:
  3. - DocumentStore: 文档存储
  4. - QdrantVectorStore: Qdrant向量存储
  5. - Neo4jGraphStore: Neo4j图存储
  6. """
  7. from .qdrant_store import QdrantVectorStore, QdrantConnectionManager
  8. from .neo4j_store import Neo4jGraphStore
  9. from .document_store import DocumentStore, SQLiteDocumentStore
  10. __all__ = [
  11. "QdrantVectorStore",
  12. "QdrantConnectionManager",
  13. "Neo4jGraphStore",
  14. "DocumentStore",
  15. "SQLiteDocumentStore"
  16. ]