diff --git a/src/libre_chat/llm.py b/src/libre_chat/llm.py index b3211c3..a4a7b48 100644 --- a/src/libre_chat/llm.py +++ b/src/libre_chat/llm.py @@ -171,7 +171,7 @@ def setup_dbqa(self) -> None: # FAISS should automatically use GPU? # vectorstore = FAISS.load_local(self.get_vectorstore(), embeddings) vectorstore = Qdrant( - QdrantClient(path=self.conf.vector.vector_path), + QdrantClient(url=self.conf.vector.vector_path), collection_name="libre_chat_rag", embeddings=embeddings, )