Reputation: 38
Assume that I have saved 10 texts with embeddings into a collection of a Qdrant server, can a Qdrant client list the data in that collection?
For example, the data and embeddings are as follows.
Can a Quant client show the following lines to the user?
I have browsed its document at https://qdrant.tech/documentation/. Seems to me that the client can do a similarity search but not list the data. Any suggestion?
Upvotes: 1
Views: 3838
Reputation: 21
you can get the payload and the embeddings from the collection using client.scroll()
Upvotes: 1
Reputation: 151
You can use Qdrant's scroll API to get your points with the payload. It also supports filtering if needed.
You can refer to the documentation at https://qdrant.tech/documentation/concepts/points/#scroll-points
Upvotes: 2