AI Engineering

Benchmarks Guide

How to use public LLM and embedding benchmarks (MMLU-class, HumanEval, MTEB, arena, domain) for shortlisting — and why benchmarks are not product evaluation.

50 min readIntermediateLast reviewed: 21 July 2026

Quick Summary

Public benchmarks compress capability into comparable scores for shortlisting — they do not replace product evaluation on your golden sets.

One Analogy

A leaderboard is a combine score for athletes; shipping on it alone is hiring without a job interview on your field.

Engineering Rule

Use benchmarks to narrow candidates; ship only after domain eval, faithfulness, and cost/latency pass your gates — see evaluation.

TL;DR

  • Benchmarks measure general capability on standardized tasks. They inform model shortlisting; they do not predict your production quality. Product decisions require evaluation, LLM evaluation, and (for RAG) retrieval evaluation.

  • Know the family: MMLU-class (knowledge), HumanEval/SWE-bench (code), MTEB/BEIR (embeddings/retrieval), arena-style preference (chat), plus domain suites for your vertical.

  • Contamination, gaming, and saturation distort scores. Models may have seen test items; prompts can be tuned for the benchmark format; ceiling effects make tiny gaps meaningless.

  • Correct workflow: leaderboard → shortlist 3–5 → run your golden set (task format, faithfulness, latency, cost) → pick primary + fallback.

  • When NOT: shipping or switching models based on a leaderboard alone. Arena Elo ≠ JSON extraction reliability; MMLU ≠ RAG faithfulness.

On this page

Why This Matters

Your CTO asks: “Should we switch to the model topping the arena?” You recommend the switch based on Elo. Three weeks later, structured extraction regresses because the new model handles your JSON schema and refusal policy differently — none of which the arena measured.

Benchmarks compress complex behavior into numbers that enable comparison across providers. Those numbers measure public tasks that may share little with your application: system-prompt adherence, document formats, hallucination under RAG, tool-calling reliability, or p95 latency under your traffic shape.

Used correctly, benchmarks narrow a field of dozens of models to a few candidates. Used incorrectly, they become a substitute for evaluation — and you ship a leaderboard story instead of a product that works.

The Problem Benchmarks Solve

The LLM landscape has hundreds of models across providers and open weights. Without standardized suites, comparison is anecdotal (“I tried it and it seemed good”) and does not scale to engineering decisions, vendor RFP, or quarterly re-evaluation.

Benchmarks provide:

Need What benchmarks give
Standardized comparison Same tasks, metrics, and (ideally) reproducible harnesses
Capability mapping Which families are strong at code, knowledge, embeddings, chat preference
Progress tracking How the field moves on specific tasks over time
Screening efficiency Cut 50 models to 3–5 before expensive domain eval

They do not provide:

  • Performance on your specific use case and prompt templates
  • Production reliability (latency, uptime, rate limits, regional availability)
  • Faithfulness in RAG pipelines (retrieval evaluation, RAG evaluation)
  • Prompt sensitivity for your schemas and safety policies (prompt evaluation)
  • Cost per successful task under your token mix

Framing the engineering problem clearly: benchmarks are a screening instrument; product evaluation is the decision instrument.

How We Got Here

Public NLP benchmarks long predate chat LLMs. What changed is productization: buyers and engineers needed a shared language for “which model is better?” Leaderboards filled that gap — and created incentives to optimize for the scoreboard.

Diagram: From academic suites to product misuse

timeline
    title Evolution of LLM benchmarking practice
    2018-2021 : GLUE / SuperGLUE era
              : Task suites for NLU papers
    2021-2023 : MMLU / HumanEval rise
              : Single numbers for LLM marketing
    2023-2024 : Arena + MTEB mainstream
              : Preference Elo and embedding ranks
    2024-2026 : Saturation + live / harder suites
              : Domain eval as shipping gate

Scores became procurement language faster than contamination controls and task-fit discipline.

