# Ed Zitron's Take on the AI Bubble: Risk Analysis

> Source: <https://promptcube3.com/en/threads/3018/>
> Published: 2026-07-25 02:45:44+00:00

# Ed Zitron's Take on the AI Bubble: Risk Analysis

## The Infrastructure Gap

The core of the problem is the massive investment in GPU clusters and data centers that isn't being offset by scalable, high-margin software products. Most "AI features" added to existing SaaS tools are essentially thin wrappers around an API call. When the cost of inference remains high and the value add is marginal—like summarizing a meeting that could have been an email—the business model collapses.

For those of us actually building, this manifests as a "reliability ceiling." You can get a demo to work 80% of the time, but getting it to 99.9% for an enterprise deployment is where the bubble starts to leak.

## Practical Reality: The "Agent" Struggle

While the marketing pushes "AI Agents" that can handle entire workflows, the real-world implementation is far messier. If you try to deploy a complex agentic workflow using a framework like LangGraph or CrewAI, you quickly realize that the token spend and latency make many "automated" tasks more expensive than human labor.

Take a typical autonomous research loop. If the agent loops five times to verify a fact:

**Input tokens:** 5k per loop (context window growth)**Output tokens:** 500 per loop**Total cost:** High**Success rate:** Still subject to the "stochastic parrot" effect where the agent confidently hallucinates a source in the fourth loop.

## My Strategy for Avoiding the Bubble

To avoid getting swept up in the hype, I've shifted my AI workflow from "let the AI do it" to "AI-assisted precision." Instead of relying on autonomous agents, I use a strictly controlled prompt engineering approach with a human-in-the-loop validation step.

If you are building a tool today, focus on deterministic outputs. Here is a basic example of how I constrain LLM outputs to JSON to ensure my downstream code doesn't crash—a small but necessary step to move away from the "magic" and toward actual engineering:

```
{
  "system_prompt": "You are a data extraction engine. You must output ONLY valid JSON. Do not include conversational filler. If data is missing, use null.",
  "schema": {
    "entity": "string",
    "confidence_score": "float",
    "source_citation": "string"
  },
  "temperature": 0.0
}
```

Setting the `temperature`

to 0.0 is non-negotiable for production tasks; otherwise, you're just gambling with your UI's stability.

## Where the Real Value Sits

The risk is high, but the utility isn't zero. The value isn't in the "AI" as a product, but in the efficiency gains of the developer. Using tools like Cursor or [Claude](/en/tags/claude/) Code to handle boilerplate or refactor legacy code provides an immediate, measurable productivity boost that doesn't rely on a speculative bubble.

The difference is clear: an AI that writes a function for a developer is a tool; an AI that claims to replace the developer is a marketing pitch. The former is a productivity gain; the latter is where the bubble risk resides.

[Next Client-side HEIC Conversion: A WASM Deep Dive →](/en/threads/3005/)
