Source code for smarter.apps.vectorstore.backends.qdrant
"""
Backend implementation for the Qdrant vectorstore.
see: https://qdrant.tech/
"""
from .base import (
SmarterVectorstoreBackend,
)
[docs]
class QdrantBackend(SmarterVectorstoreBackend):
"""
Backend implementation for the Qdrant vectorstore.
"""