The architecture is the intelligence.

The quality, reliability, and intelligence of an AI system come from what you build around the model, not from the model itself.

By P0P / Research / 9 min read / July 2026
The short version
  • The model is one parameter. The architecture is the function that turns a task into an answer you can trust.
  • Routing, context, evidence, and constraints decide whether an output is good. None of them live in the model's weights.
  • The test is simple: swap the model. If the system still holds, the intelligence was in the architecture.
  • A better model helps everyone at once. A better architecture is yours, and it compounds.

There are two ways to make an AI system better. You can wait for a smarter model, or you can build a better architecture around the model you have. Most of the industry is doing the first. We think the second is where the real work is.

01 / The two schools

A tale of two schools

Connectionism is the older idea. Intelligence emerges from a network of simple units, from weights adjusted over data. It is the intellectual root of every large model in use today, and it works. But it puts intelligence in one place: the model.

Architecturalism starts from a different observation. In a real system, the model is rarely the thing that decides whether the output is good. The output is good when the right context reached the model, when the task was framed correctly, when the answer was checked against something solid, when the system remembered what it learned the last time. None of that lives in the weights. It lives in the architecture.

This is not a rejection of connectionism. It is a claim about where the remaining work is. The model is a remarkable component. A component is not a system.

02 / The function

Architecture as a function

Think of an AI system as a function. It takes a task, some context, a set of available models, and a set of constraints. It returns an answer, and the evidence for that answer.

architecture = f(task, context, models, constraints) → answer + evidence

The model is one argument inside that function. It matters, the way a good engine matters, but it does not define the function. The function is defined by everything around the call: how the task is decomposed, what context is retrieved, which model is chosen for which step, how the output is verified, what gets remembered for next time.

Write it this way and something becomes clear. If you want a better answer, you can reach for a better model, or you can improve the function. The first option is bounded by whatever the frontier ships next. The second is yours to build.

THE INPUTS THE FUNCTION OUTPUT the task what needs doing the context pulled from memory the constraints rules & limits knowledge pipeline people routing THE FUNCTION best-fit model chosen by the routing answer reliable right model per task repeatable output task, context, constraints one architecture, any model routed to the best-fit model
Figure 1. The function decides which model handles which task. Task, context, and constraints go in; one architecture routes to the best-fit model and returns a reliable answer. The model is swappable; the function is not.
03 / Where it lives

Where the intelligence actually lives

Four places, and none of them is the base model.

Routing. Not every task needs the most expensive model. A system that knows which model fits which step spends less and, on many tasks, scores higher, because the best model for a narrow job is often not the largest one.

Context. A model with the right three paragraphs in front of it beats a larger model working blind. Retrieval, memory, and the discipline of putting the whole relevant context in one place is architecture, not modeling.

Evidence. An answer you cannot check is a guess with good grammar. Systems that carry their sources, log their decisions, and reproduce on a cold run earn trust for reasons that have nothing to do with model size.

Constraints. Fail-closed behavior, guardrails, the refusal to answer when the ground is not there. This is where mission-critical work is won. A smarter model does not hand you this. An architecture does.

The model is a parameter. The architecture is the function.

344
Models one architecture can route across
95-98%
Frontier-grade quality on routed tasks
50% lower
Cost for the same standard of output
04 / The test

The swap test

Here is a clean way to tell whether your intelligence is in the model or in the architecture. Swap the model. Take the base model out, put a different one in.

If the system falls over, the intelligence was in the model, and you were renting it. If the system still holds, if quality stays roughly flat while cost or availability improves, the intelligence was in the architecture, and it is yours.

We hold ourselves to this test. One architecture, many models. When a new model ships, it becomes another option the function can call. Not a migration. Not a rewrite. Another argument in the slot.

05 / The consequence

What this means for what you build

If the intelligence lives in the model, the rational strategy is to wait. The next model will fix it. If the intelligence lives in the architecture, the rational strategy is to build, because every improvement you make to the function compounds and stays with you.

We think the second is true, and we think it is most true where being wrong is expensive: healthcare, mergers, consulting, high-ticket sales. Those are the systems we build. Sourced, reproducible, fail-closed. Built on frameworks we can prove.

The case studies that follow this piece are all instances of the same move. A custom architecture, holding a standard, indifferent to which model is underneath.

The question we leave you with

If a system only works because the model is smart, what happens when the model changes?

A great architecture is not dependent on model intelligence. It is agnostic of model intelligence.

Notes
  1. Connectionism here means the broad tradition that locates intelligence in learned network weights, the lineage behind today's large models. Architecturalism is our name for the complementary position: that in deployed systems, quality is set by the structure around the model.
  2. The proof points (344 models routed, 95 to 98 percent of frontier quality on routed tasks, roughly half the cost for the same standard) are the same figures we stand behind on the method and work sections of the site. We do not publish confidential client numbers.