Era Dominant use Failure mode
Paper metrics Research comparison Not product-shaped
Marketing leaderboards Vendor claims Contamination / cherry-picking
Arena preference Chat quality signal Wrong proxy for tools/RAG/JSON
Engineering practice Shortlist then golden-set eval Still skipped under schedule pressure

Industry consensus among teams that ship: treat public scores as priors, not proofs. Harder suites (MMLU-Pro, GPQA, SWE-bench Verified) and live benchmarks reduce some gaming — they still are not your product.

What Are LLM Benchmarks?

Benchmarks are standardized test suites with defined tasks, inputs, expected outputs (or preference judgments), and scoring metrics. The ecosystem spans several categories:

Category Examples What it measures Key metric
Knowledge MMLU, MMLU-Pro Broad / harder multiple choice Accuracy
Reasoning GSM8K, GPQA Math / expert questions Accuracy
Code HumanEval, SWE-bench Function gen / real issues pass@k / resolve rate
Instruction / chat MT-Bench, LMSYS Arena Multi-turn quality / preference Judge score / Elo
Embeddings MTEB 8 task types across many datasets Mean / task-specific
Retrieval BEIR, MTEB retrieval Zero-shot search quality nDCG@10
Long context Needle-in-a-haystack variants Recall of planted facts Recall
Agents SWE-bench-style, tool suites End-to-end task completion Success rate

Each category has known limitations: data contamination, metric gaming, narrow task scope, and saturation as frontier models approach ceilings.

Engineering Insight

A high MMLU score says little about whether GPT-5.6, Claude Sonnet 5, or Gemini 3.5 will stay faithful to your retrieved policy chunks. That is a LLM evaluation / faithfulness problem.

How Benchmarks Work

MMLU-class (knowledge)

MMLU: ~57 subjects, 4-choice multiple choice, ~14k questions. MMLU-Pro and similar harden the format (more options, harder items) as original MMLU saturates.

Prompt: "What is the primary function of mitochondria?
(A) Protein synthesis (B) Energy production (C) DNA replication (D) Cell division
Answer:"
Expected: B

How to use: Screen general-purpose models for broad knowledge. Do not use as a proxy for instruction following, tool use, or RAG faithfulness.

Limitations: Multiple-choice ≠ production tasks; contamination risk; ceiling effects make 1–2 point gaps noisy.

HumanEval / code benchmarks

HumanEval: 164 Python problems from docstring + signature → function body; executed against unit tests.

pass@k = P(at least one of k samples passes all tests)

Report pass@1 and often pass@10. SWE-bench (and verified variants) are closer to real engineering: generate patches for GitHub issues that must pass the repo’s tests.

How to use: Shortlist coding assistants and code agents. Follow with repo-specific golden tasks (multi-file edits, your stack, your lint/test commands).

Limitations: HumanEval is Python and single-function scoped. High pass@k ≠ reliable multi-file refactor or production debugging.

MTEB and retrieval suites

MTEB ranks embedding models across classification, clustering, retrieval, STS, and more. For RAG, prioritize retrieval metrics (e.g. nDCG@10), not the global mean alone. BEIR focuses on zero-shot retrieval across diverse datasets.

Critical caveat: Public retrieval scores do not transfer to your corpus. Always run retrieval evaluation on your documents before locking an embedding model.

Arena-style and LLM-as-judge

LMSYS-style arenas collect human pairwise preferences → Elo. MT-Bench uses LLM judges on multi-turn prompts. Useful for conversational quality priors.

Limitations: Preference ≠ correctness; judges have biases; gaming via style (verbosity, formatting) is real. Arena winners can still fail your schema or safety policy.

Domain benchmarks

Vertical suites (medical QA, legal, finance) help when they match your domain — still not a substitute for your labeled golden set with your documents and acceptance criteria. See evaluation.

Diagram: Where public scores sit in model selection

