Hacker News
Latest
Map of Metal
2026-05-20 @ 10:47:20Points: 177Comments: 57
Learnings from 100K lines of Rust with AI (2025)
2026-05-20 @ 10:04:28Points: 93Comments: 99
The weird, wild story of humanity's obsession with gold
2026-05-20 @ 09:09:40Points: 32Comments: 54
Everything in C is undefined behavior
2026-05-20 @ 06:07:22Points: 331Comments: 471
Infomaniak transitions to a foundation model to protect user data privacy
2026-05-20 @ 05:43:51Points: 121Comments: 34
Japan is gripped by mass allergies. A 1950s project is to blame
2026-05-20 @ 01:43:06Points: 213Comments: 105
FiveThirtyEight articles on the Internet Archive
2026-05-20 @ 01:34:19Points: 281Comments: 68
Incident Report: Railway Blocked by Google Cloud (Resolved)
2026-05-20 @ 00:23:54Points: 514Comments: 330
GitHub is investigating unauthorized access to their internal repositories
2026-05-20 @ 00:01:18Points: 549Comments: 298
Remove-AI-Watermarks – CLI and library for removing AI watermarks from images
2026-05-19 @ 22:30:31Points: 334Comments: 199
OpenAI Adopts Google's SynthID Watermark for AI Images with Verification Tool
2026-05-19 @ 19:34:30Points: 309Comments: 167
Mistral AI acquires Emmi AI
2026-05-19 @ 19:14:12Points: 295Comments: 89
Minnesota becomes first state to ban prediction markets
2026-05-19 @ 19:13:26Points: 724Comments: 223
Google changes its search box
2026-05-19 @ 18:34:27Points: 617Comments: 853
Gemini CLI will stop working from June 18, 2026
2026-05-19 @ 18:03:10Points: 299Comments: 160
Gemini 3.5 Flash
2026-05-19 @ 17:43:45Points: 871Comments: 601
CopyFail: From Pod to Host
2026-05-19 @ 17:25:33Points: 41Comments: 6
I’ve built a virtual museum with nearly every operating system you can think of
2026-05-19 @ 15:53:38Points: 871Comments: 185
I’ve joined Anthropic
2026-05-19 @ 15:07:45Points: 1380Comments: 582
Why is almost everyone right-handed? A new study connects it to bipedalism
2026-05-19 @ 14:50:42Points: 144Comments: 235
Show HN: Forge – Guardrails take an 8B model from 53% to 99% on agentic tasks
2026-05-19 @ 12:23:07Points: 577Comments: 205
I built Forge, an open-source reliability layer for self-hosted LLM tool-calling.
What it does:
- Adds domain-and-tool-agnostic guardrails (retry nudges, step enforcement, error recovery, VRAM-aware context management) to local models running on consumer hardware
- Takes an 8B model from ~53% to ~99% on multi-step agentic workflows without changing the model - just the system around it
- Ships with an eval harness and interactive dashboard so you can reproduce every number
I wanted to run a handful of always-on agentic systems for my portfolio, didn't want to pay cloud frontier costs, and immediately hit the compounding math problem on local models. 90% per-step accuracy sounds great, but with a 5-step workflow that's a 40% failure rate. No existing framework seemed to address this mechanical reliability issue - they all seemed tailor-made for cloud frontier.
Demo video: https://youtu.be/MzRgJoJAXGc (side-by-side: same model, same task, with and without Forge guardrails)
The paper (accepted to ACM CAIS '26, presenting May 26-29 in San Jose) covers the peer-reviewed findings across 97 model/backend configurations, 18 scenarios, 50 runs each. Key numbers:
- Ministral 8B with Forge: 99.3%. Claude Sonnet with Forge: 100%. The gap between a free local 8B model on a $600 GPU and a frontier API is less than 1 point.
- The same 8B local model with Forge (99.3%) outperforms Claude Sonnet without guardrails (87.2%) - an 8B model with framework support beats the best result you can get through frontier API alone.
- Error recovery scores 0% for every model tested - local and frontier - without the retry mechanism. Not a capability gap, an architectural absence.
I'm currently using this for my home assistant running on Ministral 14B-Reasoning, and for my locally hosted agentic coding harness (8B managed to contribute to the codebase!).
The guardrail stack has five layers, each independently toggleable. The two that carry the most weight (per ablation study with McNemar's test): retry nudges (24-49 point drops when disabled) and error recovery (~10 point drops, significant for every model tested). Step enforcement is situational - only fires for models with weaker sequencing discipline. Rescue parsing and context compaction showed no significance in the eval but are retained for production workloads where they activate once in a while.
One thing I really didn't expect: the serving backend matters. Same Mistral-Nemo 12B weights produce 7% accuracy on llama-server with native function calling and 83% on Llamafile in prompt mode. A 75-point swing from infrastructure alone. I don't think anyone's published this because standard benchmarks don't control for serving backend.
Another surprise: there's no distinction in current LLM tool-calling between "the tool ran successfully and returned data" and "the tool ran successfully but found nothing." Both return a value, the orchestrator marks the step complete, and bad data cascades downstream. It's the equivalent of HTTP having 200 but no 404. Forge adds this as a new exception class (ToolResolutionError) - the model sees the error and can retry instead of silently passing garbage forward.
Biggest technical challenge was context compaction for memory-constrained hardware. Both Ollama and Llamafile silently fall back to CPU when the model exceeds VRAM - no warning, no error, just 10-100x slower inference. Forge queries nvidia-smi at startup and derives a token budget to prevent this.
How to try it:
- Clone the repo, run the eval harness on a model I haven't tested. If you get interesting results I'll add them to the dashboard.
- Try the proxy server mode - point any OpenAI-compatible client at Forge and it handles guardrails transparently. It's the newest model and I'd love more eyes on it.
- Dogfooding led me to optimize model parameters in v0.6.0. The harder eval suite (26 scenarios) is designed to raise the ceiling so no one sits at 100%. Several that did on the original suite can't sweep it - including Opus 4.6. Curious if anyone finds scenarios that expose gaps I haven't thought of. Paper numbers based on pre v0.6.0 code.
Background: prior ML publication in unsupervised learning (83 citations). This paper accepted to ACM CAIS '26 - presenting May 26-29.
Repo: https://github.com/antoinezambelli/forge
Paper: https://www.caisconf.org/program/2026/demos/forge-agentic-re... https://github.com/antoinezambelli/forge/blob/main/docs/forg...
Dashboard: https://github.com/antoinezambelli/forge/docs/results/dashbo...