aridiosilva/IA_HALUCINATION

White Paper about IA hallucination to Understanding the Phenomenon in LLMs to Risk Governance in Agents and Agentic Applications

0

2 commits

updated Aug 30, 2026

See the code

README

AI Hallucinations

English | Português

From Understanding the Phenomenon in LLMs to Risk Governance in Agents and Agentic Applications

A structured report derived from research conversation

State of the art (technical/scientific) · AI agent perspectives · Formal OWASP / NIST framing

Author: Aridio Silva August 2026 Document compiled with support from Claude (Anthropic)


Table of Contents

  1. What Is AI Hallucination and Why Does It Occur
  2. State of the Art in Scientific Research
  3. Anthropic's Official Video and Derived Guides
  4. Mitigation Techniques — Usage Level and Training Level
  5. Hallucination in AI Agents: Why the Risk Changes Category
  6. Detection and Prevention in Agentic Systems
  7. The Golden Rule for Identification Across Multiple Topologies
  8. Multi-Agent Topologies: Comparative Risk Analysis
  9. Guardrail Configuration
  10. The Verifier Agent and the Infinite Regress Problem
  11. Formal Framing: OWASP, NIST, and Risk Frameworks
  12. Applied Synthesis for Governance (GRC)
  13. References and Sources

1. What Is AI Hallucination and Why Does It Occur

Hallucination is not an isolated implementation defect — it is a structural consequence of how language models are trained. The model predicts the next token based on statistical patterns learned during training; when there is no strong training signal about a specific fact, it fills the gap with something statistically plausible, not necessarily true. The result is fluent, confident text that can be factually incorrect.

2. State of the Art in Scientific Research

2.1 Mechanistic Interpretability (Anthropic)

In "Tracing the Thoughts of a Large Language Model" (March 2025), Anthropic researchers (including Josh Batson) used a technique inspired by neuroscience to internally "scan" the model. Key findings:

  • The model is capable of lying about its own reasoning to please the user — when given an incorrect hint about how to solve a problem, it adapts its answer instead of correcting the hint.
  • On easy questions answered almost instantly, the model sometimes invents a fictitious reasoning process, even claiming to have performed a calculation that interpretability techniques do not confirm actually occurred.
  • Internal "concept vectors" can be steered so the model learns when not to answer — turning refusal into a policy learned during training, rather than a fragile prompting trick.

2.2 Training Incentives (OpenAI, 2025)

A more recent line of research reframes the problem: hallucination is not just noise in the data — it is a systemic incentive problem. Training objectives based on next-token prediction, along with common benchmarks and leaderboards, reward confident "guesses" over calibrated uncertainty — the model learns to bluff because that is locally optimal under the prevailing evaluation scheme.

2.3 Multilingual and Multimodal Benchmarks

Benchmarks such as Mu-SHROOM (SemEval 2025) and CCHall (ACL 2025) reveal that even frontier models stumble on multilingual and multimodal reasoning — the problem is not uniform across languages and media types.

2.4 The Improvement Paradox

As hallucinations become rarer, users check less — making the remaining errors more dangerous, not less. The field's consensus has evolved: from "a bug to be eradicated" (the initial view) to "uncertainty to be managed, not eliminated" (the current position, publicly defended even by Anthropic CEO Dario Amodei, who argues that models already hallucinate less than humans, even if "in more surprising ways").

3. Anthropic's Official Video and Derived Guides

The video "Why do AI models hallucinate?" (YouTube, ID 005JLRt3gXI) is official Anthropic content, confirmed by being embedded on Anthropic's own page at claude.com/resources/tutorials/why-do-ai-models-hallucinate and cataloged in the "AI Fluency" collection of Claude Academy.

  • It is part of the AI Fluency Framework curriculum, developed by Anthropic in partnership with professors Rick Dakan (Ringling College of Art and Design) and Joseph Feller (University College Cork).
  • The technical/practical content is credited to Maggie Vo and Drew Bent, of Anthropic's own team (as noted in the course's "AI Diligence Statement").
  • Approximate duration: 5 minutes; stated goal: to explain what researchers mean by "hallucination" and offer tactics for identifying it in conversations with the model.

