Log in
Log into community
Find answers from the community
View all posts
Related posts
Did this answer your question?
😞
😐
😃
Powered by
Hall
Inactive
Updated 9 months ago
0
Follow
Hi guys, I am using the simple fusion
Hi guys, I am using the simple fusion
Inactive
0
Follow
P
Pujari12
9 months ago
·
Hi guys, I am using the simple fusion retriever with Qdrant as vectorDB. While trying to run - nodes_with_scores = retriever.retrieve("How do I setup a chroma vector store?"), getting this error -
Attachment
W
P
L
17 comments
Share
Open in Discord
W
WhiteFang_Jr
9 months ago
would you mind sharing the code?
P
Pujari12
9 months ago
https://colab.research.google.com/drive/13NJEyhKWT7xdJFAJ6nB8mq-fk22UVDKa?usp=sharing
P
Pujari12
9 months ago
its working fine when using the normal vectorstoreindex
P
Pujari12
9 months ago
but not working while using qdrant vector store
P
Pujari12
9 months ago
its even working with weaviate index
P
Pujari12
9 months ago
🥲
W
WhiteFang_Jr
9 months ago
The error is being generated at line 690 in your code while the same code is present on line 704:
https://github.com/run-llama/llama_index/blob/f5263896121721de1051ce58338a1e0ea6950ca7/llama-index-integrations/vector_stores/llama-index-vector-stores-qdrant/llama_index/vector_stores/qdrant/base.py#L704
I think maybe you dont have the latest qdrant installed
W
WhiteFang_Jr
9 months ago
Also, you have added openAI key
P
Pujari12
9 months ago
Im following this doc -
https://docs.llamaindex.ai/en/stable/examples/vector_stores/QdrantIndexDemo/
P
Pujari12
9 months ago
still getting the same error
P
Pujari12
9 months ago
can you tried running it on your side?
P
Pujari12
9 months ago
@WhiteFang_Jr @dev_advocate any update on this?
P
Pujari12
9 months ago
@Logan M any comments on this issue?
L
Logan M
9 months ago
qdrant is pretty janky with async
Set
use_async=False,
in the retriever
L
Logan M
9 months ago
qdrant requires both a sync and async client
QdrantVectorStore(client=QdrantClient(..), aclient=AsyncQdrantClient(...))
But if using
:memory:
, those clients do not share data
P
Pujari12
9 months ago
will it be the same case if I am using my own qdrant instance?
L
Logan M
9 months ago
at least then you can provide both a client and aclient, and they will access the same data
Add a reply
Sign up and join the conversation on Discord
Join on Discord