The New Bottleneck in AI Is Not Intelligence, It Is Orchestration

Mark Erdmann

Hatched by Mark Erdmann

May 24, 2026

10 min read

83%

0

The strange reversal happening in AI

What if the biggest leap in AI is no longer making models smarter, but making them easier to coordinate?

For years, the story was simple: bigger models, more data, more capability. But a subtle shift is underway. A large model can now run on a phone, locally, in your hand. At the same time, sophisticated language model programs are becoming pipelines of modular calls, where performance depends less on any single model and more on how well the whole system is instructed, staged, and tuned.

That creates a surprising tension. As models become more powerful and more portable, the hard problem moves from training intelligence to conducting intelligence. The question is no longer, “Can the model do this task?” It becomes, “Can we compose a set of model steps so the task is done reliably, cheaply, and in the right context?”

This is the new bottleneck in AI: not raw intelligence, but orchestration.


When the model shrinks, the system grows

A local model on a phone sounds like a triumph of compression. And it is. But it also changes the economics of AI design. Once a capable model fits on-device, latency drops, privacy improves, and dependence on cloud infrastructure weakens. The model is no longer a distant oracle summoned through an API. It becomes a component, available everywhere, embedded in the physical world.

That shift matters because once intelligence is local, workflow design becomes more important than model worship. The phone itself is not the achievement. The achievement is that the phone can now host a reasoning surface, a writing assistant, a summarizer, a classifier, or a small planning agent without leaving the device.

Think of the difference between owning a powerful engine and owning a well-designed car. The engine matters, but the real experience comes from steering, braking, suspension, and the way the parts work together. A local model is the engine. A language model program is the vehicle.

This is why the rise of modular LM pipelines feels so important. The task is increasingly divided across stages: one module interprets the request, another extracts structure, another drafts, another verifies, another reformulates. A single model call may be capable, but a sequence of specialized calls can be more reliable than a monolith if the sequence is properly designed.

And that design problem is not just engineering. It is a new kind of cognitive architecture.

The frontier is shifting from building a smarter mind to designing a better mental workflow.


Why prompt optimization suddenly looks like systems design

There is a temptation to think of prompting as a thin layer of text wrapped around intelligence. That view is now too small. In multi stage language model programs, prompts are not decorative instructions. They are control surfaces for a distributed system.

If a pipeline has several modules, each prompt affects downstream performance in ways that are hard to isolate. A better instruction for one step can help the whole system, or it can mislead later steps by overconstraining the representation. A few examples can improve a module’s behavior, but they can also create brittle patterns if chosen carelessly. The challenge is not merely to write good prompts. It is to solve credit assignment across modules.

That phrase sounds technical, but the intuition is simple. Suppose a five step workflow fails. Which step caused the failure? Which prompt should be updated? Which demonstration helped one stage but hurt another? In a traditional program, debugging is about tracing a bug to a line of code. In LM programs, the “bug” can be semantic, statistical, and contextual at once.

This is why prompt optimization becomes an optimization of interacting beliefs. Each module’s instruction is a hypothesis about what that module should do. The demonstrations are examples of how it should think. The optimizer is not just searching for words, it is searching for a coordination protocol among modules.

A useful analogy is a restaurant kitchen.

A good kitchen does not rely on one genius cook improvising every dish. It relies on station roles, timing, plating, and shared expectations. If the grill station changes temperature, the salad station may need to adjust prep. If the expediter changes how orders are sequenced, the whole kitchen responds. The system’s quality depends on the coordination of specialized roles, not just the talent of one person.

Multi stage LM programs are kitchens. Prompt optimization is the art of making the kitchen run smoothly.


The deeper thesis: intelligence is becoming programmable through coordination

The real breakthrough is not that models can now run locally or that prompts can be optimized automatically. It is that intelligence itself is becoming programmable at the level of coordination.

This is a subtle but profound change. In the old framing, you either had a powerful model or you did not. In the new framing, the model is a substrate, and performance depends on the structure imposed around it. A weaker but well orchestrated system can outperform a stronger but poorly guided one. That is why a best in class open source model can gain a substantial accuracy boost when its instructions, demonstrations, and optimization process are tuned carefully.

This reframes what “model quality” means. A benchmark score is no longer just a property of weights. It is a property of the entire inference stack: prompts, modular decomposition, routing, examples, evaluation strategy, and feedback loops.

This has two practical consequences.

First, the center of gravity moves from one shot prompting to workflow engineering. The important unit is not the prompt in isolation, but the sequence of prompts and their dependencies.

Second, the value of local and open models increases because they are more inspectable and modifiable. A phone running a model locally is not just a product feature. It is an environment where orchestration can be refined closer to the user, with lower latency and tighter feedback loops.

The future likely belongs to systems where intelligence is not centralized in one giant model but distributed across many small decisions about how to use models.

The most important question is no longer, “How smart is the model?” It is, “How well does the system learn to use the model?”


