The Coherence Trap: Why LLMs Feel Smart (But Aren't Thinking)

Travis Frisinger20:47 · Jun 2025 · 2,415 views
Thumbnail for The Coherence Trap: Why LLMs Feel Smart (But Aren't Thinking) Watch on YouTube
TL;DR
  1. 1

    LLMs feel intelligent because they reconstruct coherent patterns from distributed representations, even though they have no intent, awareness, or understanding.

  2. 2

    Hallucinations happen when a model completes a compelling pattern without enough factual context, so they are a consequence of coherence rather than a simple defect.

  3. 3

    Reliable LLM systems should use the frame, generate, judge, iterate loop, with retrieval, modular chains, and repeated context checks.

Summary

Travis Frisinger argues that LLMs feel intelligent because their outputs are coherent, not because the models think. He describes coherence as a system property with relevance, consistency, stability, and emergence. Distributed representations and superposition let a model combine partial patterns into a new response at inference time. Prompts act like force vectors that steer this process through latent space. This explains why a model can produce useful code, writing, music, or medical patterns while still hallucinating. Frisinger treats hallucinations as predictable pattern completion when the system lacks factual anchors. His engineering advice is to build for coherence: frame the problem, generate outputs, judge them, validate where needed, and iterate. Retrieval provides contextual gravity, while modular chains reduce the damage from lost context. The talk gives engineers a practical mental model for designing prompts, agents, and evaluations without treating fluent output as evidence of thought.

Key ideas
01:05

GPT-4 made fluent output feel like understanding

Frisinger contrasts his first experience with GPT-3.5, whose fluency broke at edge cases and changed with small prompt variations, with GPT-4. Its words seemed to align effortlessly on the screen. He says this created a space between brittle chatbots and artificial general intelligence. Microsoft Research's paper

02:50

Collaborative iteration produced useful work without requiring intelligence

Frisinger describes early chat-assisted programming, which later became known as vibe coding. He used ChatGPT to build usable code, created Webcat to scrape web pages for a model without internet access, and worked with AI to build the AIBuddy.software blog. He also made a cat-metal concept album with AI-generated lyrics, music, and images. These projects convinced him that models could create coherent, useful results across different forms of work.

09:22

Reliable interaction follows a frame, generate, judge, iterate loop

Frisinger's AI decision loop starts by framing the problem and its context. The model then generates one or more outputs. The user must judge their quality and fit instead of accepting them immediately, and may validate them against external requirements. The process then iterates. His shorter version is

11:36

Coherence is a system property rather than a cognitive one

Frisinger defines coherence through relevance, consistency, stability, and emergence. Outputs should stay connected to the conversation, preserve tone and terminology across turns, and remain stable when questioned or challenged. He calls coherence the infrastructure that thought navigates, rather than thought itself. This distinction explains how a model can appear to understand without having intent or awareness.

14:05

Superposition lets models construct meaning from overlapping patterns

Frisinger uses Anthropic's research on feature superposition and concept circuits to explain why concepts are not stored in single neurons. Representations for feline, pet, and animal can overlap with representations for canine and pet. As context accumulates, the model separates relevant meaning and forms a coherent output. Meaning is therefore constructed on demand from distributed possibilities.

15:00

Prompts steer generation through latent space

Frisinger describes a prompt as a force vector in a high-dimensional latent space. Context activates specialized patterns, such as storytelling, freedom, or household pets, and the model combines them into a response. A prompt about a detailed bird story can merge the pattern for birds with the pattern for short storytelling. The result comes from the interaction of activated subnetworks.

16:53

Hallucinations are coherent pattern completion without factual anchors

Frisinger says hallucinations can feel correct because the model reconstructs a compelling essence instead of checking facts. If the prompt leaves gaps, the model fills them according to its internal patterns. Retrieval-augmented generation adds factual anchors and contextual gravity, giving the model more structure to follow. In this view, hallucination is an emergent system behavior rather than a problem that can be fully removed.

19:09

Systems should be designed for coherence, with context checks at every stage

Frisinger divides an LLM system into the latent space, an execution layer containing tools, APIs, and retrieval, and a conversational interface that carries human intent. Prompts should be treated as system components. Long reasoning chains can lose coherence, so he recommends modular chains with reinforced context. Breaks in tone, structure, or flow can reveal where retrieval, chunking, or another tool needs adjustment.

"Meaning isn't retrieved, it's constructed on demand from distributed sparks of possibility."14:48
Who should watch
  • You are building an LLM feature and need a model for why fluent responses can still be wrong.
  • Your agent or prompt workflow relies on long chains and loses context, tone, or structure along the way.
  • You are evaluating model reasoning and want to separate useful coherence from evidence of understanding.