OSAIM
Open Source AI Models

Mixtral 8×7B Instruct

The mixture-of-experts release that introduced 8 experts of 7B each, 2 active per token. ~13B active parameters with 47B total, which makes per-token inference roughly as fast as a 13B dense model while approaching 70B dense quality. Apache 2.0 weights mean it's still a popular self-hosting choice. Memory footprint is the main constraint — the full 47B parameters must be loaded even though only a quarter are active per token.

Parameters
46.7B
Context length
33K
Modality
text
Released
2023-12-11
Tokenizer
LlamaTokenizer

Memory & hardware

VRAM (fp16)
93.4 GB
VRAM (Q4)
28 GB
Recommended
A100 80GB or 2× RTX 4090
Quantizations
fp16, q8_0, q5_k_m, q4_k_m

License: Apache 2.0

SPDX
Apache-2.0
Commercial use
Yes
Modification
Yes
Redistribution
Yes

Benchmarks

MMLU
70.6
unconfirmed
HumanEval
40.2
unconfirmed
MATH
28.4
unconfirmed
None of these scores has been confirmed against a source we can reach. How we verify.

Hosted inference pricing

No provider we track publishes a per-token price for this model today. What each one used to offer is listed below.

No longer listed

Providers that used to serve this model. We don't republish their old rates — the dates below are the provider's own.

  • groqGroq shut down mixtral-8x7b-32768 on 20 March 2025.Source ↗
  • togetherNot in Together AI’s serverless catalogue when we checked on 20 September 2026.Source ↗

Run it yourself

Drop-in commands for the three most common open-source inference paths. The Ollama tag is a best-effort match against the registry; verify the size variant before pulling.

Run Mixtral 8×7B Instruct locally
Ollama (easiest)
ollama run mistral
Single-line install + run; uses the official Ollama registry tag for this family.
vLLM (production)
vllm serve mistralai/Mixtral-8x7B-Instruct-v0.1
High-throughput hosted inference; one command to expose an OpenAI-compatible HTTP server.
Transformers (Python)
from transformers import AutoTokenizer, AutoModelForCausalLM

tokenizer = AutoTokenizer.from_pretrained("mistralai/Mixtral-8x7B-Instruct-v0.1")
model = AutoModelForCausalLM.from_pretrained(
    "mistralai/Mixtral-8x7B-Instruct-v0.1", device_map="auto", torch_dtype="auto"
)
Direct PyTorch usage. Pin a torch / cuda version that matches your GPU.
Hugging Face ID: mistralai/Mixtral-8x7B-Instruct-v0.1

Related models

Same family or similar size — useful when shopping around.

Command R
35B

Cohere's 35B model tuned for RAG and tool use. The open weights are released under CC-BY-NC (commercial use requires the Cohere API). Strong multilingual coverage and a fine-grained RAG-mode output format that makes downstream citation easier.

Context
128K
License
mrl
VRAM Q4
21 GB
Yi 1.5 34B Chat
34B

Bilingual EN/中 34B chat model. Apache 2.0 licensed with strong Chinese-language performance and competitive English chat quality. Good default for bilingual production workloads.

Context
33K
License
apache-2-0
VRAM Q4
20.4 GB
Yi VL 34B
34B

Vision-language variant of Yi 34B. Image-text reasoning via an MLP adapter on a CLIP encoder. Useful for bilingual EN/中 multimodal workloads where the major Western vision-language models underperform on Chinese text in images.

Context
4K
License
apache-2-0
VRAM Q4
20.4 GB
Qwen 3 32B
32B

32B sweet-spot Qwen 3, Apache 2.0. Reasoning-mode toggle inherited from smaller siblings; strong on math, code and agentic tool use. Fits on a single H100 in fp16 and on a 4090 at Q4.

Context
33K
License
apache-2-0
VRAM Q4
19.2 GB
Qwen2.5 32B Instruct
32B

32B sweet-spot model: strong reasoning, fits on one H100 in fp16, on a 4090 at Q4. The 32B size in particular hits a quality/cost knee — quality scales with parameters faster than cost up to ~32B, and slower afterwards. Favoured for production chat where 7B isn't sharp enough and where 70B+ would over-spec the hardware budget. Apache 2.0 licence.

Context
128K
License
apache-2-0
VRAM Q4
19.2 GB
QwQ 32B Preview
32B

Qwen's reasoning-focused 'thinking' model. Generates long chains-of-thought before answering, similar to OpenAI's o1 and DeepSeek R1 lineage. Optimised for math and competition-style problem solving. The Preview tag means Qwen is iterating quickly; later versions may obsolete this one. Useful today for math-heavy workloads where a slow, careful answer is preferred to a fast wrong one.

Context
33K
License
apache-2-0
VRAM Q4
19.2 GB