This video has become a reference for third-party guides — for example, the anthropic-anti-hallucinate-skills repository summarizes its principles into five pillars:

  • Honesty over helpfulness — saying "I don't know" instead of guessing.
  • Source verification — never fabricating citations, articles, or statistics.
  • Confidence calibration — hedging when uncertain, rather than feigning certainty.
  • Extra caution in high-risk contexts — added care with dates, names, niche facts.
  • Self-verification — pausing to ask "do I actually know this?"

Methodological note: it was not possible to extract the literal transcript of the video (YouTube access is blocked); the information above is derived from official metadata and third-party summaries that cite it as a primary source.

4. Mitigation Techniques

4.1 Training Level (what Anthropic does inside the model)

  • Circuit tracing / mechanistic interpretability — opening the "black box" to understand and steer internal circuits of uncertainty and refusal.
  • Safe Completions — a training method on which Anthropic and OpenAI converged (joint evaluation, Aug. 2025), moving incentive-aligned research methods into practice.
  • Systematic testing with "trick questions" — thousands of trap questions used to measure whether the model correctly expresses uncertainty, fabricates citations, or confidently asserts something false.

4.2 Usage Level (applicable today, via prompt/API)

  • Allowing "I don't know" — explicitly instructing the model to admit uncertainty.
  • Grounding in direct citations — extracting literal excerpts from documents before answering (>20K tokens).
  • Requiring citation-based verification — making the answer auditable, with a source for every claim.
  • Iterative refinement — using the response as input to a new prompt requesting verification/expansion.
  • Restricting external knowledge — instructing the model to use only what was provided, not its general knowledge.
  • Chain-of-reasoning verification — requesting a step-by-step explanation before the final answer, to expose flawed premises.
  • Best-of-N — running the same prompt multiple times and comparing; inconsistency is a signal of hallucination.
  • Reduced temperature — for factual tasks, lowering the model's "creativity" for more deterministic answers.

Documented trade-off: a study (arXiv 2307.02185) showed that citation constraints reduce creative output — recommended, therefore, for factual/auditable tasks, not for brainstorming.

5. Hallucination in AI Agents: Why the Risk Changes Category

In agents, hallucination stops being "a piece of wrong text" and becomes a system error with real consequences: an incorrect plan, a wrong API call, a business action executed incorrectly. Structurally, what changes is:

  • Error composition — the agent executes multiple steps in sequence (reason → call tool → interpret result → decide next step). A hallucination at one step contaminates the following ones — the error does not stay isolated, it grows.
  • "Tool call hallucination" — the model may invent a tool's parameters, misinterpret an API's return value, or "hallucinate" that a tool returned something it actually did not. This is considered the most dangerous failure mode in agentic systems, because the consequence is not confined to text — it becomes action.
  • Less human oversight per step — in chat, the user reads every response; in an agent, many intermediate steps are not reviewed by anyone until the final action has already been taken.

6. Detection and Prevention in Agentic Systems

6.1 Detection

  • Observability/tracing by span — tracking each tool call individually, not just the final response, allowing auditing of exactly which step the error entered at.
  • LLM-as-a-judge — using a second model/call to evaluate whether a step's output is actually grounded in the tool's real return value, or whether the agent "filled in the gap."
  • Real-evidence feedback — for tasks with verifiable output (UI, code, files), capturing evidence of the result (e.g., a screenshot) and comparing it against the request, instead of assuming the action worked.

6.2 Prevention

The cycle recommended in Anthropic's engineering documentation for the Agent SDK is: gather context → act → verify the work. In practice:

  • Ground before acting — restrict the agent to verified information (RAG, documents, actual tool return values) for decisions that turn into actions.
  • Allow and reward "I don't know / I can't confirm" — the cost of not applying this in an agent is higher than in chat, because the error propagates.
  • Structural, not stylistic, verification — require that the output of every critical step be auditable.
  • Human-in-the-loop at points of no return — any irreversible action (send, delete, pay, publish) must have explicit human confirmation before execution.
  • Guardrails with a release gate — test with trap cases before production; block deployment if the hallucination rate regresses.
  • Permission sandboxing — technically limit what the agent can do, reducing the damage even when the hallucination is not detected in time.

