Back to Blog
AIAIWashingCuttingThroughTheNoiseTechRealityAIAgents
AI Has a Marketing Problem — And It's Costing the Industry Billions
5 min read
AI doesn't have a technology problem. It has a vocabulary problem. And the gap between what AI terms promise and what they actually deliver is now...
AI doesn't have a technology problem. It has a vocabulary problem. And the gap between what AI terms promise and what they actually deliver is now measurable — in failure rates, abandoned projects, and billions of dollars in sunk costs.
## The Conventional Wisdom
The AI industry has spent the last two years selling you words. "Agents." "Reasoning." "Autonomous AI." "RAG." Each one sounds like a breakthrough. Each one gets a press release, a funding round, and a keynote.
The SEC noticed. In 2024, the SEC charged two investment advisers — Delphia and Global Predictions — for making false claims about their use of artificial intelligence. The agency called it "AI washing" — the practice of slapping AI labels on products to inflate valuations. As SEC Chair Gary Gensler put it, "We've seen time and again that when new technologies come along, they can create buzz among investors, and we've seen situations where firms make claims about their AI capabilities that are not true."
And the numbers behind the hype are brutal. RAND Corporation's 2025 analysis found that 80.3% of AI projects fail to deliver their intended business value — with 33.8% abandoned before ever reaching production. MIT Sloan found that 95% of enterprise GenAI pilots fail to achieve measurable impact on revenue. Gartner predicted 30% of GenAI projects would be abandoned after proof-of-concept by end of 2025, then quietly revised that number to 50%.
That is because the problem isn't the models. It's the marketing.
## The Contrarian Take: It's the Words, Not the Technology
Here's what most people miss: every AI term you encounter has been inflated by 2-3 levels of abstraction beyond what it actually does under the hood.
**"AI Agent"** — An API call with context and a goal. Your system reads some data, sends it to a language model, gets a response, and takes an action. That's it. As AWS documentation puts it, an AI agent is "a software program that can interact with its environment, collect data, and use the data to perform self-determined tasks to meet predetermined goals." No sentience. No autonomy. A loop with an LLM call inside it.
**"RAG" (Retrieval-Augmented Generation)** — Search plus paste. Your system searches a database for relevant text, pastes it into the prompt, and sends it to the model. For eg. when a chatbot answers a question about your company's policies, it's searching a document store and inserting the relevant paragraphs before the LLM generates its response. Sophisticated?? Yes. Magic?? No.
**"Reasoning"** — Next-token prediction at scale. The model picks the most statistically likely next word, thousands of times per second. When GPT-4 solves a math problem, it's not "thinking" — it's pattern-matching against billions of training examples. As Andrew Ng observed, "the actual commercial value will keep rapidly rising" — but the gap between marketing claims and actual mechanism is where the waste happens.
**"Autonomous AI"** — Automation with conditional logic. Your system follows a decision tree with LLM calls at branch points. If X happens, call the model. If the model says Y, take action Z. The "autonomy" is a for-loop with branching, not independent judgment.
**"Neural Network"** — Weighted averages through layers. Data flows in, gets multiplied by weights, passes through activation functions, and produces an output. Adjust the weights based on errors. Repeat billions of times. That is because neural networks don't "learn" the way humans learn — they optimize numerical parameters to minimize a loss function.
## Why This Matters
When I started building MyClaw — my AI agent project — I fell into the same trap. I used the word "agent" like it meant something autonomous and intelligent. It doesn't. And the moment I stopped believing the marketing and started reading the actual architecture — function calls, context windows, prompt chains — everything got simpler.
The failure rates tell the story. MIT found that purchased AI tools from specialized vendors succeed approximately 67% of the time, but internal builds succeed only one-third as often. That is because vendors build products, not "AI" — they solve specific problems with well-scoped functionality. The companies failing at 95% aren't failing at technology. They're failing at scoping, right??
As Andrew Ng said in December 2025: "The tricky thing about AI is that it is amazing and it is also highly limited." And Gary Marcus has been warning since 2018 that these systems are "brittle, greedy, opaque, and shallow" — and that "generalizations are never complete." The hype doesn't help. It hurts.
## The Counter-Argument: "But AI Really Is Powerful"
And yes — the obvious counter-argument is that AI genuinely works. It does. GPT-4 passes the bar exam. AlphaFold predicted protein structures that took decades of lab work. GitHub Copilot generates production code. Nobody serious is claiming the technology is fake.
But that's exactly the point. The technology is real — and powerful enough that it doesn't need inflated terminology to sell it. When you strip the marketing language and describe what these systems actually do, they're still impressive. An API call that routes context through a language model and takes an action?? That's a genuine engineering achievement. You don't need to call it "autonomous intelligence" to make it valuable. The inflation isn't protecting AI — it's undermining it by setting expectations no system can meet.
## The Jargon-to-Reality Decoder
In a nutshell — here's my framework for cutting through the noise:
| Marketing Term | What It Actually Is | One-Line Reality |
|----------------|-------------------|------------------|
| AI Agent | API call + context + goal | A loop with an LLM call |
| RAG | Search + paste into prompt | Document retrieval before generation |
| Reasoning | Next-token prediction | Statistical pattern matching |
| Autonomous AI | Automation + conditional logic | Decision tree with LLM at branch points |
| Neural Network | Weighted averages through layers | Parameter optimization via gradient descent |
I'm starting a series called "Cutting Through the Noise" where I'll decode one overhyped AI term per week. Not to dismiss AI — it's genuinely powerful. But to separate the mechanism from the marketing.
## Your Turn
What's the one AI term that confused you the most when you first encountered it?? And more importantly — when you learned what it actually does, did it change how you used it??
I'm betting most of the confusion isn't about complexity. It's about inflation.