The Most Important AI Upgrade May Not Be a Smarter Model

Kunal Grover

Hatched by Kunal Grover

Aug 10, 2026

11 min read

91%

0

What if many AI hallucinations are not failures of intelligence at all, but failures of procedure?

A model can produce an eloquent answer, reason through a difficult problem, and still drift into confident nonsense because nothing in its operating environment requires it to stop, check, or expose uncertainty. We often respond by making the model larger, retraining it, or applying another layer of preference optimization. But sometimes the decisive improvement is not inside the model. It is in the single instruction, tool constraint, or feedback loop that changes what the model is allowed to do.

This possibility points toward a broader thesis: the future of reliable AI may depend less on teaching models to be right than on designing systems that make being wrong difficult, visible, and recoverable.

That thesis connects several developments that are usually discussed separately: the attempt to prevent agent delusions with a small architectural change, the distinction between base, instruction, and reasoning models, the rise of open weight systems, and the very human habit of writing complicated database queries from scratch. Together, they reveal a central mistake in how we think about intelligence. We keep asking, “How smart is the model?” when the more useful question is, “What kind of environment does the model have to operate in?”

The model is not the whole system

Imagine giving an inexperienced employee access to a production database. You could send the employee to another training course. You could improve their memory, teach them more syntax, and reward them for writing elegant queries. Those interventions may help. But the most important safeguard might be much simpler: make every destructive command require explicit confirmation, run queries first in a read only environment, and display the affected rows before allowing a change.

The employee has not become more intelligent. The system has become more resistant to catastrophic mistakes.

AI agents need the same distinction. A language model generates sequences according to learned patterns. It does not automatically possess a stable commitment to reality, nor does it inherently know when a plausible continuation has become an unsupported claim. In a conversation, that may produce a false citation. In an agent, it can produce a cascade: an invented assumption becomes an action, the action changes the environment, and the altered environment is then treated as evidence that the assumption was correct.

This is not merely a problem of “hallucination” in the familiar sense. It is a problem of uncontained inference. The agent is permitted to convert a guess into a premise, a premise into a plan, and a plan into an external action without enough friction between those stages.

A small piece of code can sometimes interrupt that cascade. It may require the agent to verify a claim against a tool. It may force a fresh observation before acting. It may prevent the system from treating its own previous output as authoritative. The exact implementation matters, but the deeper principle is general:

Reliability often comes from controlling the transition between thought, belief, and action, not from eliminating every mistaken thought.

This explains why post training alone can be an inefficient solution. Reinforcement learning and related methods try to shape the model’s tendencies across a vast range of situations. A procedural guardrail addresses a narrower question directly: what must happen before this particular output can cause this particular consequence?

The difference resembles the difference between improving a pilot’s judgment and installing an altitude warning. We need both. But if the aircraft is already descending toward a mountain, another seminar on judgment is not the first intervention we should reach for.

Three models, three kinds of reliability

The distinction between base, instruction, and reasoning models offers a useful framework for understanding where reliability comes from.

A base model is trained primarily to continue patterns in data. It may contain extraordinary knowledge and powerful capabilities, but it is not necessarily shaped to follow a user’s intent. An instruction model adds a layer of behavioral training. It is taught to respond to requests, follow formats, and behave in ways that people recognize as helpful.

A reasoning model adds another emphasis: spending more computation on difficult problems, often producing intermediate steps or using specialized training to improve performance on tasks that require extended deliberation.

These stages are often treated as a simple ladder, as if each one is just a smarter version of the previous model. A better interpretation is that they represent different contracts with the environment.

The base model says, in effect, “I can generate continuations.” The instruction model says, “I can orient those continuations toward a request.” The reasoning model says, “I can allocate more effort to a problem before answering.” None of these contracts guarantees that the system will know when its information is insufficient, distinguish observation from speculation, or refrain from acting on an unverified plan.

That is why more reasoning can occasionally make a system more dangerous. If the initial premise is false, additional computation may produce a more elaborate defense of the error. A model that reasons fluently about a nonexistent database table does not become reliable merely because its explanation contains more steps.

The missing ingredient is not always deeper cognition. It is often epistemic plumbing: mechanisms that label where information came from, test whether a claim is supported, and prevent one uncertain output from silently becoming the next input.

Consider an agent asked to find a customer record and issue a refund. A weak design lets it infer the customer identity from an ambiguous message, construct a query, and execute the refund. A stronger design separates the task into states:

  1. Interpret the request and identify ambiguities.
  2. Retrieve the relevant record using a constrained query.
  3. Show the evidence and proposed action.
  4. Obtain confirmation when the consequences are material.
  5. Execute the action and record the result.

The model may be identical in both systems. The second system is more dependable because it gives uncertainty somewhere to go. It turns hidden doubt into an explicit state rather than allowing doubt to masquerade as confidence.

Open weights change who can fix the problem

The movement toward open weight models matters here for more than cost or competition. It changes the location of responsibility.

When a model is available only through a polished interface, users experience a single product. They can adjust prompts and settings, but they cannot easily inspect the model, alter its runtime, examine its training process, or build a different control layer around it. When weights are downloadable, engineers can run the model in their own environment and decide which parts of reliability should be solved through training, which through tools, and which through application design.

