Your RAG pipeline reads every chunk. But it has no idea where they came from.
Introducing ADE Section: hierarchical context for every chunk in your retrieval pipeline.
Standard chunking strategies slice documents into fragments, stripping away structure. "Revenue is down 10%" lands in your index with zero signal of whether it came from Risk Factors or Global Operations. Both queries compete against the same flat pool of chunks.
ADE Section builds a hierarchical Table of Contents from your parsed document, tied to exact chunk anchor IDs. It prepends the full breadcrumb path to every chunk before embedding. Structure bakes directly into the vector.
The ancestor path saves as metadata, so you can filter retrieval to specific sections. A legal analyst searching for indemnification clauses doesn't need the system evaluating marketing copy. Precision filtering cuts noise on every query.
The breadcrumb travels with every chunk into the LLM. The model knows exactly where it is in the document. Citations hold up.
When the default hierarchy needs adjustment, pass a guidelines prompt in the API call.
Run ADE Parse, then run ADE Section.