The production wall every agent team hits
An AI agent demos beautifully, goes to production, and stalls. It runs for a stretch, then needs a human to top up its context and check its output. The promised efficiency drains into supervision. This is why so many agent pilots never become production systems.
The underlying problem is usually not orchestration or raw model capability. It's whether the model knows your business well enough to be left alone — and for how long.
When AI firm Chroma tested 18 leading models, every one lost accuracy as its input grew. That's a property of how attention works, not a gap a stronger model closes. An agent fed more and more of your business as it runs doesn't get steadier. It gets shakier.
Why the two standard fixes both keep you in the loop
**Fine-tuning** bakes knowledge into model weights. It remains subject to catastrophic forgetting — a problem identified in the 1980s and still unresolved in 2026. Teaching a model something new tends to erode what it already knew. Teams work around this by isolating each task in its own fine-tuned model or adapter, which produces a sprawling estate of models that raises cost and governance overhead. And a fine-tuned model is a snapshot: stale the day a policy changes, when a slow, expensive retraining cycle starts over.
**In-context learning and RAG** skip retraining by placing relevant policies in the prompt at runtime. But a retrieval miss looks identical to a confident answer. Cost and latency climb with every token added. And accuracy degrades as context grows.
The two failures rhyme. With fine-tuning, the model may be confidently working from last quarter's policy. With RAG, it may be confidently working from a detail it lost in the middle of a long prompt. Either way the output looks equally assured — so you can't tell which parts are wrong without checking all of them. That's why the human never gets to leave.
A third path: generate the specialist model on demand
A hypernetwork is a network whose output is the weights of another network. The term was coined in 2016; applying it to produce specialist language model adapters from text or documents is recent and active.
Sakana AI's Text-to-LoRA, presented at ICML 2025, generates a model adapter from a plain-language description in a single pass. A 2026 system called SHINE describes hypernetwork adaptation as a promising new frontier precisely because it sidesteps both the retraining cost of fine-tuning and the context limits of prompting.
The practical payoff: the per-task adapter teams hand-build to dodge catastrophic forgetting is the same object a hypernetwork produces automatically. The model zoo stops being a governance headache and becomes a generated output.
Nvidia researchers argued in 2025 that for the narrow, repetitive tasks filling agent workflows, small models are capable enough and 10 to 30 times cheaper to run than frontier generalists — which is the economic case for going small underneath all of this.
The clearest commercial instance so far
Nace.AI, a Palo Alto company that raised a $21.5 million seed round in May 2025, is the most visible early product. Its core technology — a generator it calls a MetaModel — produces parameter adaptations at inference time from a company's policies, aimed at regulated work: audit, compliance, risk assessment. The company says its agents handle the bulk of a workflow while human experts validate the result, a split it markets as 90/10.
That ratio is best read as a measurement of an architecture, not a dial set in advance. It only means something if every output comes with grounding — citations, reasoning traces — that lets a reviewer verify provenance in seconds rather than redo the work.
Where the approach breaks down
Calibration is the linchpin. Recent work found that hypernetwork-generated adapters don't automatically improve calibration over ordinary fine-tuning; gains appear only under specific constraints. The quality of the generated model also depends heavily on the policy data it's built from.
Nace says it has scaled its generator well beyond the sizes shown in published research and derived a scaling law for how performance grows — results it is now putting through peer review. If that holds up, it would help answer one of the central open questions in the field. It's the paper worth watching.
What to ask before you buy
For a long, repetitive, high-volume process — running internal audit overnight and having experts check the final slice — a hypernetwork-generated model is the approach most likely to run cheaply and long enough to matter. For a short task that finishes in a few steps, the gap versus a well-prompted frontier model shrinks to almost nothing.
Four questions cut through vendor pitches: Where does the business knowledge live — weights, prompt, or generated on demand? What does each output come with so a reviewer can verify rather than redo it? What decides which work gets escalated? And whose model improves from expert feedback, and where does it run?
The answers, not the headline autonomy ratio, tell you what you're buying.