Open source vs open weight
First, the terminology. Most “open source” LLMs are actually open-weight: you can download and run the model weights, but the training data and process aren't fully open. True open-source models (weights + data + training code) are rare.
The license spectrum matters for commercial use:
- Apache 2.0 / MIT— Fully permissive. Use commercially without restrictions. Examples: Mistral's smaller models, some Qwen variants.
- Llama License— Free for commercial use under 700M monthly active users. Covers Meta's Llama family.
- DeepSeek License — Permissive with some restrictions. Check the specific model version.
- Research-only — Some model variants are restricted to non-commercial research. Always check before deploying.
Why open weight matters
- No vendor lock-in. If your API provider raises prices or shuts down, you can move the same model to another host — or run it yourself.
- Fine-tuning. You can train the model further on your data to specialize it for your domain.
- Data privacy. Self-hosting means your data never leaves your infrastructure.
- Cost at scale. At high volume, self-hosting amortizes to significantly less than API costs.
Top open-weight models
| # | Model | Provider | Avg Score | $/out | Context |
|---|---|---|---|---|---|
| 01 | Qwen: Qwen3.6 Max Preview | Qwen | 4.85 | $6.16 | 262K |
| 02 | Meta: Muse Spark 1.1 | meta | 4.77 | $4.25 | 1.0M |
| 03 | Qwen 3.7 Max | Qwen | 4.62 | $4.42 | 1M |
| 04 | Qwen: Qwen3.5 Plus 2026-04-20 | Qwen | 4.62 | $1.80 | 1M |
| 05 | Qwen: Qwen3.7 Flash | Qwen | 4.54 | $0.130 | 1M |
| 06 | Qwen: Qwen3.7 Plus | Qwen | 4.54 | $1.28 | 1M |
| 07 | Qwen: Qwen3.6 Plus | Qwen | 4.54 | $1.95 | 1M |
| 08 | Qwen: Qwen3.6 27B | Qwen | 4.54 | $2.00 | 262K |
| 09 | Qwen: Qwen3.6 35B A3B | Qwen | 4.54 | $1.00 | 262K |
| 10 | DeepSeek V4 Pro | DeepSeek | 4.46 | $0.870 | 1.0M |
Best for specific tasks
Coding: Qwen: Qwen3.6 Max Preview (Qwen) leads with a coding composite of 5.00/5.0.
Reasoning: Qwen: Qwen3.6 Max Preview (Qwen) leads with a reasoning composite of 5.00/5.0.
General purpose: Qwen: Qwen3.6 Max Preview (Qwen) has the highest overall score at 4.85/5.0.
How close to proprietary?
The best open-weight model (Qwen: Qwen3.6 Max Preview, 4.85/5.0) vs the best proprietary model (Z.ai: GLM 5.2, 4.85/5.0) — a gap of 0.00 points. The gap has narrowed significantly — for many use cases, open-weight models are now competitive with proprietary ones.
Hosted open-weight options
You don't need a GPU to use open-weight models. Several inference providers host them with generous free tiers:
- Groq — Extremely fast inference on custom LPU hardware. Free tier with rate limits. Best for latency-sensitive applications.
- Together AI — Wide model selection, competitive pricing. Good for production workloads.
- Fireworks AI — Optimized serving with function calling support. Strong developer experience.
- OpenRouter — Unified API that routes to multiple providers. Useful for fallback strategies.
Running locally
For local deployment with Ollama, LM Studio, or llama.cpp, see our dedicated Best Local LLMs for Coding guide — it covers hardware requirements, quantization, and tooling in detail.