using memory for qdrant
Browse files- semantic.py +1 -1
semantic.py
CHANGED
@@ -90,7 +90,7 @@ class SemanticStoreFactory:
|
|
90 |
semantic_chunk_vectorstore = Qdrant.from_documents(
|
91 |
semantic_chunks,
|
92 |
embeddings,
|
93 |
-
|
94 |
collection_name=META_SEMANTIC_COLLECTION,
|
95 |
force_recreate=True
|
96 |
)
|
|
|
90 |
semantic_chunk_vectorstore = Qdrant.from_documents(
|
91 |
semantic_chunks,
|
92 |
embeddings,
|
93 |
+
location=":memory:",
|
94 |
collection_name=META_SEMANTIC_COLLECTION,
|
95 |
force_recreate=True
|
96 |
)
|