Click any tag below to further narrow down your results
Links
A breakdown of the 10 best open-source coding models in 2026, split between frontier models you'll rent via API and smaller models you can run locally on consumer hardware. The article explains how to pick based on your actual hardware constraints and coding task—autocomplete needs speed, autonomous agents need reasoning, and large repository work needs long context windows.
- DeepSeek V4 Pro hits 80.6% on SWE-bench Verified, matching closed-source frontier models, but the gap to locally-runnable smaller models has narrowed enough that hardware constraints matter more than chasing the top score.
- Consumer hardware ceilings are real: 24GB on a used RTX 4090, 64-96GB on Apple Silicon, or $4K for 128GB via AMD's Ryzen AI Max+—so most frontier models (like Qwen3-Coder-480B needing half a terabyte of VRAM) must be rented via API, not run locally.
- Match the model to the task, not the benchmark: autocomplete needs sub-second latency, autonomous agents need deep reasoning and tool use, and repo-wide refactoring needs long context—using the wrong type causes failures regardless of raw capability.
- GLM-5.2 (753B, MIT license) leads SWE-bench Pro at 62.1% with a 1M-token context via modified position embeddings, while DeepSeek V4 Pro/Flash undercut competitors on price (as low as $0.14/$0.28 per million tokens) with drop-in OpenAI SDK compatibility.
PrismML’s Bonsai 8B trains a large language model with 1-bit weights from scratch, squeezing 8.2 billion parameters into just 1.15 GB. In benchmarks it ties or outperforms FP16 models like Llama 3.1 and runs at real-time speeds on phones, shifting the size-performance trade-off.
- Bonsai 8B packs 8.2B parameters into 1.15GB using native 1-bit weights, yet scores 70.5 average vs Llama 3.1's 67.1 (16GB FP16), even hitting 88.0 on GSM8K vs Llama's 76.6.
- It runs at 44 tokens/sec on an iPhone 17 Pro Max, making full on-device 8B-scale LLMs feasible without cloud infrastructure.
- Its "intelligence density" (score/GB) hits 1.062 versus Qwen's 0.098 and Llama's 0.084 — over 10x more capability per byte.
- Trade-offs appear in code generation (57.9 vs Qwen's 79.9 on HumanEval+) and multi-step reasoning (MuSR: 64.3 vs 70.0), showing 1-bit precision struggles with complex logical chains.