Given an existing VectorIndex and DocStore (both in postgres). How can I get all of the nodes extracted from a document using llama-index abstractions?
I'm able to get a document like this and confirm in the
doc = docstore.get_document(llama_id)
assert doc != None
doc_content = doc.get_content()
assert doc_content != None
but when i do this:
docstore_ref_doc_info = docstore.get_all_ref_doc_info()
docstore_ref_doc_info is an empty object
Also i get this error when i do index.ref_doc_info
NotImplementedError: Vector store integrations that store text in the vector store are not supported by ref_doc_info yet.
is there a workaround for this?