← Latest papers
💻 computer science

Grounded Continuation: A Linear-Time Runtime Verifier for LLM Conversations

This paper introduces Grounded Continuation, a linear-time runtime verifier that constructs an explicit dependency graph using symbolic logic and LLM-classified update operations to detect and retract unsupported claims in long conversations, thereby outperforming retrieval-augmented baselines in accuracy while providing formal soundness guarantees.

Original authors: Qisong He, Yi Dong, Xiaowei Huang

Published 2026-05-15
📖 4 min read☕ Coffee break read

Original authors: Qisong He, Yi Dong, Xiaowei Huang

Original paper licensed under CC BY 4.0 (http://creativecommons.org/licenses/by/4.0/). This is an AI-generated explanation of the paper below. It is not written or endorsed by the authors. For technical accuracy, refer to the original paper. Read full disclaimer

Imagine you are sitting in a long, complex meeting with a very smart, but slightly forgetful, colleague (the AI). You discuss a problem, propose a solution, then later realize your initial idea was wrong. You correct the record, saying, "Actually, that first idea was flawed; let's try this new angle."

The problem this paper addresses is that the AI, while sounding very confident and fluent, often forgets that you already abandoned the first idea. It might suggest a plan that relies on that old, discarded idea, creating a "hallucination" that sounds plausible but is actually ungrounded in the reality of your conversation.

The authors call this a "Grounded Continuation" problem. To fix it, they built a "Runtime Verifier."

Here is how it works, using simple analogies:

1. The "Dependency Map" (The Whiteboard)

Instead of just reading the conversation like a book from start to finish every time the AI speaks, this system keeps a live, structured Dependency Map (like a dynamic flowchart or a whiteboard).

  • The Old Way: If you ask, "Why are we doing X?", the AI has to scan the entire history of the chat to find the answer. If the chat is 1,000 pages long, this is slow and prone to missing details.
  • The New Way: The system maintains a map that says: "Decision X depends on Evidence Y, which depends on Observation Z."
  • The Magic: When the AI suggests a new step, the verifier doesn't read the whole chat. It just walks along the lines of this map. If the line leads to a dead end (because the evidence was retracted earlier), the system immediately flags the AI's suggestion as "Ungrounded."

2. The "8 Moves" (The Game Rules)

To build this map, the system treats the conversation like a game with specific rules. Every time someone speaks, an "Interpreter" (a smaller AI) classifies the sentence into one of 8 specific moves, such as:

  • Observe: "I see a red light." (Adding a fact).
  • Hypothesize: "Maybe the light is broken." (Making a guess).
  • Undermine: "Wait, the light is actually green, not red." (Attacking a previous guess).
  • Resolve: "Okay, we agree the light is green." (Locking in a decision).

By turning messy human language into these clean "moves," the system can mathematically track which ideas are still valid and which have been knocked out of the game.

3. The "Retraction Ripple" (The Domino Effect)

This is the system's superpower. Imagine you knock over the first domino in a line (retracting a premise).

  • Without the Verifier: The AI might keep standing up the dominoes further down the line, not realizing the first one is gone.
  • With the Verifier: The moment a premise is retracted, the system instantly knows exactly which conclusions (the other dominoes) lose their support. It flags them immediately. This happens in microseconds, even in very long conversations.

4. The Results: Catching the "Fake" Advice

The authors tested this on several scenarios:

  • The "Stale Premise" Test: They created a scenario where an AI was asked to give advice based on a fact that had been proven wrong 10 turns ago.
    • Standard AI: Often gave the advice anyway, sounding confident but wrong.
    • The Verifier: Caught this 100% of the time. It said, "I cannot support this conclusion because the foundation was removed."
  • The "Long Memory" Test: On standard benchmarks for long conversations, the verifier performed as well as or better than systems that try to search through the entire chat history to find answers.

The Bottom Line

The paper claims that by building a structural map of the conversation (who said what, what supports what, and what has been taken back), we can create a "guardrail" for AI. This guardrail ensures that the AI's next sentence is actually connected to the truth of the conversation, preventing it from confidently arguing for ideas that the group has already decided to throw away.

It doesn't make the AI "smarter" in terms of knowledge; it makes it more honest about what it knows and what it has forgotten.

Drowning in papers in your field?

Get daily digests of the most novel papers matching your research keywords — with technical summaries, in your language.

Try Digest →