Spaces:
Running on Zero
Running on Zero
File size: 226 Bytes
0828c2c | 1 2 3 4 5 6 7 8 9 10 11 12 13 | """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",
]
|