[Question] How to set the "payload" for the QdrantVectorStore?
Hi, I am new to this excellent library.
I need to store additional data within the "payload" for documents to set a reference to the original items.
I saw that the method QdrantVectorStore::createPointFromDocument() does not pass the "payload" param when instantiating a new PointStruct().
However, in method QdrantVectorStore::similaritySearch() you call setWithPayload(true).
So, my first thought was that it would be great to have a setter in the QdrantVectorStore class to set the data for the payload which then would be used within the PointStruct() instantiation within method createPointFromDocument. Or is there already a way to set the "payload"?
Hey @menturion , we can add a metadata entry in the payload. Feel free to make a PR about it.