Hi there, I used
llama-parse
and implemented the RAG on a set of financial documents. Similar to the example in this notebook[1], we build a
raw index
and
recursive index
. To my surprise, the results from
raw_index.as_query_engine
are more accurate than the
recursive
one. I am try to get an intution for why this might be? For context, we have tables with financial data and a sample query might look like -
what was the total rent for Property A in 2023? What is the key difference between the two indices? and how do they work under-the-hood?
https://github.com/run-llama/llama_parse/blob/main/examples/demo_advanced.ipynb