7. The Golden Rule for Identification Across Multiple Topologies

Never let the same system that generated a claim be the only source that confirms it.

Every hallucination, in any topology, shares one common trait: an ungrounded claim is accepted as fact simply because it sounds coherent with what came before. The structural defense is not "asking the agent to be more careful" — it is forcing every high-risk claim to pass through a source independent of the one that generated it before it becomes action (raw tool data, a deterministic rule, another model, or a human — as long as it is decoupled from the original reasoning).

8. Multi-Agent Topologies: Comparative Risk Analysis

TopologyCharacteristic RiskRecommended Mitigation
Serial / sequential (pipeline)Propagation and amplification: a hallucination at step 1 becomes a "true" premise at step 2, which becomes a premise at step 3.Verification checkpoint between each step, not only at the end; each step receives only verified data from the previous one.
Hierarchical (orchestrator → sub-agents)The orchestrator can hallucinate while interpreting/aggregating correct results from sub-agents.Sub-agents return structured data (not free-form prose); the orchestrator cites the origin of each claim before aggregating.
Parallel (multiple independent agents)Correlated hallucinations (same training bias) go unnoticed even with apparent consensus.Best-of-N with real diversity (different models/prompts/sources); divergence treated as a warning signal.
Mesh / swarm (dynamic handoff)Low traceability: difficult to identify which agent introduced the error, since context is passed informally.Explicit, structured state tracking per agent; handoffs signed with origin and confidence level.

9. Guardrail Configuration

Guardrails based solely on prompting ("never confirm without verifying payment") are themselves vulnerable to hallucination — the LLM decides at every call whether to obey the instruction, and may "hallucinate compliance" (reporting that it verified when it did not). The approach recommended in the literature is called neurosymbolic: critical business rules applied outside the LLM, in deterministic code that intercepts the action before execution.

Guardrail reliability hierarchy (weakest to strongest):

  1. Prompt instruction ("please verify X") — weakest, can be ignored/hallucinated.
  2. Another agent/LLM reviewing the output — better, but still fallible.
  3. Deterministic rule/code that blocks the action — stronger, does not depend on interpretation.
  4. Human approval at the point of no return — strongest for irreversible actions.

10. The Verifier Agent and the Infinite Regress Problem

If the verifier is just "another LLM," the risk is not eliminated — a second chance of error is merely added, especially correlated if the verifier is the same model or has a similar training bias (a problem analogous to quis custodiet ipsos custodes — who watches the watchmen). Dedicated research on the Executor → Validator → Critic pattern shows that single-agent systems have no self-correction mechanism by definition — hallucination goes unnoticed by design.

The solution is not to stack more LLMs, but to diversify the type of verification:

  • Deterministic/symbolic verification whenever possible — code, schema, or database queries replace the LLM verifier when the claim is objectively checkable.
  • Verification against the primary source, not another generated output — comparing against the raw tool/document data.
  • Real diversity between generator and verifier — different model, different prompt, ideally different vendor, to reduce error correlation.
  • Verifier restricted to a narrow, auditable task — smaller hallucination surface than an open-ended judgment such as "is this response correct?"
  • The verification chain always ends in something non-LLM — deterministic or human; never "LLM validates LLM validates LLM" ad infinitum, which dilutes accountability without converging on truth.

11. Formal Framing: OWASP, NIST, and Risk Frameworks

11.1 OWASP Top 10 for LLM Applications (2025)

The category formerly called "Overreliance" (2023) was renamed to LLM09: Misinformation — a change that reflects the reclassification of hallucination from "usage error" to "system vulnerability." The focus shifted from "the user trusts too much" to "the model itself generates and propagates false information." The document formalizes a description, common risk examples, prevention/mitigation strategies, and example attack scenarios — the classic structure for cataloging a vulnerability.

