Spaces:
Running
Running
File size: 407 Bytes
9f5e57c 163ed2c |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
"""
Retrieval utilities for hybrid RAG systems.
Combines dense semantic search with sparse keyword matching.
"""
# Import HybridRetriever with proper error handling
try:
from .hybrid_search import HybridRetriever
__all__ = ['HybridRetriever']
except ImportError as e:
# Handle import errors gracefully for deployment
print(f"Warning: Could not import HybridRetriever: {e}")
__all__ = [] |