Home / Writing / Demo vs Production

Why AI systems pass the demo and die in production

Most AI products don't fail because the model is weak or the pipeline is buggy. They fail because the architecture assumed a clean world — complete docs, linked alerts, tidy ownership — that never existed outside the slide deck. Call it the messy playground problem.

Shubham Pagare Aug 8, 2026 7 min read AI Systems · Architecture

You've seen the pattern. A team ships an impressive AI assistant. The demo is sharp. Stakeholders nod. Then it hits the real org — and confidence collapses into noise.

People blame the model. Or the prompt. Or “we need more fine-tuning.” Sometimes those things matter. Often they don't.

The deeper miss is simpler: the system was designed for an idealistic playground. The architecture treated clean data, complete links, and current documentation as given. In production, those are aspirations — not inputs.

The real product

You're not building “answer questions from knowledge.” You're building “answer questions when half the knowledge is missing, stale, or contradictory — and say so.” Those are different systems.

Figure 1
The confidently useless gap

Demos optimize for sounding right. Production rewards being useful when evidence is thin — and those metrics diverge fast.

Demo world

Confidence92%
Usefulness88%

Lived world

Confidence86%
Usefulness28%

Illustrative — not a benchmark. The point is the shape: confidence stays high while usefulness collapses.

What idealistic design quietly assumes

Ideal architectures lean on a fantasy ontology:

Then the system reasons over that graph as if it were reliable infrastructure. When the graph is fiction, the model isn't “hallucinating” in isolation — it's completing a story on top of missing foundations.

Where this shows up

A few familiar failure modes — not an exhaustive list, just patterns that keep repeating.

Incident / on-call assistants

The demo assumes a clean service map, correlated traces, and runbooks tied to alerts. The assistant confidently names root cause and points to the fix.

The real playground: ownership is stale, half the alerts have no runbook, traces are blind for a critical hop, and the last three incident writeups say “restarted pod, recovered.” Tribal knowledge lives in Slack. The assistant doesn't just get less accurate — it becomes confidently useless.

Enterprise knowledge bots (RAG over Confluence / SharePoint)

The pitch: “ask anything about how we work.” The assumption: the corpus is complete, current, and authoritative.

The real playground: three conflicting pages for the same process, last updated in 2022, with the real procedure living in a side channel nobody indexed. Retrieval finds text. It does not find truth. Users learn to distrust the bot after two wrong answers that sounded right.

AI code reviewers

Ideal design assumes PRs come with clear intent, linked tickets, and test plans. The reviewer can reason about blast radius and style.

The real playground: “fix stuff,” no ticket, partial tests, and a change that touches a package nobody owns on paper. A reviewer trained on tidy open-source norms will nitpick formatting while missing the actual risk — because the signals it needs were never in the PR.

AssumptionDemo worldLived world
OwnershipClear, currentShared, stale, tribal
Docs / runbooksLinked and completeOrphaned or contradictory
ObservabilityFull correlationBlind spots by default
HistoryLabeled ground truthVague writeups, Slack lore
Failure mode“Edge case”The normal case
Figure 2
How often the assumption holds

Same checklist as the table — scored as rough reliability of each input in a typical enterprise environment.

Demo sampleLived org
Ownership
Demo
95%
Lived
30%
Docs / runbooks
Demo
90%
Lived
25%
Observability
Demo
88%
Lived
35%
Labeled history
Demo
85%
Lived
18%
PR intent clarity
Demo
80%
Lived
22%

Illustrative scores from the pattern in the essay — use them as a diagnostic lens, not as a dataset.

Why demos keep lying to us

Teams optimize for the happy path:

  1. Pick a clean sample (well-linked tickets, tidy wiki, instrumented service)
  2. Build retrieval and reasoning on that graph
  3. Show impressive accuracy
  4. Ship into the real backlog / on-call / knowledge base
  5. Watch coverage collapse — because the graph was the dependency, and the graph was fiction

This is not an ML problem first. It's a systems + environment modeling problem. Implementation can be excellent and the product still fails, because the product was solving a different world.

Figure 3
Coverage collapse after the demo

You didn't lose model quality. You lost the clean graph the demo depended on.

Clean sample selected~95% coverage
Retrieval + reasoning built~90% on eval
Stakeholder demoLooks solved
Ship into real org~35% useful
Trust erodesUsers stop asking

The dependency was the graph. When the graph was fiction, coverage had nowhere to stand.

Architect's question

Before you design the agent, ask: what percentage of critical inputs are actually present, current, and trustworthy? If the honest answer is “maybe 20%,” your architecture must start from sparse evidence — not from the ontology you wish you had.

Figure 4
Design for the 20%, not the catalog

If only a fifth of critical inputs are present, current, and trustworthy — that fraction is your real architecture constraint.

Sparse evidence is the default

Build the unknown path first: observed vs inferred vs unknown, confidence separated from suggestion, and a degrade mode that ships with v1 — not as Phase 2.

~20% usable inputs~80% missing / stale / tribal

Design for the playground you have

Durable AI systems treat mess as a first-class constraint:

Inventory
Measure reality, not aspiration. Link completeness, doc freshness, ownership coverage, blind-spot rate. Architecture follows the numbers.
Unknown
Missing data is an input. Explicit states: observed, inferred, unknown. Never pretend unknown is known.
Signals
Prefer recoverable evidence. Diffs, co-change history, live telemetry, ownership heuristics — things that exist when the wiki doesn't.
Certainty
Separate suggestion from confidence. “High confidence because X/Y” vs “low confidence — missing links; verify these three places.”
Degrade
Design the fallback path. Ideal path and sparse path are both products. “Phase 2” is how demos become production failures.
Eval
Test on dirty slices. If your eval set only contains clean, linked, well-written cases, you're validating a fantasy.

The principle

Don't build for the catalogued world. Build for the lived one.

The skill that separates demo architecture from production architecture isn't prompt craft. It's understanding the playground before designing the player — what evidence is actually there, what is tribal, what is stale, and where the system must refuse to sound sure.


That's the lens I keep coming back to when AI systems look perfect on paper and then fail in the wild. If you're hitting the same wall, I'd like to hear which assumption broke first for you.