flowchart TD
    Req[Task requirements] --> LB[Public leaderboards]
    LB --> SL[Shortlist 3-5 models]
    SL --> Dom[Domain golden-set eval]
    Dom --> Cost[Cost / latency / limits]
    Cost --> Pick[Primary + fallback]
    Dom -.->|Fail| SL
    LB -.->|Contamination / wrong task| Warn[Do not ship]
    Warn --> Dom

Leaderboards narrow; golden sets and operational constraints decide.

Architecture

Treat benchmarking as a stage in a selection architecture, not as the production quality system. Product quality lives in eval harnesses, CI gates, and online monitoring — see LLM evaluation and evaluation.

Stage Input Output Typical effort
Requirements Use case, risk, formats Must-have capabilities Hours
Leaderboard review Relevant benchmark families Shortlist of 3–5 ~1 hour
Benchmark deep-dive Contamination notes, task fit Confidence in shortlist Hours
Domain eval Golden set (50–200+) Pass rate, faithfulness, format 1–2 days
Ops fit Latency, rate limits, regions Feasibility Hours
Decision Quality + cost + risk Primary + fallback + review date

Diagram: Benchmark score vs product quality (conceptual)

stateDiagram-v2
    [*] --> Screening: Public benchmarks
    Screening --> Candidate: Score threshold met
    Screening --> Rejected: Wrong task / weak score
    Candidate --> Validating: Golden-set + RAG/tool eval
    Validating --> Shipped: Gates pass
    Validating --> Rejected: Domain fail
    Shipped --> Monitoring: Online quality + cost
    Monitoring --> ReScreen: New models / regressions
    ReScreen --> Screening

Shipping is a state you enter after domain validation — not after reading a leaderboard.

Step-by-Step Flow

Diagram: Shortlist-then-validate sequence

sequenceDiagram
    participant Eng as Engineer
    participant LB as Leaderboards
    participant Har as Eval harness
    participant Prod as Staging
    Eng->>LB: Map tasks to benchmark families
    LB-->>Eng: Ranked candidates
    Eng->>Eng: Cut to 3-5 with constraints
    Eng->>Har: Run golden set + faithfulness
    Har-->>Eng: Pass/fail + cost/latency
    alt Gates pass
        Eng->>Prod: Canary deploy primary + fallback
    else Gates fail
        Eng->>LB: Reshortlist or retune prompts
    end

Never promote a model to default traffic on public scores alone.

  1. Define task requirements. Code gen? Factual Q&A with RAG? Structured extraction? Long-context review? Multi-tool agents? Map each need to a benchmark family and to a domain metric.
  2. Check leaderboards with task fit. Arena for chat feel; MTEB retrieval for embeddings; HumanEval/SWE-bench for code; MMLU-class only as a weak general prior.
  3. Read limitations. Contamination disclosures, saturation, judge bias, language coverage, and what the suite never measures.
  4. Run domain eval. Fixed golden set; same prompts/tools/retrieval; compare pass rate, faithfulness, format compliance, latency, cost. See LLM evaluation.
  5. For RAG paths, evaluate retrieval separately. Embedding/reranker choice needs retrieval evaluation on your corpus — MTEB is not enough.
  6. Analyze cost-quality tradeoffs. A model 5% better on your eval but 10× more expensive may lose. Plot quality vs cost per successful task.
  7. Select primary and fallback. Fallback for outages, rate limits, or cost routing (cost optimization).
  8. Re-evaluate on a cadence. Quarterly baseline; interrupt when major model families ship or your product distribution shifts.

Real Production Example

Model selection that starts from public scores as metadata, then decides on domain eval:

from __future__ import annotations

import json
import time
from dataclasses import dataclass
from typing import Callable


@dataclass
class ModelCandidate:
    name: str
    model_id: str
    # Public scores are priors for shortlisting only — not shipping gates
    mmlu_score: float | None = None
    arena_elo: float | None = None
    cost_per_1m_input: float = 0.0
    cost_per_1m_output: float = 0.0


