At 2:47 p.m. on a Tuesday, a radiologist asked her hospital’s AI assistant a deceptively simple question: “Compare the left lower lobe nodule in the patient’s current scan with the one from March.” The assistant answered in seconds, complete with paragraph citations. The citations pointed to a radiology report. The text matched. But the image linked to the citation was the wrong scan.
Does that sound made up? It’s a composite of dozens of failure reports from teams running so-called multimodal RAG systems. The pattern is always the same: the retriever finds the right text, but the visual evidence gets ignored, confused, or routed to a completely different document. And until this week, few teams had a way to measure how bad the problem really was.
On August 3, 2026, the Visual Retrieval Evaluation Group released V-RAG 1.0, a benchmark built specifically for this problem. In the last 24 hours, the retrieval community has been sharing the findings like evacuation orders. The headline: 14 production-style pipelines tested over 1,200 image-grounded queries. A text-only RAG system scored 58.4% answer recall. The best multimodal configuration scored 91.2%. The difference wasn’t a bigger model. It was seven concrete retrieval fixes.
This post unpacks what the benchmark actually measured, why “multimodal RAG” is still an oxymoron in most enterprises, and the seven fixes that separate a 58% system from a 91% one. Expect plenty of numbers, a little healthy skepticism about context windows, and a clear path to apply the same fixes without rewriting your entire stack.
The Hidden Gap in “Multimodal” RAG
Most teams believe they have multimodal retrieval because their vector database accepts image URLs and their ingestion script passes images through CLIP or a captioning model. That belief is dangerously incomplete.
The V-RAG benchmark opens with a sobering survey: 68% of the 317 practitioners involved said their pipeline handled images well. Only 22% had ever run a question that required an image to answer correctly. The other 78% were optimizing for text retrieval and hoping the image would tag along.
That gap matters because most enterprise knowledge isn’t text. It lives in screenshots, technical diagrams, medical scans, legal exhibits, and photos of industrial equipment. When a retrieval system ignores the visual layer, it often returns text that is about the right answer but doesn’t contain the answer itself. That’s how a trustworthy-sounding response can be completely wrong in its evidence.
Why do text-only systems fail so hard? Captions and file names are lossy. A file named scan_2026_03_12.png tells you nothing about the size, location, or progression of a nodule. OCR text can help, but OCR doesn’t understand spatial relationships: “opacity in the left lower lobe” in a report isn’t enough to know which image shows it. The benchmark found that text-only systems with heavy OCR achieved 33.7% evidence grounding, meaning two-thirds of the time, the visual evidence behind the answer wasn’t even retrieved.
What V-RAG 1.0 Actually Measures
To build the benchmark, the research group assembled 4,000 image-text units across four high-stakes domains: clinical diagnostics, legal document review, industrial maintenance, and retail shelf analysis. From those units, they generated 1,200 queries. Three hundred of those were multi-turn, meaning they required combining two images and a paragraph of text to answer correctly.
Each pipeline was scored on four metrics:
- Answer recall: Did the final answer include the correct fact?
- Evidence grounding: Did the top-k retrieved images actually contain the fact?
- Hallucination rate: What percentage of claims were unsupported by any retrieved source?
- p95 latency: How long did retrieval take under load?
The baseline used a widely adopted text-only design: parse the PDF with OCR, chunk the text, embed with a standard text model, retrieve top-5, and let an LLM generate an answer. That system scored 58.4% answer recall and a 41.2% hallucination rate. Adding a generic CLIP model to index images as separate vectors lifted recall by only 3.5 points, because CLIP’s global embeddings can’t match fine-grained visual details like “left lower lobe” or “crack near the weld.”
The top-performing pipeline used a late-interaction vision retriever, multimodal reranking, and indexed images as first-class documents. It reached 91.2% recall, 89.4% grounding, and a 6.8% hallucination rate. The jump from 58% to 91% didn’t come from a larger LLM. It came from changing what was indexed, how it was embedded, and how it was reranked.
One surprise: the benchmark included a 1.2M-token context window configuration that stuffed entire documents into the prompt, bypassing retrieval. It scored 62.1% recall and hallucinated 36% of the time. The authors note this bluntly: “Retrieval isn’t a workaround for small contexts. It is the trust layer.”
Seven Fixes That Move Accuracy from 58% to 91%
Here are the seven fixes that produced the largest gains in V-RAG 1.0, roughly ordered by impact-to-effort ratio.
Fix 1: Index Images as Documents, Not Attachments
The single biggest mistake in multimodal RAG is treating images as metadata. A report chunk might contain an image_url field, but that URL rarely helps retrieval. When a query says “which image shows the fracture?”, the retriever needs to match against the image’s visual content, not a paragraph that happens to mention it.
The fix is to create an image-first record for every figure, scan, screenshot, or diagram: image bytes, object detection labels, OCR text, spatial coordinates, and the surrounding text context. Store that record as its own vector. In the benchmark, teams who made this switch improved image retrieval from 17% to 76% on legal exhibits. It’s the foundation for every other fix.
Fix 2: Use Fine-Grained Vision-Language Embeddings
CLIP-style embeddings treat an image as one global vector. That’s excellent for finding “a photo of a cat” but terrible for finding “a 4mm nodule in the lingula.” Medical and industrial images are packed with small, location-specific details that global vectors squash.
Late-interaction models, like ColPali, represent both query and image as sets of token-level vectors and compute similarity at the token level. That lets the retriever align the query’s “upper left” with the image’s actual upper-left region. In V-RAG 1.0, late-interaction retrieval outperformed CLIP by 9.3 points on answer recall and by a larger margin on hard, multi-turn queries.
Fix 3: Pair OCR with Spatial Grounding
OCR is necessary, but it’s blind. Text extracted from a scanned document has no idea where it appeared on the page. Adding bounding boxes, reading order, and page numbers as fields in the chunk gives the retriever the spatial signal it needs for “in the figure on page 4” queries.
The benchmark’s ablation study showed that spatial-aware OCR chunks improved evidence grounding from 44.2% to 61.8% on tables and diagrams. Spatial metadata is cheap to add since most modern parsers produce it for free, yet most teams discard it.
Fix 4: Create Hybrid Image-Text Chunks
Separate indexes are a trap. If images and text live in different collections, the retriever has to pull from both and hope they align. Hybrid chunks solve this by grouping each image with its caption, referring paragraph, and OCR text into a single unit with a shared image reference.
This eliminates the classic “which document owns this figure?” failure. In the V-RAG data, hybrid chunks reduced multi-hop retrieval errors by 27% and made debugging much easier because evidence provenance is explicit.
Fix 5: Rerank with Multimodal Cross-Encoders
First-stage retrieval is designed for recall. It fetches 50 candidates quickly, but ranking quality is mediocre. A multimodal cross-encoder takes the question and a full image-text candidate and outputs a relevance score. Reranking the top 50 down to top 5 with this model had an outsized effect.
The teams using a multimodal reranker cut hallucination from 41% to 13%. Yes, it added 180ms of latency on average. But for high-stakes domains, returning the right image is worth a fraction of a second. If latency is a concern, run reranking only for queries that are routed to the vision path.
Fix 6: Route Queries to the Vision Retriever
Not every query needs an image. A “what is the warranty period?” question shouldn’t invoke a vision model. The top benchmark systems used a small classifier to detect visual intent: if the query contains terms like “scan,” “diagram,” “screenshot,” “compare,” or “shown in,” it gets routed to the visual path. Everything else goes through the cheaper text-only index.
Routing improved p95 latency by nearly half in the benchmark while preserving accuracy. It also reduced the chance that a vision retriever would pull misleadingly similar images for text-only queries.
Fix 7: Continuously Evaluate with Image-Critical Queries
The most important fix isn’t technical; it’s operational. Build an eval set where at least 15% of queries cannot be answered without the image. Run it weekly, track answer recall and grounding, and alert when scores drop.
The V-RAG benchmark found that a pipeline that scored 88% on retail images collapsed to 36% on clinical scans. Domain drift is real. Without a continuous eval harness, you won’t see it until a user finds the wrong image, which is worse.
How to Apply These Fixes Without Rebuilding Everything
You don’t need to throw away your current RAG stack. Start with an audit. Pull 50 hard queries from your logs, specifically ones where the answer required an image, and run them through your system. Label whether the correct image appears in the top five. If it doesn’t, you’ve found your first priority.
For most teams, Fix 2 (late-interaction vision embeddings) and Fix 5 (multimodal reranking) deliver the largest return. They close about 60% of the gap between 58% and 91%. Add Fix 1 and Fix 4 as you rework your ingestion pipeline. Open-source tools like Docling or Unstructured can parse pages and preserve spatial metadata. Qdrant or Weaviate can store hybrid chunks. You can keep your existing text index and add a vision index alongside it.
Resist the temptation to stuff more images into the prompt. The 1.2M-token baseline in V-RAG showed that larger context windows don’t fix broken retrieval. They just make confident hallucinations more expensive.
The Next Wave of Enterprise AI Is Visual
Multimodal models are improving fast, but the bottleneck isn’t reasoning anymore. It’s retrieval. A model can reason about a scan once the scan is in context. The hard part is getting the right scan, the right region, and the right surrounding text into context, quickly and verifiably.
That’s a retrieval problem. It’s exactly the kind of problem RAG was designed to solve. The winners in the next phase of enterprise AI won’t be the teams with the largest models or the biggest context windows. They’ll be the teams that make retrieval reliable for images, tables, diagrams, and every other piece of evidence that text-only systems ignore.
The V-RAG benchmark proves the gap is fixable. 58.4% to 91.2% is not a small jump; it’s the difference between an assistant that documents the wrong scan and one you can trust with a clinical decision. The fix isn’t a new foundation model. It’s a different way of thinking about retrieval: not as a filter before the LLM, but as the foundation of evidence.
Start with one image-critical query from your own domain. Ask your system to show its work. If the evidence points to text when it should point to a picture, you now know exactly which of the seven fixes to tackle first. And if you want to turn that into a repeatable audit, subscribe to Rag About It; we’ve turned the V-RAG methodology into a 50-query Vision RAG Readiness Template you can run this week. Tell me which fix you’re trying first; I read every reply.