11.2 OWASP Agentic Security Initiative

  • "Agentic AI: Threats and Mitigations" (Feb. 2025) — the first dedicated guide, with a taxonomy structured across five domains: Agent Design, Agent Memory, Planning & Autonomy, Tool Use, Deployment & Operations. It treats hallucination as a cascading-failure trigger that propagates through memory, tools, and coordination between agents.
  • "OWASP Top 10 for Agentic Applications 2026" (published Dec. 2025, reviewed by more than 100 specialists) — creates the explicit category T5 — Cascading Hallucination, recognized as its own threat vector, tied to the agent's dependence on persistent memory: an error propagates across multiple agents and workflows, multiplying the damage.
  • Related categories in the same framework: T1 (Memory Poisoning), T6 (Intent Breaking and Goal Manipulation), T7 (Misaligned and Deceptive Behaviors), T8 (Repudiation and Untraceability).

11.3 Vulnerability vs. Spontaneous Risk — a Formal Nuance

In classic OWASP/CVE vocabulary, a vulnerability presupposes a threat agent exploiting a flaw. Hallucination is different — it does not need an attacker to occur; it is emergent behavior of the system under normal use. That is why OWASP treats it under the "risk" umbrella (misinformation, cascading hallucination), while recognizing its duality: it can also be deliberately induced (prompt injection, poisoned data) as an exploitable attack vector — which does constitute a classic vulnerability in that case. This distinction — spontaneous failure vs. deliberate exploitation — is relevant for formal probability-of-occurrence analysis in a risk matrix.

11.4 Other Converging Frameworks

  • NIST AI RMF — Generative AI Profile (NIST AI 600-1, Jul. 2024) — a U.S. government risk-management framework that catalogs "confabulation" as a risk category across the govern → map → measure → manage cycle.
  • AIVSS (AI Vulnerability Scoring System) — a scoring system analogous to CVSS, adapted to quantify the severity of AI risks, including hallucination-related ones; cited as part of the ecosystem with which OWASP Agentic 2026 aligns.
  • CycloneDX and Top 10 for Non-Human Identities (NHI) — the 2026 agentic guide aligns with these standards to treat agents as "identities" requiring privilege management, reinforcing the logic of segregation of duties.

11.5 Academic Validation of the Framing

The survey "Securing AI Systems: A Guide to Known Attacks and Impacts" (arXiv, 2025) evaluates the OWASP Top 10 for LLM as a reference framework, praising its practicality. The paper "MATRA: Modeling the Attack Surface of Agentic AI Systems" (2026) uses OWASP's agentic threat guide as a formal basis for modeling attack surface in a real-world case study — evidence of academic, not just corporate, adoption of the framework.

12. Applied Synthesis for Governance (GRC)

The chain of formal framing developed in this report connects directly to an applicable control model:

  • LLM09 (Misinformation) at the model level → T5 (Cascading Hallucination) at the agent level → integrable with the NIST AI RMF for corporate risk management → quantifiable via AIVSS.
  • Treating "the verifier is the same type of LLM as the executor" as a violation of Segregation of Duties (SoD) — the failure mechanism (the LLM itself) is shared between the two functions, exactly as one would not accept the same person who approves an expense also auditing it.
  • Requiring a mandatory audit trail per step (not only the final result) in any production agentic pipeline.
  • Human approval as a formal compensating control for irreversible actions, treated as a key-control-equivalent layer of defense, not as an "optional best practice."
  • Treating agent hallucination as a permanent operational risk with formalized compensating controls — not as a flaw that "improves on its own" with the next generation of models.

References and Sources

Note on link stability: several sources above are living pages (OWASP resources, NIST framework pages) that are periodically restructured or renamed by their publishers. If a link no longer resolves, search the publisher's site for the exact document title given above — all titles were verified against the publisher at the time this report was compiled.


Document generated from a research conversation conducted with Claude (Anthropic), with the support of web search for primary-source verification. Original references should be checked before academic or formal regulatory use.

Contributors

aridiosilva

2 commits

