ProfillyBot / src /retrieval /stores /__init__.py
MinhDS's picture
Deploy ProfillyBot: Gradio ZeroGPU + CV RAG (Qwen2.5-3B)
0828c2c verified
Raw
History Blame Contribute Delete
226 Bytes
"""Storage backends for retrieval indexes.
Available stores:
- BM25Store: BM25 index storage and retrieval
- (future) GraphStore: Knowledge graph storage
"""
from .bm25_store import BM25Store
__all__ = [
"BM25Store",
]