Hi,
I want to evaluate this retriever within the scope of our application -
https://docs.llamaindex.ai/en/stable/examples/retrievers/auto_merging_retriever.html.
Currently, we're utilising Qdrant as our vector store, handling inserts, updates, and deletes.
For this particular retriever, we're considering using Redis as a document store while continuing with Qdrant for managing the vector store at the leaf-level nodes. This means we'll need to perform inserts, updates, and deletes on both the vector store and the document store.
Could someone please show the standard way to achieve this in LlamaIndex? The documentation only discusses inserts.
Thanks!