AB
AiBoss
project

Mistral OCR 4 - Mistral AI's latest generation document understanding model

Mistral OCR 4 is the latest generation document understanding model from Mistral AI. The model supports extracting text from complex documents such as PDFs, images, and presentations, and can return bounding box localization, region type classification, and confidence scores...

What is Mistral OCR 4?

Mistral OCR 4 is the latest generation document understanding model from Mistral AI. The model supports extracting text from complex documents such as PDFs, images, and presentations, and returns structured output with bounding box localization, region type classification, and confidence scores. It supports 170 languages and is designed for downstream scenarios such as RAGs, agent workflows, and enterprise search.

Main functions of Mistral OCR 4

  • High-precision document parsingSupports common enterprise formats such as PDF, DOC, PPT, and OpenDocument, and extracts rich elements such as text, tables, formulas, images, and signatures.
  • Structured outputEach content block includes border coordinates, type tags such as title, table, formula, signature, etc., and page-by-page/word-by-word confidence scores.
  • Multilingual supportIt covers 170 languages across 10 language families, with a particularly strong performance in low-resource languages.
  • Dual-mode outputThe same endpoint supports pure extraction mode, Markdown + structured metadata and Document AI mode (outputting structured JSON according to a custom schema).
  • Ultra-high throughputA single node can process up to 2,000 pages of documents per minute, making it suitable for large-scale batch processing scenarios.

Technical principles of Mistral OCR 4

  • Visual text detection and classificationBased on the CNN/Transformer architecture, text regions in a document are located, and each region is semantically classified to restore the hierarchical structure of the original document.
  • Sequence-to-sequence text recognitionThe detected character stream is converted into editable text using Seq2Seq or CTC models, and image preprocessing is combined to improve recognition accuracy.
  • Structured semantic chunkingIt segments documents into semantic blocks with type labels and coordinates, providing downstream RAG systems with reference-ready units that can be directly used for retrieval, and supporting agents to perform structured operations.
  • Single-container lightweight deploymentThe model is compact enough to enable self-hosted deployment within a single container, meeting data residency and compliance requirements.

How to use Mistral OCR 4

  • Register to get API KeyVisit the Mistral AI Developer Platform La Plateforme, register an account, and then go to the "API Keys" page to create and save a key.
  • Install SDKExecute in a Python environment pip install mistralai Install the official SDK.
  • Call the API to process documents use client.ocr.process() The method takes a document URL or a local file as input and sets... model="mistral-ocr-latest"and turn on include_blocks=True To obtain border and type information, you can also... confidence_scores_granularity="word" Obtain word-by-word confidence.
  • Parse the structured resultsAPI returns information containing... pages The JSON of the array, containing per page markdown text,images,tables,hyperlinks,dimensions and confidence_scores Fields such as these can be directly integrated into RAG or agent workflows.
  • Batch processing to reduce costsFor high-throughput scenarios, it is recommended to submit tasks through the Batch Inference API to enjoy a 50% price discount.

Mistral OCR 4's core advantages

  • Humans prefer to leadIn independent human evaluation, OCR 4 achieved an average win rate of 72%, scoring 93.07 on OmniDocBench and 85.20 on OlmOCRBench. Its output quality was favored by humans, surpassing cutting-edge models such as GPT 5.5 Pro and Gemini 3.1 Pro Preview.
  • Ultimate cost-effectiveness and speedWith a cost of only $4 per thousand pages ($2 for batch processing) and a single node processing 2,000 pages per minute, Rogo's actual tests show that its cost is about 1/8 of that of leading intelligent agent parsers, and its latency is as low as 1/17.
  • Reference-ready fine-grained outputThe triple labeling of borders, type, and confidence level enables the RAG system to provide source-tracing answers with clickable references and to automatically route low-confidence areas to human review.
  • Unified endpoint dual modeNo need to switch interfaces; the same endpoint can satisfy both the engineers' original extraction needs and the business personnel's schema-based structured output needs.

Mistral OCR 4 project address

  • Project official websitehttps://mistral.ai/news/ocr-4/

Comparison of Mistral OCR 4 with similar competing products

Comparison Dimensions Mistral OCR 4 MOCR
Research and development Mistral AI France Huazhong University of Science and Technology + Xiaohongshu hi lab
Release time June 2026 March 2026
Model size Not disclosed (small-scale focused model) 3B parameters(Visual encoder 1.2B + Qwen2.5-1.5B decoder)
Open source/closed source Closed source(Cloud API + Single-container self-hosting) open source(Apache 2.0, HuggingFace/ModelScope/GitHub)
OmniDocBench 93.07 The specific score was not disclosed (tested on version 1.5).
OlmOCR Bench 85.20 83.9(Open source model, State of the Own)
OCR Arena Elo Not disclosed Second place(Second only to Gemini 3 Pro)
Human assessment of win rate Average 72%(vs all competitors) Undisclosed independent human assessment data
Language coverage 170 languages(10 language families) Multilingual (the exact number is not specified, but Chinese, Japanese, etc. are supported).

Application scenarios of Mistral OCR 4

  • Enterprise-level RAG knowledge baseIt transforms scanned documents such as contracts, research reports, and manuals into structured search units with citations, and integrates them with the Mistral Search Toolkit to achieve traceable question answering.
  • Intelligent agent automated workflowIt provides structured fields with type labels and coordinates for intelligent agents such as invoice processing and form filling, enabling automatic flow from document to action.
  • Confidence level review pipelineBased on word-by-word confidence scoring, high-confidence content is automatically stored in the database, while low-confidence areas are routed to manual verification, balancing efficiency and accuracy.
  • Enterprise Search and Compliance AuditAs a data access component, it performs entity extraction and index construction on massive unstructured documents to meet the compliance and auditing needs of industries such as finance, law, and government.