Hi guys, I am using llamaindex to index my document. And i want to create the document object myself, using the following way:
from llama_index import Document
text_list = [text1, text2, ...]
documents = [Document(t) for t in text_list]
Is there a way, that i can get which node is being used when i am quering this document with question? My main objective is to get the page number of answer as well and when i am creating those text1, text2, ... i will store page number as well.