Hi All, I'm implementing the auto-merging retriever and i was wondering if it's possible to use a vector store as the document store too? I've been setting the storage context like this
storage_context = StorageContext.from_defaults(vector_store=vector_store)
but whilst the leaf nodes are persisted in the vector_store it doesn't seem to be including the documents (and heirarchy) like it does if I persist them locally.
Perhaps what I'm trying to do isn't supported? It seems odd to me that you wouldn't be able to use your vector store as your docstore too though.