Model upgrades stopped papering over bad harnesses — and a 27B local model just did a real RE job.
Top Signal
The free lunch ended: harness work now compounds
emerging signal
Simon Willison, r/LocalLLaMA
Drew Breunig argues Fable marks the end of Moore's Law for models: until now, spending weeks tuning your coding harness or context strategy was wasted effort, because the next model would land at the same price or cheaper and paper over your problems. That cadence has broken. Two corroborating datapoints landed the same day: the FT reports Anthropic's flagship is losing users to cheaper tools — buyers are optimizing on price, not frontier capability — and Nvidia has notified customers of AI-related price hikes above 15%, on top of DDR5 up ~500% year over year. Compute is getting more expensive, not cheaper. What to do: stop deferring harness investment. Context compaction, retrieval scoping, tool-call verification, and eval harnesses are durable assets now, not scaffolding the next model release will obsolete. Budget engineering time for the harness the way you would a database schema, and re-run your cost model assuming hardware prices rise.
Read more →
Fast Signals
Qwen 3.8 27B clears real reverse-engineering work, not demos
workflow
HN Front Page, r/LocalLLaMA
Four independent reports in one day: a 39k-line C codebase ported to single-file HTML/three.js, an early-2000s ARM POS firmware preserved and emulated where Opus 4 failed, an XDA writeup of a 30-minute RE job, and a team wiring it into Codex and finding it comparable to GPT Luna for coding and OCR. The pattern is long-running, low-glamour legacy work where token cost, not peak IQ, is the binding constraint. If you're paying per token for grind tasks, benchmark this locally before your next invoice.
Link →
Qwen 3.8 27B quants benchmarked head-to-head on an RTX 6000
research to practice
r/LocalLLaMA
Someone quantized the model themselves and published a side-by-side comparison across quant levels on a single RTX 6000, rather than reasoning from BF16 benchmark scores. This is the missing half of every 'is it good?' thread — you run 4-bit, the leaderboard doesn't. Read it before you pick a GGUF for a production box.
Link →
MTP support lands for GLM-Air
platform change
r/LocalLLaMA
Multi-token prediction now works with GLM-Air, extending the speculative-decoding wave that has been landing model by model for a week. MTP is close to free decode throughput when the draft head is correctly wired — the Ornith 1.5 saga showed a broken head costs you a third of your wall clock. If you're serving GLM-Air, flip it on and measure wall-clock completion, not tok/s.
Link →
llm 0.33 ships the httpx2 migration — the SDK break resolves
platform change
Simon Willison
Simon Willison's llm upgraded to OpenAI Python 3.x and swapped httpx for httpx2, closing out the dependency break that has been snapping downstream installs for three days. If you pinned around it, this is your upgrade path; if you haven't audited your lockfile yet, do it now.
Link →
Prime Intellect publishes a NanoGPT speedrun frontier
research to practice
HN Front Page
A tracked frontier of training-efficiency records for NanoGPT, with the techniques that moved each record. This is the cheapest available library of pretraining optimizations that actually held up under measurement. Bookmark it for when you fine-tune or train small models and need known-good tricks instead of folklore.
Link →
Torvalds credits an AI for kernel debug grunt-work — with a caveat
workflow
Simon Willison
A Linux commit message describes a 'debug session from hell' where an AI did much of the grunt work, but Torvalds notes it repeatedly stated things flat-out that turned out to be wrong. The useful read is the shape of the collaboration: agents are strong at mechanical bisection and trace-reading, and confidently wrong at conclusions. Treat every agent assertion as a hypothesis with a verification step attached.
Link →
Radar
JIT compiling code in 5 microseconds
A deep dive on getting JIT compilation down to single-digit microseconds, fast enough to compile on the hot path rather than ahead of time. Relevant if you're building sandboxes or execution layers for LLM-generated code, where per-call compile latency currently forces interpretation.
Link →
sub2api: one relay for four subscription CLIs
An open-source Go relay that puts Claude, OpenAI, Gemini, and Grok subscriptions behind a unified API, with pooled/shared access to spread cost. Architecturally interesting as a provider-abstraction layer, but routing subscription seats through an API gateway is squarely against most providers' terms — read it for the design, not the deployment.
Link →
HDR gain maps make logos glow brighter than white
Certain LinkedIn logos render visibly brighter than surrounding UI because they embed a JPEG gain map that HDR displays honor. A genuinely obscure asset-pipeline trick that costs nothing and works today on any HDR-capable screen.
Link →
Convergence Watch
qwen3.8
TRENDING
6 mentions across r/LocalLLaMA, HN Front Page
Seven straight days across two sources, but the coverage has shifted from quant benchmarks to completed real work — firmware emulation, large-scale code ports, production OCR pipelines. That transition from 'how fast' to 'what did it finish' is the reliable marker of a local model becoming a default rather than an experiment.
mtp
TRENDING
4 mentions across r/LocalLLaMA, HN Front Page
Multi-token prediction has surfaced four days out of seven: llama.cpp's adaptive MTP PR, the Ornith 1.5 broken-draft-head diagnosis and fix, n-gram drafter stacking on DFlash2, and now GLM-Air support. Speculative decoding is consolidating into standard local-serving config. Audit whether your stack has it enabled and correctly wired.
httpx2
TRENDING
3 mentions across Simon Willison
Third consecutive day: the OpenAI Python SDK 3.x dependency swap broke downstream installs, and llm 0.33 is the first major consumer to complete the migration. Expect a wave of ecosystem packages to follow this week. Pin deliberately rather than reactively.