A practical mental model: the three layers of AI performance

To make this concrete, it helps to use a three layer framework.

1. Capability layer

This is what the model knows and can generate. It includes reasoning ability, language fluency, and domain knowledge.

2. Orchestration layer

This is how the model is used. It includes decomposition, module sequencing, prompt instructions, demonstrations, retries, verification, and routing.

3. Execution layer

This is where the system runs. On device or in the cloud, with what latency, what privacy guarantees, what costs, and what access constraints.

Most people focus on the capability layer. That is understandable, because it is the most visible. But once a model is good enough, orchestration dominates perceived quality. A modest model with excellent task decomposition can outperform a larger model with sloppy prompting. Likewise, a local model can be more useful than a cloud model if it is embedded in the right workflow and can act instantly.

Here is a tangible example.

Imagine a student using AI to prepare for an exam. One option is a single massive model that writes an answer in one pass. Another option is a pipeline: first identify the topic, then retrieve relevant facts, then draft an answer, then check for omissions, then simplify the language. The second system may use the same or even smaller models, yet produce better results because each stage has a specific job.

This is not a workaround. It is a new form of design. The system becomes a kind of micro bureaucracy for cognition, where each module has a limited mandate and the whole is stronger because of that constraint.


Why optimization matters more when systems are modular

Modularity creates power, but also instability. Once a workflow is split into stages, small prompt errors can propagate. A vague instruction in an early module can contaminate everything downstream. A misleading example can anchor the entire pipeline in the wrong frame. The more modular the system, the more crucial it becomes to optimize not just each module, but the interaction between them.

This is where automated optimization changes the game. Instead of relying on intuition alone, the system can explore prompt variations, test them on mini batches, learn surrogate signals, and refine its own proposal process over time. That sounds like a technical detail, but conceptually it represents something larger: the system learning how to instruct itself.

That recursion is important. It suggests that AI progress is entering a phase where human designers set the goal, but the exact coordination language emerges through search and feedback. We stop hand authoring every step and start shaping the space in which good steps are discovered.

This is similar to how modern software engineering changed when compilers, package managers, and orchestration tools matured. Developers no longer type every machine instruction manually. They write a higher level intent and rely on tooling to produce an efficient execution path. In the same way, the next generation of AI systems will likely rely on optimizers that translate task intent into prompt architecture.

The key implication is that prompting becomes a design discipline, not a folk art.


The strategic implication: local models plus orchestration beat centralization

Put the two ideas together, and a new pattern emerges. If models can run locally, then the device can host private, low latency, adaptable intelligence. If multi stage programs can be optimized, then that intelligence can be structured into reliable workflows that outperform simple one shot usage.

This combination is more powerful than either trend alone.

A local model without orchestration is just a portable generator of text. A prompt optimized pipeline without local deployment still depends on centralized access and cloud latency. But together they create a new product category: personal AI systems that are fast, private, and behaviorally tuned to the task at hand.

That could mean a writing assistant on your phone that learns how you outline ideas. A customer support tool that routes queries through specialized steps on-device before deciding whether to escalate. A field technician’s assistant that works offline and uses modular prompts to diagnose equipment. A medical intake tool that preprocesses sensitive information locally before sending only what is necessary.

The strategic shift is subtle but enormous. The winner is not necessarily the company with the biggest model. It is the company that can build the best orchestration layer around an available model, especially when that orchestration happens close to the user.

That is how AI becomes less like a monolith and more like infrastructure.


Key Takeaways

  1. Stop thinking of prompts as text templates. Treat them as control logic for a system of interacting modules.
  2. Optimize workflows, not just model calls. The performance of an LM program depends on the structure connecting steps, not only on each step individually.
  3. Use smaller models strategically. A capable local model can be more useful than a larger cloud model when latency, privacy, and control matter.
  4. Design for credit assignment. When a pipeline fails, isolate which stage needs instruction changes, example changes, or decomposition changes.
  5. Build with orchestration in mind. The next competitive advantage is often the ability to make a model behave reliably inside a larger task sequence.

The end of the one model fantasy

The most seductive idea in AI is that intelligence lives inside a single artifact, and progress means making that artifact bigger. But the more capable models become, the more clearly we see that real intelligence in practice is relational. It depends on context, sequence, feedback, and control.

A model running locally on a phone is a symbol of accessibility. A multi stage language model program is a symbol of structure. Together they point to the same future: intelligence is becoming a composition problem.

That changes how we should build, evaluate, and even imagine AI. The decisive question is no longer whether a model can answer a prompt in one shot. It is whether we can shape a system that knows when to ask, when to refine, when to verify, and when to act. In other words, the frontier is not just making models smarter. It is teaching them, at scale, how to work together.

And once you see that, the whole field looks different. The real breakthrough is not the model in your hand. It is the invisible choreography that turns that model into something trustworthy, useful, and alive.

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 🐣