Search

Search IconIcon to open search

Page Index

Last updatedUpdated: by Jakub Žovák · 1 min read

Properties
created 13.12.2025, 14:26
modified 13.12.2025, 14:28
published Empty
topics RAG Improvements
authors Empty
ai-assisted No

Inspired by AlphaGo, we propose  PageIndex — a vectorlessreasoning-based RAG system that builds a hierarchical tree index for long documents and reasons over that index for retrieval. It simulates how human experts navigate and extract knowledge from complex documents through tree search, enabling LLMs to think and reason their way to the most relevant document sections. It performs retrieval in two steps:

  1. Generate a “Table-of-Contents” tree structure index of documents
  2. Perform reasoning-based retrieval through tree search
    |500

# 🧩 Features

Compared to traditional vector-based RAGPageIndex features:

  • No Vector DB: Uses document structure and LLM reasoning for retrieval, instead of vector search.
  • No Chunking: Documents are organized into natural sections, not artificial chunks.
  • Human-like Retrieval: Simulates how human experts navigate and extract knowledge from complex documents.
  • Transparent Retrieval Process: Retrieval based on reasoning — traceable and interpretable. Say goodbye to approximate vector search (“vibe retrieval”).

PageIndex powers a reasoning-based RAG system that achieved  98.7% accuracy on FinanceBench, demonstrating state-of-the-art performance in professional document analysis (see our  blog post for details).