Spaces:
Sleeping
Sleeping
File size: 311 Bytes
e272f4f |
1 2 3 4 5 6 7 8 9 10 |
from qdrant_client import QdrantClient
from config import QDRANT_HOST, QDRANT_PORT, QDRANT_COLLECTION_NAME
class QdrantHandler:
def __init__(self):
self.client = QdrantClient(
host=QDRANT_HOST,
port=QDRANT_PORT
)
self.collection_name = QDRANT_COLLECTION_NAME |