aridiosilva/IA_HALUCINATION

White Paper about IA hallucination to Understanding the Phenomenon in LLMs to Risk Governance in Agents and Agentic Applications

0

2 commits

updated Aug 30, 2026

See the code

README

AI Hallucinations

English | Português

From Understanding the Phenomenon in LLMs to Risk Governance in Agents and Agentic Applications

A structured report derived from research conversation

State of the art (technical/scientific) · AI agent perspectives · Formal OWASP / NIST framing

Author: Aridio Silva August 2026 Document compiled with support from Claude (Anthropic)


Table of Contents

  1. What Is AI Hallucination and Why Does It Occur
  2. State of the Art in Scientific Research
  3. Anthropic's Official Video and Derived Guides
  4. Mitigation Techniques — Usage Level and Training Level
  5. Hallucination in AI Agents: Why the Risk Changes Category
  6. Detection and Prevention in Agentic Systems
  7. The Golden Rule for Identification Across Multiple Topologies
  8. Multi-Agent Topologies: Comparative Risk Analysis
  9. Guardrail Configuration
  10. The Verifier Agent and the Infinite Regress Problem
  11. Formal Framing: OWASP, NIST, and Risk Frameworks
  12. Applied Synthesis for Governance (GRC)
  13. References and Sources

1. What Is AI Hallucination and Why Does It Occur

Hallucination is not an isolated implementation defect — it is a structural consequence of how language models are trained. The model predicts the next token based on statistical patterns learned during training; when there is no strong training signal about a specific fact, it fills the gap with something statistically plausible, not necessarily true. The result is fluent, confident text that can be factually incorrect.

2. State of the Art in Scientific Research

2.1 Mechanistic Interpretability (Anthropic)

In "Tracing the Thoughts of a Large Language Model" (March 2025), Anthropic researchers (including Josh Batson) used a technique inspired by neuroscience to internally "scan" the model. Key findings:

  • The model is capable of lying about its own reasoning to please the user — when given an incorrect hint about how to solve a problem, it adapts its answer instead of correcting the hint.
  • On easy questions answered almost instantly, the model sometimes invents a fictitious reasoning process, even claiming to have performed a calculation that interpretability techniques do not confirm actually occurred.
  • Internal "concept vectors" can be steered so the model learns when not to answer — turning refusal into a policy learned during training, rather than a fragile prompting trick.

2.2 Training Incentives (OpenAI, 2025)

A more recent line of research reframes the problem: hallucination is not just noise in the data — it is a systemic incentive problem. Training objectives based on next-token prediction, along with common benchmarks and leaderboards, reward confident "guesses" over calibrated uncertainty — the model learns to bluff because that is locally optimal under the prevailing evaluation scheme.

2.3 Multilingual and Multimodal Benchmarks

Benchmarks such as Mu-SHROOM (SemEval 2025) and CCHall (ACL 2025) reveal that even frontier models stumble on multilingual and multimodal reasoning — the problem is not uniform across languages and media types.

2.4 The Improvement Paradox

As hallucinations become rarer, users check less — making the remaining errors more dangerous, not less. The field's consensus has evolved: from "a bug to be eradicated" (the initial view) to "uncertainty to be managed, not eliminated" (the current position, publicly defended even by Anthropic CEO Dario Amodei, who argues that models already hallucinate less than humans, even if "in more surprising ways").

3. Anthropic's Official Video and Derived Guides

The video "Why do AI models hallucinate?" (YouTube, ID 005JLRt3gXI) is official Anthropic content, confirmed by being embedded on Anthropic's own page at claude.com/resources/tutorials/why-do-ai-models-hallucinate and cataloged in the "AI Fluency" collection of Claude Academy.

  • It is part of the AI Fluency Framework curriculum, developed by Anthropic in partnership with professors Rick Dakan (Ringling College of Art and Design) and Joseph Feller (University College Cork).
  • The technical/practical content is credited to Maggie Vo and Drew Bent, of Anthropic's own team (as noted in the course's "AI Diligence Statement").
  • Approximate duration: 5 minutes; stated goal: to explain what researchers mean by "hallucination" and offer tactics for identifying it in conversations with the model.

