Skip to content

Commit

Permalink
fix qdrant
Browse files Browse the repository at this point in the history
  • Loading branch information
vemonet committed Jan 10, 2024
1 parent 3926d3b commit ee3f104
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libre_chat/llm.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)
Expand Down

0 comments on commit ee3f104

Please sign in to comment.