Overview
Tencent's Hunyuan team released EVIE-Preview-4.5B in August 2026, a visual document retrieval model that completely removes OCR from the retrieval pipeline. Instead of flattening pages into text, the model encodes each PDF page as a 2D image and uses late interaction with 128-dimensional multi-vector patch embeddings. Despite its small 4.5B-parameter size, it scored 64.40 on ViDoRe V3, outperforming a competing NVIDIA 8B model (45.00–52.00) on the same benchmark.Key Points
1. OCR vs. Pure-Vision Pipelines
- OCR pipeline: Image → OCR text → flat embedding → search. Tables break across rows, charts are lost, layout is destroyed.
- EVIE-4.5B pipeline: Image → direct visual encoding → 128-dim compact multi-vector tokens per patch → millisecond retrieval.
- Late Interaction (ColPali paradigm): Each page patch keeps its own embedding instead of being averaged into one global vector. Query tokens are matched against patches at search time.
- MaxSim similarity operator:
- 128-dim compression: Patches are encoded into 128 dimensions instead of the typical 2048, reducing memory by 8–32x and storage cost by ~85%.
- GatedDeltaNet linear attention hybrid: A more efficient backbone than full Transformer attention, enabling high-throughput processing of long documents.
- ViDoRe V3 score: 64.40 (1st place among compared models).
- Beats: NVIDIA's 8B model (45.00–52.00).
- Storage: ~85% reduction vs. 2048-dim embeddings.
- Speed: ~0.01 s per query across 100k pages.
2. Core Mechanisms
3. Multimodal RAG Role
EVIE is not a replacement for large VLMs. In a two-stage pipeline: 1. EVIE-4.5B acts as a scout, retrieving the 1 relevant page out of 100,000 in ~0.01 s. 2. A larger model (e.g., Hunyuan or Qwen-VL) reads only that page to answer the user. This division of labor reportedly cuts overall system cost by ~90% compared to having a 70B model scan all pages.4. Reported Results
Academic References
1. Khattab & Zaharia, SIGIR 2020 — *ColBERT: Efficient and effective passage search via contextualized late interaction over BERT*. Founded late interaction and MaxSim theory.
2. Faysse et al., 2024 — *ColPali: Efficient Document Retrieval with Vision Language Models*. DOI/arXiv: arXiv:2407.01449. Established the ViDoRe benchmark and end-to-end vision-based document retrieval paradigm.