Context size, not cleverness, unlocks messy documents
A 3-billion-parameter model that reads a 40-page PDF in a single pass — no page-by-page stitching, no lost context, running locally on one 8GB GPU — is a small event with a big lesson behind it. What matters isn't the benchmark score; it's what it removes.
For years, getting software to handle a long rate sheet, a customs packet, or a multi-page bill of lading meant chopping the document into pieces, processing each, and stitching the results back together. Every split was a chance to drop context — a term on page one that changed how you read page nine — and those seams were where errors hid.
Holding the whole document at once removes the seams. The model reasons across the entire file the way a person flipping between pages would, without losing the thread. The freight documents that are messiest and most cross-referential are exactly the ones that suffered most from chunking, so they gain the most here.
There's a second, quieter insight: this runs locally, at no per-call cost. For sensitive trade documents, a model you hold in-house sidesteps both the data-exposure and the metered-cost objections at once. The durable takeaway for anyone automating paperwork: the constraint that matters most is often how much the model can hold at once — not how clever it is. Before reaching for a bigger model, ask whether you were feeding it the document in fragments.