@dataclass
class ModelEvalResult:
    model: str
    pass_rate: float
    avg_faithfulness: float
    avg_latency_ms: float
    cost_per_1k_queries: float


# Example shortlist after leaderboard screening (IDs are illustrative)
CANDIDATES = [
    ModelCandidate(
        "GPT-5.6",
        "gpt-5.6",
        mmlu_score=90.0,
        cost_per_1m_input=2.50,
        cost_per_1m_output=10.0,
    ),
    ModelCandidate(
        "Claude Sonnet 5",
        "claude-sonnet-5",
        mmlu_score=89.5,
        cost_per_1m_input=3.0,
        cost_per_1m_output=15.0,
    ),
    ModelCandidate(
        "Gemini 3.5",
        "gemini-3.5",
        mmlu_score=89.0,
        cost_per_1m_input=1.25,
        cost_per_1m_output=5.0,
    ),
]


def run_domain_eval(
    candidate: ModelCandidate,
    test_set: list[dict],
    pipeline_fn: Callable,
) -> ModelEvalResult:
    passed = 0
    faithfulness_scores: list[float] = []
    latencies: list[float] = []
    total_in = 0
    total_out = 0

    for case in test_set:
        start = time.time()
        result = pipeline_fn(candidate.model_id, case["input"])
        latencies.append((time.time() - start) * 1000)

        if case.get("expected_contains"):
            if all(t in result["output"].lower() for t in case["expected_contains"]):
                passed += 1

        if result.get("faithfulness") is not None:
            faithfulness_scores.append(float(result["faithfulness"]))

        total_in += int(result.get("input_tokens", 500))
        total_out += int(result.get("output_tokens", 200))

    n = max(len(test_set), 1)
    input_cost = (total_in / 1_000_000) * candidate.cost_per_1m_input
    output_cost = (total_out / 1_000_000) * candidate.cost_per_1m_output
    cost_per_1k = (input_cost + output_cost) * (1000 / n)

    return ModelEvalResult(
        model=candidate.name,
        pass_rate=passed / n,
        avg_faithfulness=(
            sum(faithfulness_scores) / len(faithfulness_scores)
            if faithfulness_scores
            else 0.0
        ),
        avg_latency_ms=sum(latencies) / len(latencies),
        cost_per_1k_queries=cost_per_1k,
    )


def compare_models(test_set: list[dict], pipeline_fn: Callable) -> ModelEvalResult:
    results = [run_domain_eval(c, test_set, pipeline_fn) for c in CANDIDATES]
    best = max(results, key=lambda r: (r.pass_rate, r.avg_faithfulness))
    # Prefer cheapest within a small quality band of the best
    band = [r for r in results if r.pass_rate >= best.pass_rate - 0.03]
    pick = min(band, key=lambda r: r.cost_per_1k_queries)
    print(f"Recommendation: {pick.model} (domain eval, not leaderboard)")
    return pick


if __name__ == "__main__":
    test_set = json.load(open("golden_test_set.json"))
    compare_models(test_set, my_pipeline)  # noqa: F821 — wire your pipeline

What this encodes:

  • Public MMLU (or Elo) is metadata on the shortlist, not a sort key for production
  • Decision uses pass rate + faithfulness + cost on your cases
  • Primary pick can be the cheaper model inside a quality band — a production pattern leaderboards never capture

Design Decisions

Common patterns

Pattern What it does Use when
Task-mapped screening Only read benchmarks that match the job Always
Shortlist then golden set Decouple marketing scores from ship gates Every model change
Separate retrieval eval Judge embeddings on your corpus Any RAG path
Primary + fallback Resilience and cost routing Production traffic
CI eval gate Block deploys on domain regression Continuous delivery
Live / rotating sets Reduce contamination comfort High-stakes or long-lived products

Decision matrix

