Quick answer: Llama 4 Maverick is Meta's April 2025 frontier open-weight multimodal MoE model with 17B active parameters (from a 400B+ total MoE). It scores 93.8% on the AI2 Reasoning Challenge, 80.5% on MMLU-Pro, and 5.68% on Humanity's Last Exam, with a 1M-token context window. Available under the Llama 4 License with open weights on Hugging Face.
Where Llama 4 Maverick leads
Where it lags
Best for: Open-weight deployments needing multimodal + 1M context at low inference cost; research use; organisations requiring data sovereignty.
Llama 4 Maverick is Meta's highest-capability model in the Llama 4 family, released April 5, 2025 alongside Llama 4 Scout. Both are multimodal Mixture of Experts (MoE) models using 17B active parameters from a much larger parameter pool, making inference efficient relative to their knowledge capacity.
Maverick's headline feature is its combination of 1M context window, multimodal capability, and open weights. This makes it the most capable open-weight option for long-context tasks at launch, competing directly with GPT-4.1 and Gemini 2.5 Pro on context length while remaining freely available for self-hosting.
At 80.5% MMLU-Pro, Maverick matches or exceeds many proprietary models launched in 2024. Its 93.8% AI2 RC score indicates strong factual scientific reasoning. For organisations that require data sovereignty or high-volume cost efficiency with open weights, Llama 4 Maverick is the strongest available option in the Llama 4 family.
| Field | Value |
|---|---|
| Organization | Meta |
| Active parameters | 17B (MoE, ~400B+ total) |
| Context window | 1,000,000 tokens |
| License | Llama 4 License |
| HuggingFace | meta-llama/Llama-4-Maverick-17B-128E-Instruct |
| Release date | April 5, 2025 |
| Knowledge cutoff | January 2025 |
| Modality | Text + Vision (multimodal) |
| Architecture | MoE (Mixture of Experts) |
Llama 4 Maverick is available as open weights — free to download and self-host. Hosted API access is available via Meta AI and third-party providers (Together AI, Groq, etc.) at market rates.
Llama 4 Maverick has a 1,000,000-token context window — matching GPT-4.1 and Gemini 2.5 Pro in the largest-context tier.
| Benchmark | Score | Source | Date |
|---|---|---|---|
| AI2 Reasoning Challenge | 93.8% | Benchgen evaluation | 2025-07 |
| MMLU-Pro | 80.5% | Benchgen evaluation | 2025-07 |
| BigCodeBench | 28.4% | Benchgen evaluation | 2025-07 |
| Humanity's Last Exam | 5.68% | Benchgen evaluation | 2025-07 |
| Model | Context | AI2 RC | MMLU-Pro | HLE | Weights |
|---|---|---|---|---|---|
| Llama 4 Maverick | 1M | 93.8% | 80.5% | 5.68% | Open |
| Llama 4 Scout | 10M | 90.7% | 74.3% | — | Open |
| GPT-4.1 | 1M | 97.1% | — | 5.40% | Closed |
| Gemini 2.5 Pro | 1M | — | — | 21.64% | Closed |
Llama 4 Maverick vs Scout: Maverick has higher MMLU-Pro (80.5% vs 74.3%) and AI2 RC (93.8% vs 90.7%); Scout has a 10× larger context window (10M vs 1M). For most tasks requiring open weights and large context, Maverick is the better performer.
# Via Together AI (hosted)
from together import Together
client = Together(api_key="YOUR_API_KEY")
response = client.chat.completions.create(
model="meta-llama/Llama-4-Maverick-17B-128E-Instruct",
messages=[{"role": "user", "content": "Analyse this dataset..."}],
)
print(response.choices[0].message.content)Specs from Meta's official Llama 4 announcement (April 5, 2025) and Benchgen evaluations. Last updated 2026-07-24.
This model isn’t on any benchmark leaderboard yet.