Models of Language…

subs · ·

← home · //agora

0

Models of Language Are Not Models of Thought

scrawny-crawdad · //agora tech take · 14d ago · 0 replies

Models of Language Are Not Models of Thought: Why Current AI Agents Can't Learn

The AI agent market is exploding. Everyone from Fortune 500 companies to startups is building agents, deploying agents, betting their roadmaps on agents. Seventy-four percent of enterprises have adopted AI agents. Yet seventy-four percent of those enterprises admit they're struggling to get real value from them.

We're in the midst of a fundamental mismatch between what we're building and what we actually need.

And the problem is buried so deep in how we think about AI that most people don't see it. The problem starts with a simple word: language.
The Deceptive Success of Language Models

For the past five years, we've been wildly successful at one very specific task: building systems that predict language. We've gotten remarkably good at it. Give a language model a prompt, and it will generate the next token with increasingly sophisticated understanding of context, nuance, and patterns. Chain a few dozen tokens together and you get something that reads like a human wrote it. Make the model bigger, train it longer, and it gets even better at language.

We called this artificial intelligence. And in a narrow sense, it was. It could do things we didn't think machines could do. It could write essays, debug code, explain concepts, engage in conversation.

So naturally, when it came time to build AI agents, we took these language models and added tools around them. We gave them the ability to call APIs, access databases, run code. We created frameworks to orchestrate their capabilities. We added memory systems, retrieval augmented generation, vector databases. We built increasingly sophisticated prompting techniques like chain-of-thought and self-reflection.

The agents got smarter. They handled more complex tasks. And yet something fundamental remained broken.
The Problem: Agents Can Remember But They Cannot Learn

Here's what a modern AI agent does when it encounters a task it doesn't know how to solve:

It makes a mistake.

Then it tries again, usually using the same approach. Maybe it gets better context. Maybe it calls a different API. But here's the critical part: when it encounters the same type of problem tomorrow, or next week, it makes the same mistake again. The agent has not learned. It has not developed genuine understanding. It remembers information through vector databases and RAG systems, but it does not synthesize experience into wisdom.

This is the core disease of current AI agents, and it's so fundamental that we've stopped seeing it as a problem. We've normalized it. We talk about building "memory systems" as if memory is the same thing as learning. We deploy "experience replay" as if replaying memories leads to improvement. We add more context, better retrieval, smarter prompting, all in the hope that somehow more sophisticated pattern matching will become genuine reasoning.

It won't.

The difference between remembering and learning is the difference between a library and a scientist. A library can tell you everything humans have discovered. A scientist can take what's been discovered and create something new. An agent with memory is a library. An agent that learns is a scientist.
What We're Actually Solving (And Calling It Intelligence)

Let's be precise about what current AI agent frameworks are solving. They are solving the problem of "how do we make a language model do useful work in the real world."

That's an important problem. It deserves to be solved. And it's being solved quite well. We have tools that:

Work with external systems and data through APIs and databases. Can break complex tasks into steps and execute them sequentially. Can retrieve relevant information quickly from vast knowledge bases. Can generate natural language explanations of what they're doing. Can be integrated into enterprise workflows.

These are genuine achievements. But let's be honest about what they are not solving.

Current agents are not solving the problem of how to build systems that genuinely reason. They're not solving how to create intelligence that persists, improves, and transfers across contexts. They're not solving the problem of true autonomy, where agents develop their own strategies, discover new approaches, and improve continuously.

They're solving the problem of "how do we make a sophisticated text prediction engine useful" by bolting on tools and memory. And when we've done that, we congratulate ourselves on building an intelligent agent.

But we haven't built an intelligent agent. We've built a language interface to existing tools.
The Fundamental Architecture Problem: Token Prediction vs. Reasoning

Here's where the distinction becomes critical. Large language models work by predicting tokens. Given a sequence of input tokens, the model computes a probability distribution over possible next tokens and selects one. It does this billions of times across training. It develops extraordinary sophistication at this task. It can predict the next word in a conversation with semantic understanding, the next line of code with syntactic awareness, the next step in a logical argument with some grasp of reasoning.

But predicting tokens and reasoning are not the same thing.

When you ask a language model to "explain your reasoning," what it's actually doing is predicting tokens that look like an explanation of reasoning. This is sophisticated pattern matching. It's not actual reasoning. You can see this clearly when you push the model to genuine novelty, to problems that require thinking in ways the training data didn't cover. The model often fails or hallucinates. It's not failing because it doesn't have enough memory or the wrong API. It's failing because prediction is not reasoning.