This is why the distinction between open weights and open source is consequential. Downloading weights provides access to a central artifact, but it does not necessarily provide the training data, training code, or the freedoms associated with traditional open source software. For serious reliability work, those layers matter. Without them, it is difficult to understand what a system learned, reproduce its behavior, or identify whether a failure arises from the model, the data, or the surrounding infrastructure.

Still, even partial openness creates a valuable shift. It allows a developer to say: this model is capable enough for the task, but I do not need to ask the model to solve every reliability problem internally. I can wrap it in a verifier, limit its tools, inspect its intermediate artifacts, and tune the whole system for a particular risk profile.

This leads to a practical design rule:

Use training to shape general tendencies. Use architecture to enforce local truths.

Training is appropriate when the desired behavior must generalize across millions of contexts. If we want a model to communicate clearly, follow instructions, or recognize common forms of abuse, training can create broad dispositions. Architecture is better when the rule is concrete and high stakes: a payment must have a valid authorization, a database mutation must identify affected records, a legal citation must be retrieved from a trusted source, and a machine command must satisfy a defined safety condition.

Trying to teach a model through reward that it should never invent a customer record is less direct than requiring every customer record to come from a database lookup. The first approach asks a statistical system to remember a universal behavioral preference. The second gives the system a narrow path through which the relevant fact can enter.

The database query is a lesson in calibrated trust

There is an important irony in the example of a technically sophisticated person writing SQL queries manually instead of delegating them to an assistant. It can look like resistance to automation, but it may actually reflect a sophisticated theory of trust.

When someone writes a complicated query from scratch, they retain a direct relationship with the schema, the joins, the filters, and the consequences. They know which assumptions are being made. An automated suggestion may be faster, but it can also conceal an incorrect table relationship or a filter that quietly excludes important records.

The question is not whether AI can write SQL. It plainly can. The question is which parts of database work should be delegated, and which parts should remain observable to the operator.

A useful answer is to divide work into three categories:

  • Mechanical work, such as remembering syntax or generating a first draft, is highly delegable.
  • Interpretive work, such as deciding what “active customers” means, requires review because the ambiguity is semantic, not grammatical.
  • Consequence bearing work, such as deleting records or issuing refunds, requires explicit controls because an elegant query can still cause irreversible harm.

This framework applies far beyond databases. An AI assistant can draft a report, but the definition of a material error may require human judgment. It can retrieve a regulation, but determining whether the rule applies to a particular case may require domain expertise. It can propose a code change, but deployment should be mediated by tests, review, and rollback.

The best systems therefore do not ask humans to inspect everything. That would defeat the purpose of automation. They make humans inspect the right boundaries, especially the boundaries where a generated representation becomes a real-world commitment.

From bigger models to better boundaries

The emerging engineering discipline is not simply model building. It is boundary design.

A boundary is any point at which one kind of object becomes another: a probability becomes a claim, a claim becomes a plan, a plan becomes a tool call, a tool result becomes evidence, or evidence becomes an irreversible action. Failures become expensive when these transitions are invisible and cheap when they are explicit, testable, and reversible.

We can evaluate an AI system using four questions:

  1. What can the system assume? Are assumptions clearly marked, or do they appear as facts?
  2. What can the system observe? Does it have access to authoritative data, or is it improvising from context?
  3. What can the system do? Are tool permissions broader than the task requires?
  4. What happens after an error? Can the action be rolled back, audited, and corrected?

This produces a more useful reliability matrix than a single benchmark score. A model may perform brilliantly on abstract reasoning while remaining unsafe when connected to a payment system. Another model may be less capable in open ended conversation but highly dependable in a constrained workflow with strong verification.

The crucial metric is not just answer accuracy. It is error leverage: how much damage can one unsupported output cause before anyone notices?

A system with moderate accuracy and low error leverage may be preferable to a system with higher accuracy and unrestricted authority. The first makes occasional mistakes that remain local. The second turns rare mistakes into systemic events.

Key Takeaways

  • Separate capability from control. A capable model still needs explicit mechanisms for verification, uncertainty, and permission management.
  • Put hard rules in the system around the model. If a condition can be checked mechanically, do not rely only on post training behavior to enforce it.
  • Treat reasoning as a process, not proof. More steps can clarify a correct premise, but they can also rationalize a false one. Require external evidence where the stakes justify it.
  • Delegate by consequence. Automate drafting and mechanical transformations freely; add review and confirmation at semantic and irreversible boundaries.
  • Measure error leverage. Ask not only how often the model is wrong, but how far one wrong answer can travel before detection or rollback.

The deepest shift is conceptual. We have inherited a picture of intelligence in which the ideal system is an oracle that knows the answer before acting. Real institutions work differently. They use permissions, records, signatures, checks, supervision, and reversibility because even intelligent people are fallible and because the world is too consequential to leave every decision inside one mind.

AI agents will become trustworthy through the same institutional logic. The winning system may not be the one with the most impressive internal monologue. It may be the one that knows when a thought is only a thought, when a fact needs to be retrieved, when a plan needs approval, and when a single line of code should stand between a plausible sentence and an irreversible act.

In that sense, reliable intelligence is not the absence of error. It is the presence of well designed boundaries that prevent error from becoming reality.

Sources

← Back to Library

Hatch New Ideas with Glasp AI 🐣

Glasp AI allows you to hatch new ideas based on your curated content. Let's curate and create with Glasp AI :)

Start Hatching 🐣