Meta's Llama 4 Scout is the most significant release in open-source AI history. Not because it's the most capable model in absolute terms — it isn't — but because it delivers a 10-million-token context window under a permissive commercial license, at a parameter efficiency that makes local deployment genuinely feasible. For developers who previously faced a hard choice between proprietary APIs and compromised open-source alternatives, Scout changes the calculus entirely.
Architecture: Why MoE Changes Everything
Scout is a Mixture-of-Experts (MoE) model with 109 billion total parameters, but only 17 billion are active during any single forward pass. This is the critical number for local deployment — it means inference behaves like a 17B model in terms of VRAM usage and speed, while the full 109B parameter set is available for routing specialists to tasks.
In practice: the quantised Q4_K_M version of Scout runs at approximately 8–12 tokens per second on an RTX 4090 — fast enough for real-time interactive use, not just batch processing.
The 10M Context Window: Real-World Testing
We tested Scout's 10M context with progressively larger documents — from 50K to 500K to 2M tokens. Our findings:
- Up to 128K tokens: Retrieval accuracy is excellent. The model consistently found relevant information across the full context.
- 128K–500K tokens: Accuracy remains solid. Some evidence of the "lost in the middle" effect, but less severe than comparable models.
- 500K–2M tokens: Retrieval quality degrades noticeably for specific fact retrieval, but summarisation and thematic understanding remain strong.
- 2M+ tokens: Running locally is impractical without extreme VRAM configurations. Via cloud inference APIs (Together.ai, Groq), it functions but is slow.
For practical purposes: Scout's sweet spot is 8K–512K token contexts. The 10M headline number is a capability boundary, not a recommended operating range for most use cases.
Coding Performance
On HumanEval, Scout scores 79.4% — below GPT-4o (87.2%) and DeepSeek V3 (82.6%), but ahead of older open-source models by a wide margin. More importantly, Scout generates code that compiles correctly on the first attempt at a higher rate than its benchmark score suggests for real-world tasks, where the benchmark's strict format requirements penalise it.
Instruction Following
Scout follows complex, multi-part instructions reliably — a known weakness of earlier Llama generations. The IFEval benchmark score of 88.6% puts it in the same tier as Claude 3 Haiku. For structured output tasks (JSON generation, specific format compliance), Scout is significantly more reliable than Llama 3.
Licence and Commercial Use
Llama 4 is released under the Llama 4 Community License. Key points for commercial users:
- ✅ Commercial use allowed for companies with under 700M monthly active users
- ✅ Fine-tuning allowed on your own data
- ✅ Self-hosting and API serving allowed
- ❌ Cannot use Llama outputs to train competing foundation models
- ❌ Requires attribution ("Built with Llama") in products
When to Use Llama 4 Scout
- ✅ Privacy-sensitive applications where data cannot leave your infrastructure
- ✅ High-volume workloads where API costs are prohibitive
- ✅ Long-context document processing (up to 512K tokens practically)
- ✅ Building custom fine-tuned models for specific domains
- ❌ Tasks requiring the absolute highest reasoning quality (use o3 or DeepSeek-R2)
- ❌ Multimodal workflows requiring native audio or video understanding
See How Llama 4 Scout Compares
Search ModelFinder for "local" or "open source" to see Llama 4 Scout alongside other free models with a full spec comparison.
Compare Open-Source Models →