Decision Option A Option B When to choose
Benchmark source Published leaderboards Self-run harness Leaderboards to screen; self-run when trust/contamination matters
Primary public signal MMLU-class HumanEval / Arena / MTEB Match to primary task family
Embedding selection MTEB retrieval Domain retrieval eval MTEB to shortlist; domain eval to decide
Candidates to eval deeply 3 models 10 models 3 when requirements clear; more when exploring
Ship criterion Leaderboard rank Domain gates Never ship on rank alone
Re-eval trigger Quarterly only Quarterly + major launches Interrupt for frontier releases that affect your shortlist

Comparisons

Instrument Answers Does not answer
Public benchmarks Rough capability ranking on standard tasks Your product quality
Arena Elo Human chat preference Tool reliability, RAG faithfulness, schema adherence
MTEB / BEIR Embedding strength on public sets Your corpus retrieval
Domain golden set Fit to your prompts/docs/policies Cross-industry bragging rights
Online eval / monitoring Live regressions and drift Clean apples-to-apples vendor marketing
Benchmark family Best screening use Bad proxy for
MMLU-class General knowledge prior RAG faithfulness, JSON, safety policy
HumanEval / SWE-bench Coding assistants / agents Non-code chat quality
MTEB retrieval Embedding shortlist End-to-end RAG answer quality
Arena / MT-Bench Conversational feel Exactness-critical workflows
Domain suites Vertical prior Your private docs and workflows

Benchmarks ≠ product evaluation. Product evaluation includes labeled cases, rubric/LLM-judge design, faithfulness, retrieval metrics, prompt regression, and release gates — see evaluation, LLM evaluation, retrieval evaluation, RAG evaluation, and prompt evaluation.

Common Mistakes

  1. Choosing models from MMLU or Arena alone. High knowledge or preference scores do not imply instruction reliability or RAG faithfulness.
  2. Ignoring data contamination. Models may have seen benchmark items; treat outlier jumps with skepticism.
  3. Skipping domain eval. The expensive mistake. Benchmarks narrow; your test set decides.
  4. Using MTEB mean for RAG. Prefer retrieval metrics, then validate on your corpus.
  5. Optimizing for leaderboard position. Training on test distributions or benchmark-specific prompting does not improve production.
  6. Ignoring latency and cost. A 2% domain win at 5× latency and 10× cost often loses.
  7. Treating saturated benchmarks as discriminative. When everyone scores ~90%+, rank order is noise — switch to harder suites and domain tasks.
  8. Confusing judge preference with truth. Elo can reward confident style — including confident hallucinations.

Common Mistake

Pasting a leaderboard screenshot into an architecture review as the “evaluation plan.” That is vendor marketing, not an eval harness.

Where It Breaks Down

  • Domain gap — Medical, legal, internal tooling, and proprietary schemas need custom eval. No public suite is your product.
  • Contamination — Inflated scores; prefer suites with contamination analysis, held-out/live sets, or self-run on private data.
  • Metric oversimplification — One number hides tradeoffs (code-strong / summarization-weak).
  • Saturation — Frontiers crowd the top of older suites; gaps become meaningless.
  • Production factors unmeasured — Rate limits, uptime, context behavior at your p95 prompt size, tool-calling reliability.
  • Embedding transfer failure — Wikipedia/science retrieval ≠ your SaaS docs.
  • Agent complexity — Single-function code scores understate multi-step tool failures.

When NOT to Ship on Leaderboards Alone

Do not promote a model (or switch defaults) based only on public rankings when:

  • Your acceptance tests are domain-specific — schemas, policies, tool traces, citations.
  • You run RAG or tools — retrieval and action reliability dominate user outcomes.
  • Errors are high-impact — finance, health, compliance, security-sensitive flows.
  • You lack a golden set and CI gate — you cannot detect regressions after the switch.
  • The leaderboard task ≠ your task — e.g. shipping an extractor because a model won a chat arena.

