fix
Browse files
api.py
CHANGED
@@ -52,7 +52,7 @@ async def startup_event():
|
|
52 |
)
|
53 |
|
54 |
try:
|
55 |
-
qdrant_client = QdrantClient(path="
|
56 |
qdrant = QdrantVectorStore(qdrant_client, "MyCollection", embed_model, distance="Dot")
|
57 |
except Exception as e:
|
58 |
print(f"❌ Error initializing Qdrant: {e}")
|
|
|
52 |
)
|
53 |
|
54 |
try:
|
55 |
+
qdrant_client = QdrantClient(path="qdrant/")
|
56 |
qdrant = QdrantVectorStore(qdrant_client, "MyCollection", embed_model, distance="Dot")
|
57 |
except Exception as e:
|
58 |
print(f"❌ Error initializing Qdrant: {e}")
|