LLM·Dex
Open weightsMistralopentextvision

Pixtral Large

Mistral's 124B vision-language model, strong on dense-text document tasks.

Updated


Quick facts

Released
Nov 2024
Context
128K tokens
Output / 1M
Pricing not published
License
Mistral Research License

About Pixtral Large

Pixtral Large is Mistral's flagship vision-language model, particularly strong on document AI and table extraction. Released under the Mistral Research License, with commercial deployments available via Mistral's hosted API.

For European customers needing strong vision-language capabilities with EU data residency, Pixtral Large is one of the few options that ticks both boxes.

Benchmarks

Published scores from Mistral's model card or independent leaderboards. We do not publish numbers we cannot source, see methodology.

HumanEval
,
Python coding pass@1
MMLU
,
Broad academic knowledge
GPQA
,
Graduate-level reasoning
SWE-bench
,
Real software-engineering tasks
Benchmark scores not yet available. We only publish numbers we can source from official model cards or independent leaderboards, see methodology.

Capabilities

Strengths

  • Strong document AI
  • Open weights

Tracked weaknesses

  • Research license
  • Heavy at 124B

Pricing

Per-million-token rates as published by Mistral.

Per-token pricing not yet published for Pixtral Large. Check the official provider site for current tiers.

Call Pixtral Large from your code

Drop-in snippet for the Mistral SDK. Set your API key in the environment and run.

typescript
import OpenAI from "openai";

const client = new OpenAI({
  // Use OPENAI_API_KEY for OpenAI, or your provider's key + baseURL.
  apiKey: process.env.OPENAI_API_KEY,
});

const completion = await client.chat.completions.create({
  model: "pixtral-large",
  messages: [
    { role: "user", content: "What's the time complexity of quicksort?" },
  ],
});

console.log(completion.choices[0].message.content);

Compare Pixtral Large with…

Frequently asked

  • How much does Pixtral Large cost?
    Mistral has not published per-token API pricing for Pixtral Large at the time of writing. Check the official site for current pricing tiers, or compare against alternative models on LLMDex.
  • What is Pixtral Large's context window?
    Pixtral Large supports a context window of 128K tokens.
  • Is Pixtral Large open source?
    Pixtral Large ships with open weights under the Mistral Research License license. You can self-host it, fine-tune it, and (subject to the license terms) deploy it commercially.
  • When was Pixtral Large released?
    Pixtral Large was released on Nov 18, 2024 by Mistral.
Friday digest

Intelligence, distilled weekly.

One short email every Friday, new model launches, leaderboard moves, and pricing drops. Curated by hand. Free, no spam.