Cohere has officially released Parse 5 (parse-v5.0), a proprietary multimodal foundation model specifically engineered to address the persistent developer challenge of extracting structured data from complex enterprise documents. Launched on August 27th 2026, the 2.3-billion-parameter Vision Language Model (VLM) converts visually rich PDFs, including financial reports and scientific papers, into clean Markdown while providing precise bounding box coordinates for visual grounding.
Architecturally, Parse 5 is optimised for high-volume enterprise workloads, featuring an 8K-token context window that can ingest diverse text and visual inputs simultaneously. Built on Cohere Labs' open-weight North-Micro-Vision-Instruct architecture, the model relies on a highly efficient pipeline. It utilises a custom-trained 400M-parameter native-resolution Vision Encoder (initialised from SigLIP 2 SO400M) that employs 2D Rotary Positional Embeddings (RoPE) and learned 1D positional embeddings to preserve the spatial structure of the document. A dedicated Projector maps these extracted visual features directly into the language model's embedding space.
The core reasoning engine is an in-house 2B-parameter language model (North Micro LLM) based on Cohere's Command A+ architecture. The system uses an Integration ("DeepStack") approach, injecting patch embeddings from multiple layers of the vision encoder into the early layers of the language model, granting it access to visual representations at multiple levels of abstraction. By directly outputting well-structured Markdown, the model promises to eliminate the need for brittle, rules-based OCR pipelines.
To quantify the model's accuracy, Cohere evaluated Parse 5 using ParseBench, a rigorous, rule-based benchmark dataset comprising over 2000 human-verified enterprise pages across insurance, finance, and government sectors. The evaluation tests crucial capability dimensions like table extraction, content faithfulness, and semantic formatting, which often break production workflows when handled by traditional parsers. In these benchmarks, Cohere Parse 5 achieved an average score of 79.2 across table extraction, content faithfulness, and semantic formatting. This performance places it highly competitively within the current tooling ecosystem. While premium configurations like LlamaParse Agentic Plus lead the ParseBench leaderboard with an overall score of 90.20, Parse 5 outpaces other notable alternatives, including Mistral OCR and Google Gemini 3 Flash (Thinking High), which scored 75.05.
For developers, the inclusion of bounding box coordinates alongside the Markdown output ensures that downstream applications can visually ground the extracted data back to the source document. This capability is critical for regulated industries requiring strict audit trails and verification.
Python:
import cohere
co = cohere.ClientV2("YOUR_COHERE_API_KEY")
with open("quarterly_earnings_report.pdf", "rb") as file:
document_content = file.read()
response = co.models.parse(
model="parse-v5.0",
document=document_content,
output_format="markdown"
)
print("Extracted Markdown:\n", response.text)
print("Layout Elements:\n", response.bounding_boxes)
cURL:
curl --request POST \
--url https://api.cohere.com/v2/parse \
--header 'Authorization: Bearer YOUR_COHERE_API_KEY' \
--header 'Content-Type: multipart/form-data' \
--form 'model=parse-v5.0' \
--form 'document=@quarterly_earnings_report.pdf' \
--form 'output_format=markdown'
The API is accessible via Cohere's platform, Microsoft Azure AI Foundry, and Amazon SageMaker on AWS, offering a seamless integration path for teams building retrieval-augmented generation (RAG) or autonomous agent systems. For developers looking to evaluate the tool before full integration, the model is available for testing through Cohere's API dashboard, via a free Hugging Face Space for UI-based testing, and locally using the open-weight North-Micro-Vision-Instruct foundation model on Hugging Face.
Discussions in online communities like Reddit have shown active interest in Cohere Parse's technical capabilities and practical implementation. In a discussion on r/Rag, a user building an ingestion stack currently relying on pypdf with a Mistral OCR fallback highlighted the appeal of Cohere Parse's table extraction, reading order improvements, image descriptions, and pricing. However, this user also noted integration friction, asking about OpenRouter availability and requesting native PDF file input support to avoid needing to render PDFs page-by-page before passing them to the API. Additionally, in r/LocalLLaMA, users reacted positively to the open-weight North-Micro-Vision-Instruct release as a promising OCR model, while noting that the compact 2.4B-parameter scale is specifically intended as a foundation for prototyping and task-specific fine-tuning. The tool's launch was similarly highlighted on r/AIDeveloperNews for its ability to convert complicated files, including tables and embedded images, into clean Markdown.
With the introduction of Parse 5, Cohere consolidates its expansion beyond text-only processing, delivering a robust, cost-effective multimodal tool tailored for the nuanced demands of enterprise document analysis. By prioritising reliable output formatting at lower latency, the company continues to target developers handling messy, real-world unstructured data.