Spaces:
Sleeping
Sleeping
File size: 350 Bytes
5e1a30c |
1 2 3 4 5 6 7 8 9 10 11 12 |
"""
Backend adapters for advanced retriever.
This package provides backend adapters for different vector databases
and retrieval services, enabling the advanced retriever to work with
multiple storage solutions.
"""
from .faiss_backend import FAISSBackend
from .weaviate_backend import WeaviateBackend
__all__ = ['FAISSBackend', 'WeaviateBackend'] |