Why the Corpus Outranks the Model
Teams arrive here because retrieval is disappointing and a better embedding model looks like the fix.
Usually it is not. Moving from a mid-table model to a leaderboard leader buys a few points of recall;
cleaning the material being embedded routinely buys more, because the failures below are properties of the
corpus that no encoder can see past.
Duplicate passages crowd the results
The same policy paragraph living in nine documents produces nine near-identical vectors. A top-3 retrieval returns three copies of one idea and drops the two that would have completed the answer.
Contradictions retrieve equally well
Superseded guidance sits as close to the query as current guidance, because similarity measures aboutness, not correctness. No model can rank truth it was never told about.
Boilerplate dilutes the signal
Headers, footers, legal preambles and navigation text pull a passage vector toward the average of the document set, which is precisely where nothing is distinctive.
The underlying problem is well documented: IDC puts average enterprise data duplication between 8:1 and
22:1, and Gartner estimates the cost of poor data quality at $12.9 million per organization per year. Both
describe the input side of a retrieval system, unaffected by which model encodes it.
Iternal built Blockify for this step: it restructures raw enterprise documents into deduplicated,
self-contained IdeaBlocks before anything is embedded. On the published benchmark, IdeaBlocks return
2.29X more accurate vector search than naive 1,000-character chunking of the same material
— a 56.26% precision gain — while averaging roughly 98 tokens per block against about 303 for a
naive chunk, a 3.09X token reduction per query. The method and the caveats on the aggregate
figures are published in the Blockify benchmark data.
Because it runs ahead of the encode step this is not a competing choice to the comparison above: it works
with any embedding model, open-source or managed, and compounds with a good one. The same principle drives
the economics in the guide on reducing AI token costs — how the
data is structured matters more than which encoder processes it.