How do implement something like Auto Merging Retriever but using two Supabase VectorStoreIndex .
I have defined two separate vector store indices one for nodes and the other for leaf nodes. How do I retrieve from these nodes such that the output is something like Auto Merging Retriever?
The primary problem with my implementation is that I'm not getting the same outputs as AutoMergingRetriever when used with a SimpleDocumentStore and VectorStoreIndex. I don't know where I'm messsing this up
The pairwise comparison might be in efficient but still seems to produce a better results for queries as compared to hnsw then. Is there someway I can specify any other retrieval method?