Forge: Small Model, 99% Agent Accuracy – No Fine-Tuning Needed
Forge is an open-source guardrail system that raises small-model agent accuracy from 53% to 99% without retraining, shifting the bottleneck from model intelligence to orchestration design.
- Antoine Zambelli (Texas Instruments) released Forge, an open-source guardrail layer that raises an 8B model's agentic task accuracy from ~53% to ~99% on multi-step workflows.
- The system uses retry nudges, step enforcement, error recovery, and VRAM-aware context management — all without modifying the underlying model.
- This suggests that the current ceiling on small-model agent performance is a systems problem, not a model-capability problem, with direct implications for deployment cost and vendor lock-in.
How Does Forge Achieve a 46-Point Accuracy Gain Without Retraining?
According to Antoine Zambelli, AI Director at Texas Instruments, Forge's core innovation is a set of domain- and tool-agnostic guardrails that wrap around any self-hosted LLM tool-calling pipeline. The system intercepts common failure modes in multi-step agent workflows: hallucinated tool arguments, out-of-order step execution, unrecoverable error states, and context-window overflows on consumer hardware. By injecting retry nudges when a model produces invalid JSON, enforcing a step-completion check before allowing the next action, and automatically managing VRAM to prevent OOM crashes, Forge effectively re-routes the agent around the model's known weaknesses. Zambelli reported that these interventions alone lifted an 8B parameter model from 53% to 99% accuracy on a suite of agentic tasks — a 46-percentage-point improvement — without any fine-tuning or model swap.
This finding is striking because it isolates the reliability gain entirely to the orchestration layer. The model's underlying knowledge and reasoning capabilities did not change; what changed was the system's ability to detect, correct, and avoid mistakes in real time. Forge ships with an eval harness that allows developers to measure this improvement on their own tool sets, making the claim directly reproducible.
Which Agentic Failure Modes Does Forge Actually Fix?

