Back to Models

Cohere Embed V4

coherecohere/embed-v4

Multilingual multimodal embedding model capable of transforming images, texts, and interleaved content into vector representations. State-of-the-art performance with byte/binary quantization and matryoshka embeddings for compression.

Cohere Embed v4 (embed-v4.0) is Cohere's first production-grade multimodal embedding model, released April 15, 2025. It natively converts text, images, and interleaved documents (PDFs, presentations, financial reports) into a single unified vector space without requiring separate preprocessing pipelines. The model supports Matryoshka embeddings in four dimensions (256, 512, 1024, 1536 default) and a 128 k token context window β€” 256Γ— longer than its V3 predecessor.

Embed v4 is fine-tuned for enterprise domains (finance, healthcare, manufacturing) and achieves state-of-the-art results on text-to-text, text-to-image, and text-to-mixed-modality retrieval. It supports over 100 languages for text and is available on the Cohere Platform, AWS Bedrock (since Oct 2025), SageMaker, Azure AI Foundry, and Oracle OCI. TheRouter exposes it under the stable slug cohere/embed-v4 with full OpenAI-compatible embeddings syntax.

Best for
  • β€’ Multimodal RAG over business documents (PDFs, slides, scanned reports) that contain text + tables + diagrams without manual chunking or OCR preprocessing
  • β€’ Cross-lingual semantic search across 100+ languages in a single index; ideal for global knowledge bases and customer-support archives
  • β€’ Industry-specific retrieval (finance, healthcare, manufacturing) where domain-tuned embeddings outperform generic models on specialized terminology
  • β€’ Cost-sensitive vector storage with Matryoshka dimensions β€” drop from 1536 β†’ 256 to cut storage ~83% while retaining most retrieval quality
Reach for something else if
  • β€’ Pure code or math retrieval β€” specialized code embedding models (e.g. Qwen text-embedding-v4 or OpenAI text-embedding-3-large) remain stronger on code semantics
  • β€’ Real-time image-only search at scale β€” models trained exclusively on vision (CLIP, SigLIP) may offer higher throughput for image-only workloads
  • β€’ On-premise or air-gapped deployments β€” Embed v4 is only available through managed cloud endpoints (Cohere, AWS, Azure, OCI)
Context Length
8K
Max Output
--
Input Priceper 1M tokens
$0.1296/ 1M tokens

Modalities

textimage→embedding

Capabilities

Vision

Pricing Breakdown

TypeRate
Input$0.1296 / 1M tokens

Supported Parameters

input_typedimensionstruncate

Specifications

Release date2025-04-15Cohere Blog β†—verified
Output dimensions256, 512, 1024, 1536 (default)docs.cohere.com β†—verified
Context length128,000 tokensdocs.cohere.com β†—verified
Multimodal inputText + image + interleaved (PDFs, slides)docs.cohere.com β†—verified
Supported languages (text)100+docs.cohere.com β†—verified
Image input languageEnglish onlydocs.oracle.com β†—verified
Training cutoffNot publicly disclosedunknown
Matryoshka embeddingsYes (4 dimensions)docs.cohere.com β†—verified

Benchmarks

BenchmarkDistributionScoreSource
MTEB (Massive Text Embedding Benchmark)
Pure-text score; multimodal capability not captured by standard MTEB
65.2scoreAilog RAG benchmark summary β†—

API Usage Examples

Use the global api.therouter.ai endpoint shown below for new integrations; the legacy China accelerated endpoint is retired.

cURL
curl https://api.therouter.ai/v1/chat/completions   -H "Content-Type: application/json"   -H "Authorization: Bearer $THE_ROUTER_API_KEY"   -d '{
    "model": "cohere/embed-v4",
    "messages": [
      {"role": "user", "content": "Summarize the key points from this input."}
    ]
  }'

API guide

Embeddings request

Generate embeddings for text, image, or mixed inputs. TheRouter routes transparently to Cohere with full OpenAI-compatible syntax.

cURL
curl https://api.therouter.ai/v1/embeddings \
  -H "Authorization: Bearer $THEROUTER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "cohere/embed-v4",
    "input": ["Your text or image URL here"],
    "dimensions": 1024,
    "encoding_format": "float"
  }'

More from cohere

Similar models

Cross-provider sibling models
Fact ledger β€” every claim on this page traces here
sourceURLretrieved
Release dateCohere Blog β†—2026-05-25verified
Output dimensionsdocs.cohere.com β†—2026-05-25verified
Context lengthdocs.cohere.com β†—2026-05-25verified
Multimodal inputdocs.cohere.com β†—2026-05-25verified
Supported languages (text)docs.cohere.com β†—2026-05-25verified
Image input languagedocs.oracle.com β†—2026-05-25verified
Training cutoffβ€”β€”unknown
Matryoshka embeddingsdocs.cohere.com β†—2026-05-25verified
MTEB (Massive Text Embedding Benchmark)Ailog RAG benchmark summary β†—2026-05-25to verify
Help & contact