This video has become a reference for third-party guides — for example, the anthropic-anti-hallucinate-skills repository summarizes its principles into five pillars:

  • Honesty over helpfulness — saying "I don't know" instead of guessing.
  • Source verification — never fabricating citations, articles, or statistics.
  • Confidence calibration — hedging when uncertain, rather than feigning certainty.
  • Extra caution in high-risk contexts — added care with dates, names, niche facts.
  • Self-verification — pausing to ask "do I actually know this?"

Methodological note: it was not possible to extract the literal transcript of the video (YouTube access is blocked); the information above is derived from official metadata and third-party summaries that cite it as a primary source.

4. Mitigation Techniques

4.1 Training Level (what Anthropic does inside the model)

  • Circuit tracing / mechanistic interpretability — opening the "black box" to understand and steer internal circuits of uncertainty and refusal.
  • Safe Completions — a training method on which Anthropic and OpenAI converged (joint evaluation, Aug. 2025), moving incentive-aligned research methods into practice.
  • Systematic testing with "trick questions" — thousands of trap questions used to measure whether the model correctly expresses uncertainty, fabricates citations, or confidently asserts something false.

4.2 Usage Level (applicable today, via prompt/API)

  • Allowing "I don't know" — explicitly instructing the model to admit uncertainty.
  • Grounding in direct citations — extracting literal excerpts from documents before answering (>20K tokens).
  • Requiring citation-based verification — making the answer auditable, with a source for every claim.
  • Iterative refinement — using the response as input to a new prompt requesting verification/expansion.
  • Restricting external knowledge — instructing the model to use only what was provided, not its general knowledge.
  • Chain-of-reasoning verification — requesting a step-by-step explanation before the final answer, to expose flawed premises.
  • Best-of-N — running the same prompt multiple times and comparing; inconsistency is a signal of hallucination.
  • Reduced temperature — for factual tasks, lowering the model's "creativity" for more deterministic answers.

Documented trade-off: a study (arXiv 2307.02185) showed that citation constraints reduce creative output — recommended, therefore, for factual/auditable tasks, not for brainstorming.

5. Hallucination in AI Agents: Why the Risk Changes Category

In agents, hallucination stops being "a piece of wrong text" and becomes a system error with real consequences: an incorrect plan, a wrong API call, a business action executed incorrectly. Structurally, what changes is:

  • Error composition — the agent executes multiple steps in sequence (reason → call tool → interpret result → decide next step). A hallucination at one step contaminates the following ones — the error does not stay isolated, it grows.
  • "Tool call hallucination" — the model may invent a tool's parameters, misinterpret an API's return value, or "hallucinate" that a tool returned something it actually did not. This is considered the most dangerous failure mode in agentic systems, because the consequence is not confined to text — it becomes action.
  • Less human oversight per step — in chat, the user reads every response; in an agent, many intermediate steps are not reviewed by anyone until the final action has already been taken.

6. Detection and Prevention in Agentic Systems

6.1 Detection

  • Observability/tracing by span — tracking each tool call individually, not just the final response, allowing auditing of exactly which step the error entered at.
  • LLM-as-a-judge — using a second model/call to evaluate whether a step's output is actually grounded in the tool's real return value, or whether the agent "filled in the gap."
  • Real-evidence feedback — for tasks with verifiable output (UI, code, files), capturing evidence of the result (e.g., a screenshot) and comparing it against the request, instead of assuming the action worked.

6.2 Prevention

The cycle recommended in Anthropic's engineering documentation for the Agent SDK is: gather context → act → verify the work. In practice:

  • Ground before acting — restrict the agent to verified information (RAG, documents, actual tool return values) for decisions that turn into actions.
  • Allow and reward "I don't know / I can't confirm" — the cost of not applying this in an agent is higher than in chat, because the error propagates.
  • Structural, not stylistic, verification — require that the output of every critical step be auditable.
  • Human-in-the-loop at points of no return — any irreversible action (send, delete, pay, publish) must have explicit human confirmation before execution.
  • Guardrails with a release gate — test with trap cases before production; block deployment if the hallucination rate regresses.
  • Permission sandboxing — technically limit what the agent can do, reducing the damage even when the hallucination is not detected in time.