In those cases, shortlist with benchmarks, then require domain eval — or do not change production models.

Warning

Leaderboard-driven shipping optimizes for press and procurement theater. Production optimizes for measured task success on your distribution.

Running in Production

Best Practice

Pin model IDs, keep a versioned golden set, and block deploys when domain metrics regress — even if a new model “won” a public leaderboard that week.

Dimension Guidance
Scaling Public benchmark runs are offline. Domain eval is offline or staging — not on the query path
Latency Full MMLU-scale runs take hours; use published scores to screen, domain eval to decide
Cost 200 cases × 3 models is usually cheap vs a bad production switch; budget it every cycle
Monitoring Track your domain metrics online/offline — not MMLU. Alert on quality and cost regressions
Evaluation Re-run on model switches, major prompt/tool/index changes, and a quarterly baseline (evaluation)
Security / privacy Domain sets may contain sensitive data — control access; do not upload secrets to third-party eval SaaS casually

Production checklist

  • Task → benchmark family map documented
  • Shortlist criteria written (min scores are optional priors only)
  • Golden set versioned (50–200+ cases, ownership clear)
  • Domain metrics: pass rate, faithfulness, format, latency, cost
  • Retrieval eval for RAG embedding/rerank choices
  • CI gate on eval regression for model/prompt changes
  • Primary + fallback configured and tested
  • Re-eval calendar + trigger for major model launches
  • Contamination/saturation caveats understood by stakeholders

Evaluation (required companions):

Foundations:

Tools: OpenAI · Claude · Gemini

Interview Questions

  1. What are LLM benchmarks for in engineering practice?
    Standardized screening of general capability. They shortlist candidates; they do not replace domain evaluation on your golden sets.

  2. Why is “benchmarks ≠ product evaluation”?
    Public tasks, metrics, and contamination profiles differ from your prompts, docs, tools, and risk tolerance. Shipping requires measured success on your distribution.

  3. What is data contamination?
    Test items (or near duplicates) appearing in training data, inflating scores. Mitigate with skepticism, live/held-out sets, and private domain eval.

  4. How do you use MTEB for RAG?
    Use retrieval-oriented scores to shortlist embeddings, then run retrieval evaluation on your corpus before choosing.

  5. What is pass@k?
    Probability that at least one of k code samples passes all tests. Report pass@1 (strict) and often pass@10 for coding models.

  6. When do benchmarks saturate?
    When frontier models cluster near the ceiling; small gaps become noise. Move to harder suites and domain tasks.

  7. Arena Elo vs faithfulness?
    Elo reflects human preference on chat prompts. Faithfulness measures support by evidence — critical for RAG and factual products.

  8. Walk through a responsible model switch.
    Map tasks → screen leaderboards → shortlist → golden-set + retrieval/tool eval → cost/latency → canary → monitor. Abort if domain gates fail despite a higher public rank.

Key Takeaways

  • Benchmarks are screening tools: comparable, useful, and incomplete.
  • Contamination, gaming, and saturation make naive rank-ordering dangerous.
  • Shortlist with public suites; decide with domain golden sets and operational metrics.
  • Embeddings and RAG need retrieval eval on your data — not MTEB alone.
  • Never ship on leaderboard position without product evaluation gates.

FAQs

Which LLM benchmarks should I trust?

Trust them directionally for the capability they claim: MMLU-class for knowledge priors, HumanEval/SWE-bench for code, MTEB/BEIR for embeddings/retrieval, arena for chat preference. Never trust them as production proof.

Should I use MMLU to choose a production model?

No. Use it (weakly) to shortlist. Run your golden set. Domain pass rate and faithfulness determine the winner. See LLM evaluation.

What is pass@k in HumanEval?

The probability that at least one of k generated samples passes all unit tests. pass@1 is strictest; report the k you will actually sample in product behavior.

How do I use MTEB for embedding selection?

