# D-RAC：通过 PDF 归一化与多模态 Markdown 转换实现企业文档的通用检索感知摄取

- 来源：HuggingFace Daily Papers（社区热门论文）
- 发布时间：2026-09-21 08:00
- AIHOT 分数：43
- AIHOT 链接：https://aihot.news/items/cmucc8auk02q6roijg4uwrfc6
- 原文链接：https://arxiv.org/abs/2609.24220

## AI 摘要

D-RAC 将任意格式文档先归一化为 PDF，再用单次多模态 LLM 调用转成检索优化的 Markdown，并按 W-RAC 方式确定性分块。在 RAG-Multi-Corpus 的 236 篇文档、795 页 PDF 子集上，72 分钟零错误生成 1,748 个可检索 chunk。

## 正文

Retrieval-Augmented Generation (RAG) systems over enterprise knowledge bases must ingest heterogeneous document formats -- PDFs, Word documents, presentations, and scans -- whose content is locked inside complex visual layouts, multi-column pages, and dense tables. Rule-based extraction and OCR destroy reading order, flatten tables, and lose heading hierarchy, while fully agentic chunking over extracted text incurs high token costs and hallucination risk. We present Document Retrieval-Aware Chunking (D-RAC), an extension of our Web Retrieval-Aware Chunking (W-RAC) framework to arbitrary document formats.

D-RAC first normalizes any input document into PDF, exploiting the fact that virtually every format has a faithful, deterministic PDF rendering. A single multimodal LLM pass then converts rendered pages into retrieval-optimized Markdown -- rewriting tables as self-contained prose statements and preserving heading hierarchy -- after which chunking proceeds exactly as in W-RAC: deterministic parsing into ID-addressable units followed by lightweight LLM-based chunk planning over identifiers rather than text. Source text is never regenerated during chunking, preserving W-RAC's cost, determinism, and observability benefits while unlocking every renderable format as a first-class input.

On the 236-document, 795-page PDF subset of the RAG-Multi-Corpus benchmark spanning five enterprise domains, D-RAC converts and chunks the entire corpus in 72 minutes with zero errors, producing 1,748 retrieval-ready chunks. Compared to agentic chunking with frontier LLMs, D-RAC reduces chunking-stage output tokens by 95.7%, cutting chunking cost by 77.8% (GPT-4.1 pricing) to 85.6% (Gemini 2.5 Pro pricing) and chunking time by 75%. D-RAC scales linearly to documents of 500+ pages.
