query_engine.query()
. file_path
which is reducing the output for my LLM.file_path
to the context of the LLM, but only the retrieved text?documents = SimpleDirectoryReader("data/pg_essage.txt").load_data()
Document
objects. file_path
metadata from llm/embedding, i'll have to call the method on each and every Document
object in documents list using something like:for doc in documents: doc.excluded_llm_metadata_keys.append("file_path")