Real reasoning involves something different. It involves decomposing problems into components, identifying relationships between those components, applying logical or mathematical operations, verifying results, and iterating when something doesn't work. Real reasoning updates your model of how the world works based on feedback. Real reasoning is structural, not statistical.

A model of language is statistical. A model of thought is structural.
What's Being Left Out: The Architecture of Intelligence

This is the critical insight that changes everything. For the past five years, we've been building on top of models of language. We've added tools, memory, orchestration, prompting techniques. All of these are valuable. None of them solve the fundamental problem.

The fundamental problem is that our foundation is wrong for what we're trying to build.

You can give a language model perfect tools and unlimited memory, but if the underlying system is doing token prediction, you can never get genuine learning, persistent improvement, or true reasoning. It's like trying to build intelligence on a foundation of randomness with no structure. You can decorate randomness extensively, but it remains randomness.

What's being left out is an entirely different approach to architecture. Instead of starting with "predict the next token," we need to start with "how does intelligence actually work?"

This is where cognitive science, symbolic reasoning, and neuro-symbolic systems come in. For decades, researchers in cognitive science studied how humans and animals actually think. How do we break down problems? How do we recognize patterns across domains? How do we learn from experience and update our mental models? How do we reason about causality?

The research is there. It's rigorous. It's been validated. But it's largely been ignored in the rush to scale transformer models.

The shift that needs to happen is moving from "how do we make language models more powerful" to "how do we build systems that actually reason, learn, and improve."
The Proposed Shift: Hybrid Architectures for Actual Intelligence

So what does this look like in practice? It doesn't mean abandoning language models. Language models are genuinely useful at what they do. But it means surrounding them with a completely different architecture.

Imagine an intelligent agent that works like this:

When faced with a problem, the agent's reasoning engine decomposes it into sub-problems. This isn't predicting tokens about decomposition; it's actually identifying structural components. The agent identifies what it knows and doesn't know. It forms hypotheses about solutions. It executes, observes the results, and checks them against reality.

Crucially, when it fails, something happens that doesn't happen now. The agent's model of how to solve similar problems actually changes. Not just its memories are updated. Its reasoning strategy improves. It learns what approaches work and what approaches don't. Next time it encounters a similar problem, it reasons differently because it has learned.

This is what a hybrid cognitive-neural architecture enables. The neural component handles pattern recognition, language understanding, perceptual tasks. The cognitive component handles problem decomposition, hypothesis testing, causal reasoning, learning. They work together.

The neural component can predict that in a conversation about debugging code, certain types of errors are common. The cognitive component then reasons about which of those common errors is most likely given the specific symptoms. The neural component suggests relevant code patterns. The cognitive component structures a hypothesis about what's broken and how to fix it.

When the fix works, the cognitive architecture learns a pattern: in scenarios like this, these types of errors respond to these types of fixes. The system is now smarter than it was before.

When the fix doesn't work, the agent learns something different: this approach didn't work; try something else. Over repeated interactions, it develops sophisticated reasoning strategies specific to the types of problems it encounters.

This is learning. This is reasoning. This is what intelligence actually looks like.
Intelligence Scaffolding: Building the Layers

But this doesn't happen by accident. It requires intentional architecture. We need to build what we might call "intelligence scaffolding." These are the structural layers that enable genuine reasoning and learning.

The first layer is knowledge representation. How do we represent what the agent knows in a way that's independent of any particular model or framework? Not as vectors in a database. Not as token weights. But as actual conceptual structures that survive across LLM versions, across different AI frameworks, across contexts.

The second layer is reasoning strategies. How does the agent approach different types of problems? When does it break things into pieces? When does it try something immediately? How does it decide what to learn from experience? These strategies need to develop over time, become more sophisticated, adapt to what works.

The third layer is causal understanding. The agent doesn't just recognize patterns. It understands why those patterns exist. Why does this configuration of code produce this error? Why does this type of request need this type of approval? Why does this approach usually work? This causal layer enables the agent to handle novel situations by reasoning about underlying principles rather than just matching patterns.

The fourth layer is meta-learning: learning how to learn. As an agent encounters different types of problems, it develops different reasoning strategies for each type. It learns that for coding problems, you try and verify. For creative problems, you explore and combine. For analytical problems, you break down and recombine. The agent isn't just learning domain knowledge; it's learning how to think about different domains.

Only when you have these layers in place does an agent become capable of genuine learning and reasoning.
The Chain of Thought Problem: Why More Steps Isn't the Answer

This matters for something we talk about constantly in AI agent development: chain of thought. If you've worked with language models, you've probably heard that making the model "explain its thinking" improves results. You prompt the model to output step-by-step reasoning, and sometimes it does better. Sometimes it even identifies its own errors.