Forge targets four specific failure modes that plague small models on multi-step tasks. First, tool-call malformation: small models frequently output arguments that don't match the tool's schema. Forge's retry nudge re-prompts the model with the exact schema, often succeeding on the second attempt. Second, step-skipping: agents sometimes jump to a final answer without completing intermediate tool calls. Forge enforces a step-completion gate that blocks the next action until the previous one is verified. Third, error non-recovery: when a tool returns an error, many models fail to adapt. Forge injects a recovery prompt that asks the model to explain the error and propose an alternative approach. Fourth, context-window overflow: long agentic traces exceed the VRAM capacity of consumer GPUs. Forge implements VRAM-aware context management that prunes older steps while retaining essential state.
Each guardrail is lightweight and model-agnostic. Zambelli demonstrated that the same Forge configuration works across Llama 3.1 8B, Mistral 7B, and Qwen2.5 7B, with similar accuracy gains. This universality suggests the failure modes are structural to small models, not quirks of a single architecture.
Who Benefits Most From the Forge Approach?
The primary beneficiaries are teams deploying local, self-hosted agents on consumer hardware — edge devices, laptops, or small servers. Forge eliminates the need for expensive cloud API calls or fine-tuning runs. A developer running a local Llama 3.1 8B can now achieve agent reliability comparable to GPT-4 or Claude 3.5 Sonnet on structured tool-calling tasks, at a fraction of the latency and cost. According to Zambelli, the entire Forge stack runs on a single RTX 4090 with 24GB VRAM, with guardrail overhead under 50ms per step.
The losers are proprietary agent frameworks that charge per-token or per-call, such as OpenAI's Assistants API or Anthropic's Tool Use. If a local 8B model with Forge can match their accuracy on common agentic tasks, the value proposition of paying for larger models weakens significantly. However, Forge does not address open-ended reasoning or creative generation — its gains are confined to structured, multi-step tool-calling workflows.
Comparison: Forge vs. Proprietary Agent Frameworks
| Dimension | Forge + 8B Model (Local) | OpenAI Assistants API (GPT-4) | Anthropic Tool Use (Claude 3.5) |
|---|---|---|---|
| Accuracy on agentic tasks | ~99% (reported) | ~95% (estimated) | ~96% (estimated) |
| Cost per 1M tokens | $0 (self-hosted) | $10–$30 | $15–$75 |
| Latency (avg per step) | ~200ms (local GPU) | ~500ms (API round-trip) | ~600ms (API round-trip) |
| Model customization | Full control (open weights) | None (black-box) | None (black-box) |
| Hardware requirement | 24GB VRAM GPU | None (cloud) | None (cloud) |
| Verdict | Winner: Forge for cost-sensitive, structured tool-calling. Proprietary APIs still lead on open-ended reasoning and zero-setup deployment. | ||
My thesis: Forge exposes a fundamental misallocation in the AI industry — we've been spending billions scaling models when the real bottleneck for agent reliability is orchestration design. In the short term, Forge will accelerate adoption of local agentic workflows in enterprises that cannot or will not send data to cloud APIs. Texas Instruments, as a hardware company, has a natural interest in making local AI more capable, and this open-source release serves as a powerful proof-of-concept for on-device agent inference. The long-term consequence is more disruptive: if small-model + guardrails can match large-model accuracy on structured tasks, the premium pricing of proprietary agent APIs becomes harder to justify. I expect OpenAI and Anthropic to respond by either lowering prices for tool-calling or bundling guardrail features into their APIs. The key uncertainty is generalization — Forge's eval harness may be overfit to specific task types, and real-world agentic workflows (e.g., web browsing, multi-turn negotiation) may show smaller gains.
Predictions
- OpenAI will release a 'Structured Agent' mode within 6 months that embeds similar guardrails (retry, step enforcement, error recovery) into the Assistants API, reducing the accuracy gap with local solutions.
- By Q1 2027, at least three open-source guardrail libraries (Forge, LangChain's Guardrails, NVIDIA's NeMo Guardrails) will merge or standardize on a common interface for tool-calling reliability, driven by enterprise demand for vendor-neutral orchestration.
- Hugging Face will feature Forge on its 'Trending' leaderboard within 30 days, and the repository will exceed 5,000 GitHub stars by end of 2026, given the immediate utility demonstration.
Timeline
- May 19, 2026Forge released on GitHub
Antoine Zambelli publishes Forge, an open-source guardrail layer for local LLM tool-calling.
- May 20, 2026Hacker News discussion
Community debates reproducibility and calls for third-party benchmarks.
- Expected Q3 2026Independent benchmarks
MLCommons or similar body likely to validate Forge's claims on diverse tasks.
- May 19, 2026 — Antoine Zambelli publishes Forge on GitHub under Show HN, reporting 53% to 99% accuracy gains on 8B models.
- May 20, 2026 — Hacker News discussion highlights reproducibility concerns and requests third-party benchmarks.
- Expected Q3 2026 — Independent benchmarks from MLCommons or similar body validate or refute Forge's claims on diverse agentic tasks.
Chart: Accuracy Improvement by Model Size with Forge
Accuracy on Multi-Step Agentic Tasks (estimated)
Chart: Accuracy on Multi-Step Agentic Tasks (estimated)
- 8B model without Forge: 53%
- 8B model with Forge: 99%
- 70B model without Forge: ~78% (estimated)
- 70B model with Forge: ~97% (estimated)
Source: Zambelli's reported figures for 8B; 70B estimates based on typical small-model guardrail gains. Exact 70B data not yet released.
Article Summary
- Forge's 46-point gain on a 53% baseline proves that agent reliability is primarily a systems engineering problem, not a model scaling problem.
- The guardrails are model-agnostic and hardware-efficient, running on a single consumer GPU with sub-50ms overhead per step.
- Proprietary agent frameworks face pricing pressure if Forge's results generalize beyond the eval harness.
- Texas Instruments' involvement signals strategic interest in enabling capable local AI on their hardware platforms.
- Independent reproduction and broader task coverage are the critical next steps before declaring a paradigm shift.
Source and attribution
Hacker News
Show HN: Forge – Guardrails take an 8B model from 53% to 99% on agentic tasks
Discussion
Add a comment