LLM·Dex
ProprietaryMistralmidtext

Mistral Medium

Mistral's mid-tier balanced model, production-ready at competitive pricing.

Updated


Quick facts

Released
Dec 2024
Context
128K tokens
Output / 1M
$2.00 / 1M tokens
License
Proprietary

About Mistral Medium

Mistral Medium covers the workhorse mid-tier slot in Mistral's lineup. Comparable to GPT-4o-mini or Claude Haiku in capability, with the EU-data-residency advantage that matters for European customers.

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

  • Mid-tier balance
  • EU-friendly

Tracked weaknesses

  • Not at frontier quality

Pricing

Per-million-token rates as published by Mistral.

TierPriceNotes
Input$0.40 / 1M tokensTokens you send to the model
Output$2.00 / 1M tokensTokens the model generates
Context128K tokensMax combined input + output

Call Mistral Medium 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: "mistral-medium",
  messages: [
    { role: "user", content: "What's the time complexity of quicksort?" },
  ],
});

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

Compare Mistral Medium with…

Frequently asked

  • How much does Mistral Medium cost per million tokens?
    Mistral Medium is priced at $0.40 / 1M tokens for input tokens and $2.00 / 1M tokens for output tokens via the official Mistral API at the time of writing.
  • What is Mistral Medium's context window?
    Mistral Medium supports a context window of 128K tokens.
  • Is Mistral Medium open source?
    No. Mistral Medium is a closed-weight model, you can use it via Mistral's API but the model weights are not publicly downloadable.
  • When was Mistral Medium released?
    Mistral Medium was released on Dec 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.