Files
promptfoo--promptfoo/examples/mistral
wehub-resource-sync 0d3cb498a3
Deploy local.promptfoo.app / Deploy to Cloudflare Pages (push) Waiting to run
Test and Publish Multi-arch Docker Image / test (push) Waiting to run
Test and Publish Multi-arch Docker Image / build-docker-and-push-digests (map[digest-suffix:linux-amd64 platform:linux/amd64 runner:ubuntu-latest]) (push) Blocked by required conditions
Test and Publish Multi-arch Docker Image / build-docker-and-push-digests (map[digest-suffix:linux-arm64 platform:linux/arm64 runner:ubuntu-24.04-arm]) (push) Blocked by required conditions
Test and Publish Multi-arch Docker Image / merge-docker-digests (push) Blocked by required conditions
Test and Publish Multi-arch Docker Image / Attest Multi-arch Image (push) Blocked by required conditions
Validate Renovate Config / Validate Renovate Configuration (push) Waiting to run
CI / Shell Format Check (push) Has been cancelled
CI / Check Ruby (3.4) (push) Has been cancelled
CI / CI Config (push) Has been cancelled
CI / Test on Node ${{ matrix.node }} and ${{ matrix.os }}${{ matrix.shard && format(' (shard {0}/3)', matrix.shard) || '' }} (push) Has been cancelled
CI / Build on Node ${{ matrix.node }} (push) Has been cancelled
CI / Style Check (push) Has been cancelled
CI / Generate Assets (push) Has been cancelled
CI / Check Python (3.14) (push) Has been cancelled
CI / Check Python (3.9) (push) Has been cancelled
CI / Build Docs (push) Has been cancelled
CI / Code Scan Action (push) Has been cancelled
CI / Site tests (push) Has been cancelled
CI / webui tests (push) Has been cancelled
CI / Run Integration Tests (push) Has been cancelled
CI / Run Smoke Tests (push) Has been cancelled
CI / Go Tests (push) Has been cancelled
CI / Share Test (push) Has been cancelled
CI / Redteam (Production API) (push) Has been cancelled
CI / Redteam (Staging API) (push) Has been cancelled
CI / GitHub Actions Lint (push) Has been cancelled
CI / Check Ruby (3.0) (push) Has been cancelled
release-please / release-please (push) Has been cancelled
release-please / build (push) Has been cancelled
release-please / publish-npm (push) Has been cancelled
release-please / publish-npm-backfill (push) Has been cancelled
release-please / docker (push) Has been cancelled
release-please / publish-code-scan-action (push) Has been cancelled
release-please / attest-code-scan-action (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:24:08 +08:00
..

mistral (Mistral AI Chat Models)

This example demonstrates Mistral AI's chat models, including Magistral reasoning models, current multimodal models, and shows how to use Mistral models for evaluation grading and embeddings.

You can run this example with:

npx promptfoo@latest init --example mistral
cd mistral

Environment Variables

This example requires:

What This Example Shows

  • Mathematical Reasoning: AIME2024 competition problems with Magistral Medium
  • Model Comparison: Compare Mistral's different model capabilities
  • Reasoning Models: Showcase Magistral Medium (native reasoning) vs. Mistral Small 4
  • Chat Capabilities: General conversation and task completion
  • Mistral-powered Evaluation: Use Mistral models for grading instead of OpenAI
  • Mistral Embeddings: Use Mistral's embedding model for similarity checks

Models Demonstrated

Reasoning Models

  • Magistral Medium (magistral-medium-latestmagistral-medium-2509): Native reasoning model ($2/$5 per 1M tokens, 128k context) — the reasoning showcase in these examples.

Mistral folded Magistral Small into Mistral Small 4: the magistral-small-latest alias now resolves to mistral-small-2603 (a hybrid model, $0.15/$0.60 per 1M), so these examples use the canonical mistral-small-latest id. Enable Small 4's reasoning mode with reasoning_effort: high. The standalone magistral-small-2509 snapshot is deprecated (retires 2026-07-31).

Chat Models

  • Mistral Medium 3.5 (mistral-medium-latestmistral-medium-2604): Frontier agentic/coding multimodal model ($1.50/$7.50 per 1M, 256k context)
  • Mistral Large 3 (mistral-large-latestmistral-large-2512): General-purpose multimodal model ($0.50/$1.50 per 1M, 256k context)
  • Mistral Small 4 (mistral-small-latestmistral-small-2603): Hybrid instruct/reasoning/coding model ($0.15/$0.60 per 1M, 256k context)

Evaluation Models

  • Grading: Uses mistral-large-latest for LLM-as-a-judge evaluation
  • Embeddings: Uses mistral-embed for semantic similarity checks

Key Features Demonstrated

  • Multi-model comparison: Compare performance across different Mistral models
  • Reasoning capabilities: Step-by-step problem solving with Magistral models
  • Cost optimization: Balance performance vs. cost across model tiers
  • Self-evaluation: Use Mistral models to grade their own outputs
  • Semantic similarity: Mistral embeddings for content comparison

Running the Example

# Set your API key
export MISTRAL_API_KEY=your_api_key_here

# Run the evaluation
promptfoo eval

# View results in the web UI
promptfoo view

Configuration Highlights

This example showcases several advanced promptfoo features:

  • Provider overrides for grading and embeddings
  • Multiple assertion types including llm-rubric and similarity
  • Cost tracking across different model tiers
  • Mixed scenarios from simple chat to complex reasoning

The evaluation uses Mistral models end-to-end, providing a comprehensive view of their ecosystem capabilities.

Available Configurations

This example includes multiple configuration files for different use cases:

Mathematical Reasoning

  • promptfooconfig.aime2024.yaml - Advanced mathematical competition problems (AIME2024 dataset)
  • promptfooconfig.reasoning.yaml - Step-by-step logical problem solving

Model Capabilities

  • promptfooconfig.comparison.yaml - Compare reasoning across all Mistral models
  • promptfooconfig.code-generation.yaml - Multi-language programming with Codestral
  • promptfooconfig.multimodal.yaml - Vision and text processing with current Mistral multimodal models

Advanced Features

  • promptfooconfig.tool-use.yaml - Function calling and tool integration
  • promptfooconfig.tool-routing.yaml - End-to-end QA for tool-only, mixed content+tool_calls, file-based tools, and plain chat output
  • promptfooconfig.json-mode.yaml - Structured JSON output generation
  • promptfooconfig.yaml - Main example with evaluation using Mistral models

Run any specific configuration:

npx promptfoo@latest eval -c promptfooconfig.aime2024.yaml  # Mathematical reasoning
npx promptfoo@latest eval -c promptfooconfig.comparison.yaml  # Model comparison

Additional Resources