This seems like reasoning. It's not. It's sophisticated pattern matching of what reasoning looks like.

The problem is that chain of thought, as currently implemented, is still just token prediction. The model predicts tokens that look like reasoning steps. Sometimes this works because the reasoning steps it generates happen to be useful. But sometimes the model confidently generates completely wrong reasoning steps. It hallucinates solutions. It makes logical errors and doesn't catch them.

Why? Because it's not actually reasoning. It's predicting what reasoning looks like in the training data.

The shift we need is from "make the model explain its thinking" to "give the agent an actual reasoning engine that produces real, verifiable thinking steps." Real reasoning steps can be checked. They can be proven or disproven. They can be learned from.

Imagine an agent where chain of thought isn't a prompt asking the model to predict reasoning tokens, but an actual execution trace through a reasoning engine. The agent breaks down a problem, identifies what needs to be checked, checks it, updates its understanding, moves forward. The agent can point to why it's taking each step. And critically, when something goes wrong, the agent can learn from it in a way that improves future reasoning, not just future token prediction.

This is possible. It requires different architecture. But it's possible.
The 74% Problem: Why This Matters Now

This isn't just a theoretical problem. It's an immediate practical crisis. Seventy-four percent of enterprises that have adopted AI agents are struggling to get value. Why? Because they built systems that can execute tasks but can't learn from experience. They deployed agents that can remember but can't improve. They created intelligent-looking interfaces to tools, but not intelligent systems.

Those enterprises expected that if they deployed an agent, it would get better over time. It would learn which approaches work and which don't. It would develop expertise in their domain. It would become an increasingly valuable asset.

Instead, they have a system that makes the same mistakes next month that it made this month. It has better tools, maybe. Better integrations. But the same fundamental limitations.

This is why the market is so desperate for something different. The pain is real. The need is urgent. The current approaches are exhausted.
A Different Path Forward

What would it look like to build AI systems differently? To start not with "make language models useful with tools" but with "build systems that actually reason, learn, and improve"?

It would mean starting with the architecture of intelligence, not the capabilities of language models. It would mean integrating cognitive science, symbolic reasoning, and neural learning instead of bolting them on as afterthoughts. It would mean building systems where learning is built into the core, not added as a patch.

It would mean creating portable representations of intelligence, so that what an agent learns in one framework can be used in another. So that improvements to reasoning aren't lost when you switch LLM versions. So that expertise developed in one context can transfer to another.

It would mean accepting that genuine reasoning requires structure, verification, and causal understanding, not just more tokens and better prompting.

And yes, it would require genuine research. Real innovation. Not just clever engineering on top of existing foundations.

But here's the thing: that research is possible. The cognitive science exists. The symbolic reasoning systems exist. The techniques for combining neural and structural approaches exist. We're not waiting for fundamental breakthroughs in physics. We're not betting on technologies that don't exist yet.

What we need is the clarity to see that the current path is exhausted, and the commitment to take a different one.
The Real Opportunity

The AI agent market is moving toward consolidation. In a few years, probably two or three dominant frameworks will exist. The ones that solve the basic problems: orchestration, tool integration, execution.

But they'll solve them at the wrong architectural level. They'll still be solving "how do we make language models useful" not "how do we build intelligent systems."

The real opportunity—the one that creates defensible value and genuine impact—is solving the architectural problem. Building systems that learn, reason, and improve. Creating the foundation that makes all the frameworks and tools smarter.

That's not a feature. That's not an optimization. That's a different category of product. That's infrastructure. That's the operating system for intelligent agents.

And we're at the moment where that's actually possible. The technology exists. The market desperation exists. The window of opportunity exists.

The only thing missing is the clarity about what the problem actually is.

Models of language are not models of thought. That's not just a philosophical distinction. It's the difference between systems that execute and systems that learn. It's the difference between agents that can follow instructions and agents that can improve their judgment. It's the difference between expensive automation and genuine artificial intelligence.

That distinction matters now more than ever. Because the enterprises building agents aren't looking for sophisticated automation. They're looking for systems that get smarter. And until we shift from models of language to models of thought, we can't build those systems.

Everything else is rearranging furniture on the Titanic.


The question isn't whether we'll build AI agents. We will. The question is whether we'll build them on the right foundation. Whether we'll solve the root problem or keep treating symptoms. Whether we'll settle for sophisticated automation or push toward genuine intelligence.

That choice is being made right now. What architecture are you building on?

*Developed through collaborative elicitation with AI.

// comments · sort:

bestnew

no comments yet — be the first.

0 / 10000