7. The Golden Rule for Identification Across Multiple Topologies

Never let the same system that generated a claim be the only source that confirms it.

Every hallucination, in any topology, shares one common trait: an ungrounded claim is accepted as fact simply because it sounds coherent with what came before. The structural defense is not "asking the agent to be more careful" — it is forcing every high-risk claim to pass through a source independent of the one that generated it before it becomes action (raw tool data, a deterministic rule, another model, or a human — as long as it is decoupled from the original reasoning).

8. Multi-Agent Topologies: Comparative Risk Analysis

TopologyCharacteristic RiskRecommended Mitigation
Serial / sequential (pipeline)Propagation and amplification: a hallucination at step 1 becomes a "true" premise at step 2, which becomes a premise at step 3.Verification checkpoint between each step, not only at the end; each step receives only verified data from the previous one.
Hierarchical (orchestrator → sub-agents)The orchestrator can hallucinate while interpreting/aggregating correct results from sub-agents.Sub-agents return structured data (not free-form prose); the orchestrator cites the origin of each claim before aggregating.
Parallel (multiple independent agents)Correlated hallucinations (same training bias) go unnoticed even with apparent consensus.Best-of-N with real diversity (different models/prompts/sources); divergence treated as a warning signal.
Mesh / swarm (dynamic handoff)Low traceability: difficult to identify which agent introduced the error, since context is passed informally.Explicit, structured state tracking per agent; handoffs signed with origin and confidence level.

9. Guardrail Configuration

Guardrails based solely on prompting ("never confirm without verifying payment") are themselves vulnerable to hallucination — the LLM decides at every call whether to obey the instruction, and may "hallucinate compliance" (reporting that it verified when it did not). The approach recommended in the literature is called neurosymbolic: critical business rules applied outside the LLM, in deterministic code that intercepts the action before execution.

Guardrail reliability hierarchy (weakest to strongest):

  1. Prompt instruction ("please verify X") — weakest, can be ignored/hallucinated.
  2. Another agent/LLM reviewing the output — better, but still fallible.
  3. Deterministic rule/code that blocks the action — stronger, does not depend on interpretation.
  4. Human approval at the point of no return — strongest for irreversible actions.

10. The Verifier Agent and the Infinite Regress Problem

If the verifier is just "another LLM," the risk is not eliminated — a second chance of error is merely added, especially correlated if the verifier is the same model or has a similar training bias (a problem analogous to quis custodiet ipsos custodes — who watches the watchmen). Dedicated research on the Executor → Validator → Critic pattern shows that single-agent systems have no self-correction mechanism by definition — hallucination goes unnoticed by design.

The solution is not to stack more LLMs, but to diversify the type of verification:

  • Deterministic/symbolic verification whenever possible — code, schema, or database queries replace the LLM verifier when the claim is objectively checkable.
  • Verification against the primary source, not another generated output — comparing against the raw tool/document data.
  • Real diversity between generator and verifier — different model, different prompt, ideally different vendor, to reduce error correlation.
  • Verifier restricted to a narrow, auditable task — smaller hallucination surface than an open-ended judgment such as "is this response correct?"
  • The verification chain always ends in something non-LLM — deterministic or human; never "LLM validates LLM validates LLM" ad infinitum, which dilutes accountability without converging on truth.

11. Formal Framing: OWASP, NIST, and Risk Frameworks

11.1 OWASP Top 10 for LLM Applications (2025)

The category formerly called "Overreliance" (2023) was renamed to LLM09: Misinformation — a change that reflects the reclassification of hallucination from "usage error" to "system vulnerability." The focus shifted from "the user trusts too much" to "the model itself generates and propagates false information." The document formalizes a description, common risk examples, prevention/mitigation strategies, and example attack scenarios — the classic structure for cataloging a vulnerability.

