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.
Recursive built an AI agent that autonomously proposes, implements, and validates research ideas over long horizons. On the NanoChat benchmark it cut validation loss by 0.0263 BPB versus the community best and rediscovered and combined techniques like hashed bigram/trigram embeddings, optimizer tweaks, and architecture modifications.
- Recursive's autonomous AI research agent beat the community's best NanoChat result (0.9109 vs 0.9372 BPB) while also cutting training time 1.3x, running the full propose-implement-validate loop without human input.
- Starting from a bare Transformer+AdamW baseline (1.059 BPB), the system independently reached 0.9344 BPB, still beating the human-tuned public best.
- Two separate runs converged on similar tricks (hashed bigram/trigram embeddings, squared-ReLU MLPs) but also diverged with different novel additions (token shifting, weight averaging, byte-level embeddings), showing genuine exploration rather than repeating a fixed recipe.
- The winning approach added 1-2 billion sparse hashed n-gram parameters to a 50M-parameter model with minimal speed cost, using per-layer distinct hash primes to reduce collisions.