Prefer retrieval metrics, shortlist strong candidates, then run retrieval evaluation on your corpus. MTEB narrows; domain eval decides.

Are leaderboard scores reliable?

Directionally useful, not precise truth. Contamination, harness differences, and prompt sensitivity move numbers. Use for screening.

What is SWE-bench?

Models resolve real GitHub issues by producing patches that pass tests. More realistic than HumanEval for coding agents — still not your private monorepo.

How often do benchmarks saturate?

Older suites saturate as frontiers improve. Adopt harder/live suites and lean on domain eval for discrimination.

Can I run benchmarks myself?

Yes — e.g. EleutherAI lm-evaluation-harness, MTEB library. Self-run helps control settings; GPU/time cost is non-trivial. Domain eval usually has higher ROI for product teams.

Do benchmarks measure RAG quality?

Not end-to-end. BEIR/MTEB retrieval measure retrieval in isolation. Answer faithfulness needs RAG evaluation / evaluation on your cases.

How do I compare open vs closed models fairly?

Run the same domain harness on both. Published closed-model scores are less controlled; domain eval equalizes the decision.

Is Chatbot Arena enough for enterprise selection?

No. It is a useful chat-preference prior. Enterprise paths need schema, policy, tool, and retrieval tests.

What if a new model tops every leaderboard?

Re-run your shortlist eval. If domain gates fail, do not switch — advertise scores are not your SLO.

References

Further Reading

Next Topics

Learning Path

Continue Learning

Related Guides

Related companies

  • OpenAI

    Commercial foundation model leader.

  • Microsoft

    Enterprise cloud + Copilot platform with strategic OpenAI partnership.

  • Mistral AI

    European foundation-model lab focused on efficient open and commercial LLMs.

  • Alibaba

    Global technology group whose Qwen team releases competitive multilingual and multimodal foundation models for cloud and open-weight use.

  • Cohere

    Enterprise AI company focused on Command language models, Embed, Rerank, and RAG-oriented APIs for business search and assistants.

  • AI21 Labs

    Foundation model company known for Jurassic and Jamba models, plus enterprise generative AI products for writing and document workflows.

  • xAI

    AI company founded by Elon Musk building the Grok model family and large-scale training infrastructure for real-time assistants.

  • Moonshot AI

    Chinese frontier lab behind the Kimi assistant and Kimi K3 open-weight MoE.

  • Databricks

    Lakehouse + Mosaic AI platform for enterprise data and LLM apps.

  • Snowflake

    Cloud data platform adding Cortex AI on governed enterprise data.

  • MongoDB

    Document database company offering Atlas Vector Search and developer tooling for embedding AI features into applications.

  • DeepSeek

    Open-weight research lab known for DeepSeek V4, V3, and R1 reasoning models.

  • THUDM / Tsinghua

    Tsinghua University Knowledge Engineering Group (THUDM) — research lab behind LongBench and other influential open LLM evaluation and model work.

  • Stanford CRFM

    Stanford Center for Research on Foundation Models — academic center publishing HELM and research on transparency and evaluation of foundation models.

  • Carnegie Mellon University

    Research university whose labs contribute widely used agent and web benchmarks such as WebArena for evaluating autonomous web agents.

