Research Papers 论文研究 4d ago Updated 3d ago 更新于 3天前 48

The Hallucination Snowball: Modeling Error Propagation as State Transitions in Multi-Agent LLM Pipelines 幻觉雪球:在多智能体LLM流水线中将误差传播建模为状态转换

Hallucinations in sequential multi-agent LLM pipelines do not merely persist—they transform across stages, becoming increasingly undetectable as raw facts evolve into derived computations, narrative prose, and finally editorially approved conclusions The authors formalize this as a first-order Markov process with four states (Raw Fact → Derived → Narrative → Invisible) and empirically measured escape probabilities of 24.6%, 48.3%, and 89.3% at each boundary On FinanceBench with 346 injected hall 提出"幻觉雪球效应"模型,揭示多智能体LLM流水线中幻觉随阶段传递会不可逆地变形和扩散 建立一阶马尔可夫过程模型,量化四个状态(原始事实→推导→叙述→不可见)间的逃逸概率(24.6%、48.3%、89.3%) 实验显示gpt-4o检测率从Stage 1的72.0%降至Stage 4的50.9%,23.7%幻觉最终完全未被检测 边界门控验证(使用RAG工具)将幻觉存活率从58.4%降至16.2%,而仅在流水线末端检查仅提升2.3个百分点 最优验证资源分配策略应在S1→S2阶段投入,此时75.4%的幻觉仍可被捕获

68
Hot 热度
72
Quality 质量
65
Impact 影响力

Analysis 深度分析

TL;DR

  • Hallucinations in sequential multi-agent LLM pipelines do not merely persist—they transform across stages, becoming increasingly undetectable as raw facts evolve into derived computations, narrative prose, and finally editorially approved conclusions
  • The authors formalize this as a first-order Markov process with four states (Raw Fact → Derived → Narrative → Invisible) and empirically measured escape probabilities of 24.6%, 48.3%, and 89.3% at each boundary
  • On FinanceBench with 346 injected hallucinations in a 4-agent pipeline, gpt-4o detection drops from 72.0% at Stage 1 to 50.9% at Stage 4, with 23.7% surviving completely undetected
  • Boundary gates using identical RAG verification tools reduce hallucination survival from 58.4% to 16.2% versus end-of-pipeline checking, with a large effect size (Cohen's h = -0.911, p < 0.000001)
  • Optimal verification resource allocation should prioritize early boundaries (S1→S2), where 75.4% of hallucinations remain catchable, rather than late stages where 89.3% have already escaped detection

Why It Matters

This research exposes a critical structural flaw in how multi-agent LLM systems are commonly designed—chaining specialized agents without verification at handoffs creates compounding error propagation that no amount of end-of-pipeline checking can adequately address. For AI practitioners building production multi-agent systems, the findings demonstrate that verification timing is dramatically more impactful than verification presence, fundamentally reshaping how pipeline architecture and quality assurance should be approached.

Technical Details

  • The hallucination snowball effect is modeled as a first-order Markov process over four states: Raw Fact → Derived → Narrative → Invisible, with empirically measured per-boundary escape probabilities of 24.6% (Stage 1→2), 48.3% (Stage 2→3), and 89.3% (Stage 3→4)
  • Evaluation was conducted on FinanceBench using a 4-agent financial analysis pipeline with 346 automatically injected hallucinations, testing both gpt-4o and Qwen3.5-397B-A17B (the strongest model tested)
  • The study compares boundary gate verification (RAG-based checks at each agent handoff) against end-of-pipeline verification, finding that boundary gates reduce survival from 58.4% to 16.2%, while end-checking alone achieves only a 2.3 percentage point improvement over no verification
  • Even Qwen3.5-397B-A17B, despite achieving 87.0% detection at Stage 1, faces a structural ceiling with projected Stage 4 detection of only ~60-65%, indicating the problem is architectural rather than model-capability limited
  • The model generalizes to n-agent linear pipelines and provides a framework for optimal verification resource allocation based on the compounding escape probabilities at each boundary

Industry Insight

  • Multi-agent pipeline architects should prioritize inserting verification gates at early handoffs (particularly between the first and second agents) rather than relying on comprehensive end-of-pipeline checking, as the marginal return on verification investment decreases exponentially with pipeline depth
  • The findings suggest that current multi-agent system designs that chain agents without intermediate verification are fundamentally flawed for high-stakes applications, and that RAG-based boundary checks should become a standard architectural pattern rather than an optional enhancement
  • For organizations investing in larger models to improve accuracy, this research indicates diminishing returns: even the strongest available models face a structural detection ceiling in deep pipelines, making architectural interventions (early verification gates) a more effective lever than model scaling alone

TL;DR

  • 提出"幻觉雪球效应"模型,揭示多智能体LLM流水线中幻觉随阶段传递会不可逆地变形和扩散
  • 建立一阶马尔可夫过程模型,量化四个状态(原始事实→推导→叙述→不可见)间的逃逸概率(24.6%、48.3%、89.3%)
  • 实验显示gpt-4o检测率从Stage 1的72.0%降至Stage 4的50.9%,23.7%幻觉最终完全未被检测
  • 边界门控验证(使用RAG工具)将幻觉存活率从58.4%降至16.2%,而仅在流水线末端检查仅提升2.3个百分点
  • 最优验证资源分配策略应在S1→S2阶段投入,此时75.4%的幻觉仍可被捕获

为什么值得看

本文为多智能体LLM系统的幻觉问题提供了首个可量化的传播模型,揭示了"验证时机比验证本身更重要"的核心原则。对AI从业者而言,这直接指导了流水线架构设计中验证节点的部署策略,避免在末端投入无效资源。

技术解析

  • 模型架构:将幻觉传播形式化为四状态一阶马尔可夫过程(Raw Fact → Derived → Narrative → Invisible),各边界逃逸概率分别为24.6%、48.3%、89.3%,检测率随阶段递降呈不可逆衰减
  • 实验设置:在FinanceBench上构建4智能体金融分析流水线,自动注入346个幻觉样本,对比gpt-4o与Qwen3.5-397B-A17B的检测性能
  • 验证策略对比:边界门控(每阶段使用相同RAG工具验证)vs 末端检查,前者将幻觉存活率从58.4%降至16.2%(Cohen's h = -0.911, p < 0.000001),后者仅提升2.3个百分点
  • 模型预测:提供n智能体线性流水线的幻觉存活率预测公式,并给出最优验证资源分配方案

行业启示

  • 架构设计:多智能体流水线必须在handoff节点部署验证机制,而非依赖最终输出检查;验证投入应优先分配至早期阶段(S1→S2),此时捕获效率最高
  • 模型选型:即使最强模型(Qwen3.5-397B-A17B)在Stage 1检测率达87%,Stage 4仍仅约60-65%,说明幻觉传播是结构性问题,需从系统设计层面解决而非依赖模型能力
  • 资源分配:建议采用"早期密集验证+后期轻量检查"的分层策略,避免在幻觉已转化为不可见状态后投入高成本验证

Disclaimer: The above content is generated by AI and is for reference only. 免责声明:以上内容由 AI 生成,仅供参考。

LLM 大模型 Agent Agent Research 科学研究 Evaluation 评测