Use pdfplumber or unstructured.io to extract bounding boxes . RBS-R cares about Y-coordinates. If two text blocks have the same Y-axis, they are the same line. If the Y-axis delta is large, it’s a new paragraph.
chunks = [] current_chunk = ""
How to combine RBS-R with Latex OCR for mathematical PDFs. Have you tried recursive splitting? Share your chunking horror stories in the comments.
# Use the current level's delimiter delim = delimiters[level][0] splits = text.split(delim)
If you have a bulleted list with 50 items, a recursive split might try to split at the sentence level inside a bullet, breaking the list semantic. Pre-process lists. Convert \n- Item into a delimiter like [LIST_BREAK] before splitting, then reconstruct. Conclusion: Stop Chunking, Start Structuring RBS-R is not an LLM. It’s not a vector database. It is a hydraulic press for your PDFs—it applies pressure until the content fits the context window, but it always breaks at the joints .
Beyond Chunking: Why RBS-R (Recursive Binary Splitting-RAG) is the PDF Preprocessor You’re Missing Tagline: Stop forcing square chunks into round LLM context windows. Introduction: The PDF Paradox PDFs are the cockroaches of the digital world—indestructible, universally hated, and everywhere. In enterprise RAG (Retrieval-Augmented Generation), the PDF remains the primary data source. Yet, most pipelines handle PDFs with a fatal flaw: naive fixed-size chunking .