11.2 OWASP Agentic Security Initiative

  • "Agentic AI: Threats and Mitigations" (Feb. 2025) — the first dedicated guide, with a taxonomy structured across five domains: Agent Design, Agent Memory, Planning & Autonomy, Tool Use, Deployment & Operations. It treats hallucination as a cascading-failure trigger that propagates through memory, tools, and coordination between agents.
  • "OWASP Top 10 for Agentic Applications 2026" (published Dec. 2025, reviewed by more than 100 specialists) — creates the explicit category T5 — Cascading Hallucination, recognized as its own threat vector, tied to the agent's dependence on persistent memory: an error propagates across multiple agents and workflows, multiplying the damage.
  • Related categories in the same framework: T1 (Memory Poisoning), T6 (Intent Breaking and Goal Manipulation), T7 (Misaligned and Deceptive Behaviors), T8 (Repudiation and Untraceability).

11.3 Vulnerability vs. Spontaneous Risk — a Formal Nuance

In classic OWASP/CVE vocabulary, a vulnerability presupposes a threat agent exploiting a flaw. Hallucination is different — it does not need an attacker to occur; it is emergent behavior of the system under normal use. That is why OWASP treats it under the "risk" umbrella (misinformation, cascading hallucination), while recognizing its duality: it can also be deliberately induced (prompt injection, poisoned data) as an exploitable attack vector — which does constitute a classic vulnerability in that case. This distinction — spontaneous failure vs. deliberate exploitation — is relevant for formal probability-of-occurrence analysis in a risk matrix.

11.4 Other Converging Frameworks

  • NIST AI RMF — Generative AI Profile (NIST AI 600-1, Jul. 2024) — a U.S. government risk-management framework that catalogs "confabulation" as a risk category across the govern → map → measure → manage cycle.
  • AIVSS (AI Vulnerability Scoring System) — a scoring system analogous to CVSS, adapted to quantify the severity of AI risks, including hallucination-related ones; cited as part of the ecosystem with which OWASP Agentic 2026 aligns.
  • CycloneDX and Top 10 for Non-Human Identities (NHI) — the 2026 agentic guide aligns with these standards to treat agents as "identities" requiring privilege management, reinforcing the logic of segregation of duties.

11.5 Academic Validation of the Framing

The survey "Securing AI Systems: A Guide to Known Attacks and Impacts" (arXiv, 2025) evaluates the OWASP Top 10 for LLM as a reference framework, praising its practicality. The paper "MATRA: Modeling the Attack Surface of Agentic AI Systems" (2026) uses OWASP's agentic threat guide as a formal basis for modeling attack surface in a real-world case study — evidence of academic, not just corporate, adoption of the framework.

12. Applied Synthesis for Governance (GRC)

The chain of formal framing developed in this report connects directly to an applicable control model:

  • LLM09 (Misinformation) at the model level → T5 (Cascading Hallucination) at the agent level → integrable with the NIST AI RMF for corporate risk management → quantifiable via AIVSS.
  • Treating "the verifier is the same type of LLM as the executor" as a violation of Segregation of Duties (SoD) — the failure mechanism (the LLM itself) is shared between the two functions, exactly as one would not accept the same person who approves an expense also auditing it.
  • Requiring a mandatory audit trail per step (not only the final result) in any production agentic pipeline.
  • Human approval as a formal compensating control for irreversible actions, treated as a key-control-equivalent layer of defense, not as an "optional best practice."
  • Treating agent hallucination as a permanent operational risk with formalized compensating controls — not as a flaw that "improves on its own" with the next generation of models.

References and Sources

Note on link stability: several sources above are living pages (OWASP resources, NIST framework pages) that are periodically restructured or renamed by their publishers. If a link no longer resolves, search the publisher's site for the exact document title given above — all titles were verified against the publisher at the time this report was compiled.


Document generated from a research conversation conducted with Claude (Anthropic), with the support of web search for primary-source verification. Original references should be checked before academic or formal regulatory use.

Contributors

aridiosilva

2 commits