Related models

  • GPT-5.6

    OpenAI’s GPT-5.6 family (Sol flagship, Terra balanced, Luna cost-efficient) for complex reasoning, coding, multimodal understanding, and agentic tool use. The gpt-5.6 API alias routes to Sol.

  • Claude Opus

    Anthropic’s Claude Opus 5 tier for complex agentic coding, enterprise work, long-context analysis, and careful instruction following. Claude Fable 5 sits above Opus for peak widely released capability.

  • Claude Sonnet

    Anthropic’s Claude Sonnet 5 tier — best combination of speed and intelligence for most production agents and coding, at lower cost than Opus.

  • Claude Fable

    Anthropic’s Claude Fable 5 — the most capable widely released Claude for long-horizon agents, deep reasoning, and demanding coding workflows. Mythos 5 is the limited-access peer for Project Glasswing.

  • Claude Haiku

    Anthropic’s fast, cost-efficient Claude tier for high-volume chat, classification, extraction, and sub-agent steps where latency and price matter more than peak reasoning.

  • Gemini 3.1 Pro

    Google’s current Pro-class Gemini for hard reasoning and native multimodal work. Prefer API id gemini-3.1-pro-preview; Gemini 3.5 Pro remains partner-testing. Legacy gemini-2.5-pro is scheduled for shutdown Oct 16, 2026.

  • Gemini Flash

    Google’s Gemini 3.7 Flash workhorse — fast, token-efficient multimodal model for agentic workflows, coding, and high-throughput apps where latency and cost matter. Succeeds 3.6 Flash (GA Jul 2026).

  • DeepSeek V3

    DeepSeek’s MoE general model — strong open-weight performance on coding and knowledge tasks with competitive API pricing.

  • DeepSeek R1

    DeepSeek’s reasoning-focused model trained with reinforcement learning for multi-step math, science, and coding problem solving.

  • DeepSeek V4

    DeepSeek’s V4 generation — deepseek-v4-pro (V4-Pro-0813 GA) and deepseek-v4-flash (Flash-0731) with 1M context, thinking effort low/high/max, native Responses API, and strong agentic coding. Experimental multimodal API: deepseek-v4-flash-vision-exp (2026-08-21).

  • Kimi K3

    Moonshot’s Kimi K3 — 2.8T MoE (104B active) open-weight multimodal agentic model with 1M context, native vision, and strong long-horizon coding. Weights on Hugging Face under the Kimi K3 License.

  • Muse Spark

    Meta Superintelligence Labs’ Muse Spark 1.2 — closed multimodal reasoning model with a coding-focused upgrade, co-trained with Muse Code, for agentic tasks, long-horizon coding, computer use, and 1M-context workflows via the Meta Model API.

  • Muse Glimmer

    Meta Superintelligence Labs’ Muse Glimmer — Apache-2.0 ~30B dense multimodal agent model for on-device and single-GPU local agents. Sibling to closed Muse Spark; distinct from Llama 4.

  • Qwen3

    Alibaba’s Qwen3 family spanning Qwen3.8-Max (2.4T MoE / 95B active), open Qwen3.8-27B (dense VLM, Apache-2.0), and Qwen3.8-Flash-Next (125B / 6B active multimodal MoE + 51B n-gram embeddings)—a Qwen4 architecture preview for cost-efficient agentic coding. Production Qwen3.8-Flash on QwenCloud adds 1M-default context and built-in tools atop the Flash-Next design.

  • Llama 4

    Meta’s Llama 4 family — open-weight multimodal models designed for research and commercial use under Meta’s community license.

  • Mistral Large

    Mistral’s flagship large model for enterprise reasoning, multilingual chat, and function calling via La Plateforme and cloud partners.

  • Mixtral

    Mistral’s sparse Mixture-of-Experts open models (e.g. Mixtral 8x7B / 8x22B) — efficient high-quality text generation for self-hosting.

  • Grok

    xAI’s Grok 4.6 — frontier coding and long-running agentic model (API id grok-4.6) with 500K context, vision, and strong tool use. Available via the xAI API, Grok Build, Cursor, and partners such as OpenRouter.

  • Command R+

    Cohere’s Command R+ model optimized for retrieval-augmented generation, enterprise search, and multilingual business assistants.

  • Phi

    Microsoft’s Phi family of small language models — high capability per parameter for on-device, edge, and cost-sensitive deployments.

Related Tools

ToolCategoryPurposeWebsiteBest For
OpenAI Evals
Open SourcePython SDK
EvaluationOpen framework for evaluating LLMs and model outputs with customizable benchmarks.github.comCustom LLM benchmarks