Spaces:
Running on Zero
Running on Zero
| """Retrieval strategy implementations. | |
| Available strategies: | |
| - VectorStrategy: Semantic similarity search using embeddings | |
| - BM25Strategy: Lexical/keyword search using BM25 | |
| - BM25VectorStrategy: Hybrid combining BM25 and vector search | |
| """ | |
| from .bm25 import BM25Strategy | |
| from .bm25_vector import BM25VectorStrategy | |
| from .vector import VectorStrategy | |
| __all__ = [ | |
| "VectorStrategy", | |
| "BM25Strategy", | |
| "BM25VectorStrategy", | |
| ] | |