Concept animation

Paper: 2605.20176 Authors: Juncheng Wu, Letian Zhang, Yuhan Wang, Haoqin Tu, Hardy Chen, Zijun Wang, Cihang Xie, Yuyin Zhou Categories: cs.CL

The Gap

Existing clinical AI systems assume someone has already done the hard work: curating relevant evidence, extracting key facts from EHRs, selecting the right imaging studies, and packaging everything into a neat prompt. This works in controlled benchmarks but breaks in real clinical workflows where evidence is scattered across knowledge bases, raw EHR tables, imaging archives, and unstructured notes. Prior work like MedAgents and AgentClinic focuses on reasoning over pre-selected evidence, not on the evidence-seeking process itself. The gap: no one has built an agent that can start from a clinical query and raw data sources, then autonomously navigate, query, and synthesize multimodal evidence before reasoning.

Problem: Clinical decisions need evidence from scattered sources
    |
    v
Prior assumption: Evidence is pre-curated and handed to model
    |
    v
Reality gap: Real workflows require active evidence seeking
    |
    v
This paper's method: Agentic framework for dynamic evidence acquisition
    |
    v
Evidence: +3.2 F1 on EHR tasks, +15.1 on multimodal tasks (Claude Opus 4.6)
    |
    v
Conclusion: Active seeking > passive consumption for clinical reasoning

The Increment

One sentence: Before this paper, clinical AI consumed pre-selected evidence; after, it hunts for evidence across raw data sources like a clinician gathering information.

Core Mechanism

ClinSeekAgent operates in three phases. First, it decomposes a clinical query into sub-questions and decides which data sources to query (knowledge bases, EHR tables, imaging tools). Second, it executes those queries using specialized tools: a medical knowledge retriever for guidelines, a SQL-like EHR navigator for patient records, and vision models for chest X-rays. Third, it synthesizes the gathered evidence into a clinical decision, iteratively refining hypotheses as new information emerges.

The framework works both at inference time (augmenting frontier LLMs like Claude Opus) and training time (distilling agent trajectories into smaller models). At inference, the agent maintains a working memory of gathered evidence and dynamically plans next steps. At training, it generates high-quality trajectories that teach compact models to mimic the evidence-seeking process.

Clinical Query
    |
    v
[Planning Module] --> Decompose into sub-questions
    |                 Identify needed data sources
    v
[Tool Execution Layer]
    |
    +---> Medical Knowledge Base (guidelines, literature)
    |
    +---> EHR Navigator (SQL-like queries on raw tables)
    |
    +---> Imaging Tools (CXR analysis via vision models)
    |
    v
[Evidence Synthesis]
    |
    +---> Integrate findings
    |
    +---> Refine hypotheses
    |
    v
Clinical Decision

Think of ClinSeekAgent as a research assistant preparing a case presentation. You give them a patient question (“Does this patient have heart failure?”). They don’t wait for you to hand them a folder of relevant papers and test results. Instead, they go to the medical library (knowledge base), pull the patient’s chart from records (EHR navigator), walk down to radiology to review the chest X-ray (imaging tools), then return with a synthesis. The planning module is their mental checklist of what to investigate. The tool execution layer is their ability to navigate different hospital systems. The evidence synthesis is them sitting down to write the case summary, updating their thinking as each piece of evidence comes in.

Key Concepts

  • Evidence-Seeking vs Evidence-Consumption: Traditional clinical AI is like a student taking an open-book exam where all relevant pages are bookmarked. Evidence-seeking AI is like a student who must first find the right textbooks, locate the relevant chapters, and extract key facts before answering. The former tests reasoning given information; the latter tests information retrieval, synthesis, and reasoning together. ClinSeekAgent shifts the paradigm from “here’s the evidence, now reason” to “find the evidence, then reason.”

  • Agentic Trajectory Distillation: Large frontier models can perform complex multi-step reasoning but are expensive and slow. Smaller open-source models are fast but struggle with planning and tool use. Trajectory distillation bridges this gap: run the large model to generate high-quality evidence-seeking trajectories (sequences of tool calls, intermediate reasoning, evidence integration), then train the small model to imitate those trajectories. It’s like having a master chef record every decision while cooking a dish, then using that recording to train apprentices. The apprentice learns not just the final recipe but the adaptive process of tasting, adjusting, and improvising.

  • Multimodal Evidence Integration: Clinical reasoning rarely relies on a single data type. A heart failure diagnosis might need EHR vitals (structured data), radiology reports (text), and chest X-rays (images). Multimodal integration means the agent must know when to invoke each modality, how to interpret outputs from different tools (SQL results vs vision model predictions), and how to weigh conflicting signals. ClinSeekAgent handles this by treating each modality as a tool with specific input/output contracts, then using the LLM’s reasoning to reconcile findings across modalities.

Framework Shift

Before (mainstream approach):        After (this paper):

[Pre-curated Evidence Package]       [Raw Data Sources]
         |                                  |
         v                                  v
    +--------+                         +---------+
    |  LLM   |                         | Agent   |
    |Reasoner|                         | Planner |
    +--------+                         +---------+
         |                                  |
         v                            +-----+-----+
    [Decision]                        |     |     |
                                      v     v     v
                                    [KB] [EHR] [IMG]
                                      |     |     |
                                      +-----+-----+
                                            |
                                            v
                                      [Synthesizer]
                                            |
                                            v
                                       [Decision]

Passive consumption                  Active acquisition
Single-step reasoning                Multi-step seeking
Fixed evidence set                   Dynamic evidence gathering

From curated-input reasoning to autonomous evidence-seeking, the core shift is delegating information retrieval and synthesis to the agent rather than the human curator.

Expert Assessment

Problem choice: This is a real gap. Clinical benchmarks like MIMIC-III and CheXpert provide clean, pre-processed data, but real EHRs are messy SQL tables and unstructured notes. The paper correctly identifies that evidence curation is a bottleneck in deploying clinical AI. However, the problem is somewhat narrow—evidence-seeking matters most in exploratory clinical scenarios, less so in routine workflows where evidence patterns are well-established.

Method maturity: The approach is pragmatic rather than novel. It combines existing techniques (tool-augmented LLMs, trajectory distillation, retrieval-augmented generation) and applies them to clinical data. The insight is in the application domain, not the method itself. The three-phase pipeline (plan, execute, synthesize) is standard agentic architecture. The contribution is showing this architecture works for clinical evidence-seeking, not inventing a new reasoning paradigm.

Experimental integrity: The baselines are fair. The paper compares against the same models with pre-curated evidence (Curated Input setting) and shows consistent gains from evidence-seeking. The ClinSeek-Bench construction is reasonable, pairing curated and raw-data versions of the same tasks. However, the evaluation is limited to retrospective tasks (predicting outcomes from historical data). Real clinical utility would require prospective validation where the agent’s evidence-seeking affects actual decisions. The distillation results (ClinSeek-35B-A3B) are impressive but only evaluated on AgentEHR-Bench, not the paper’s own ClinSeek-Bench.

Writing quality: The paper is well-structured but dense. The method section conflates inference-time and training-time usage, making it hard to track which components apply where. The results section would benefit from error analysis—when does evidence-seeking fail? The related work section is thorough but could better position this work relative to clinical decision support systems outside the LLM literature.

Verdict: Weak accept — solid execution on a real problem, but the method is incremental and evaluation stops short of clinical validation.

Takeaways

Practitioners can steal the three-phase agentic pattern (plan → execute → synthesize) for any domain where evidence is scattered across heterogeneous sources. The key insight: don’t wait for humans to curate data; teach the agent to navigate raw sources. The trajectory distillation pipeline is reusable—generate high-quality agent traces with a frontier model, then train a compact model to imitate them. This works beyond clinical AI: legal research (case law + statutes + filings), financial analysis (reports + market data + news), or scientific literature review (papers + datasets + code). The multimodal integration strategy (treat each data source as a tool with input/output contracts) generalizes to any multi-source reasoning task.

论文: 2605.20176 作者: Juncheng Wu, Letian Zhang, Yuhan Wang, Haoqin Tu, Hardy Chen, Zijun Wang, Cihang Xie, Yuyin Zhou 分类: cs.CL

缺口

现有临床 AI 系统假设有人已经完成了艰苦的工作:整理相关证据、从电子病历中提取关键事实、选择合适的影像学检查,并将所有内容打包成整洁的提示词。

这在受控基准测试中有效,但在真实临床工作流程中会失效,因为证据分散在知识库、原始电子病历表格、影像档案和非结构化笔记中。

MedAgents 和 AgentClinic 等先前工作专注于对预选证据进行推理,而非证据搜寻过程本身。

缺口在于:没有人构建过一个智能体,能够从临床查询和原始数据源开始,然后自主导航、查询和综合多模态证据,再进行推理。

问题:临床决策需要来自分散来源的证据
    |
    v
先前假设:证据已预先整理并交给模型
    |
    v
现实缺口:真实工作流程需要主动搜寻证据
    |
    v
本文方法:用于动态证据获取的智能体框架
    |
    v
证据:电子病历任务 +3.2 F1,多模态任务 +15.1(Claude Opus 4.6)
    |
    v
结论:主动搜寻 > 被动消费(对于临床推理)

增量

一句话: 这篇论文之前,临床 AI 消费预选证据;之后,它像临床医生收集信息一样在原始数据源中搜寻证据。

核心机制

ClinSeekAgent 分三个阶段运作。

首先,它将临床查询分解为子问题,并决定查询哪些数据源(知识库、电子病历表格、影像工具)。

其次,它使用专门工具执行这些查询:用于指南的医学知识检索器、用于患者记录的类 SQL 电子病历导航器,以及用于胸部 X 光的视觉模型。

第三,它将收集的证据综合为临床决策,随着新信息的出现迭代地完善假设。

该框架既可在推理时工作(增强 Claude Opus 等前沿大语言模型),也可在训练时工作(将智能体轨迹蒸馏到更小的模型中)。

在推理时,智能体维护收集证据的工作记忆并动态规划下一步。

在训练时,它生成高质量轨迹,教会紧凑模型模仿证据搜寻过程。

临床查询
    |
    v
[规划模块] --> 分解为子问题
    |          识别所需数据源
    v
[工具执行层]
    |
    +---> 医学知识库(指南、文献)
    |
    +---> 电子病历导航器(对原始表格的类 SQL 查询)
    |
    +---> 影像工具(通过视觉模型进行胸部 X 光分析)
    |
    v
[证据综合]
    |
    +---> 整合发现
    |
    +---> 完善假设
    |
    v
临床决策

把 ClinSeekAgent 想象成一个准备病例报告的研究助理。

你给他们一个患者问题(“这个患者有心力衰竭吗?”)。

他们不会等你递给他们一个装满相关论文和检查结果的文件夹。

相反,他们会去医学图书馆(知识库),从记录中调出患者的病历(电子病历导航器),走到放射科查看胸部 X 光(影像工具),然后带着综合结果返回。

规划模块是他们要调查什么的心理清单。

工具执行层是他们导航不同医院系统的能力。

证据综合是他们坐下来撰写病例摘要,随着每条证据的到来更新他们的思考。

关键概念

  • 证据搜寻 vs 证据消费: 传统临床 AI 就像学生参加开卷考试,所有相关页面都已做好书签。

证据搜寻 AI 就像学生必须先找到正确的教科书,定位相关章节,并在回答之前提取关键事实。

前者测试给定信息的推理能力;后者同时测试信息检索、综合和推理能力。

ClinSeekAgent 将范式从”这是证据,现在推理”转变为”找到证据,然后推理”。

  • 智能体轨迹蒸馏: 大型前沿模型可以执行复杂的多步推理,但成本高且速度慢。

较小的开源模型速度快,但在规划和工具使用方面存在困难。

轨迹蒸馏弥合了这一差距:运行大型模型生成高质量的证据搜寻轨迹(工具调用序列、中间推理、证据整合),然后训练小型模型模仿这些轨迹。

这就像让大厨在烹饪菜肴时记录每个决定,然后使用该记录来培训学徒。

学徒学习的不仅是最终食谱,还有品尝、调整和即兴发挥的适应过程。

  • 多模态证据整合: 临床推理很少依赖单一数据类型。

心力衰竭诊断可能需要电子病历生命体征(结构化数据)、放射学报告(文本)和胸部 X 光(图像)。

多模态整合意味着智能体必须知道何时调用每种模态,如何解释来自不同工具的输出(SQL 结果 vs 视觉模型预测),以及如何权衡冲突信号。

ClinSeekAgent 通过将每种模态视为具有特定输入/输出契约的工具来处理这一问题,然后使用大语言模型的推理来协调跨模态的发现。

框架转变

之前(主流方法):                之后(本文方法):

[预先整理的证据包]                [原始数据源]
         |                              |
         v                              v
    +--------+                     +---------+
    |  LLM   |                     | 智能体  |
    | 推理器 |                     | 规划器  |
    +--------+                     +---------+
         |                              |
         v                        +-----+-----+
    [决策]                        |     |     |
                                  v     v     v
                                [知识][病历][影像]
                                  |     |     |
                                  +-----+-----+
                                        |
                                        v
                                  [综合器]
                                        |
                                        v
                                   [决策]

被动消费                          主动获取
单步推理                          多步搜寻
固定证据集                        动态证据收集

从整理输入推理到自主证据搜寻,核心转变是将信息检索和综合委托给智能体,而非人类整理者。

专家评审

选题眼光: 这是一个真实的缺口。

MIMIC-III 和 CheXpert 等临床基准提供干净、预处理的数据,但真实的电子病历是混乱的 SQL 表格和非结构化笔记。

论文正确地指出,证据整理是部署临床 AI 的瓶颈。

然而,这个问题有些狭窄——证据搜寻在探索性临床场景中最重要,在证据模式已确立的常规工作流程中则不那么重要。

方法成熟度: 该方法务实而非新颖。

它结合了现有技术(工具增强大语言模型、轨迹蒸馏、检索增强生成)并将其应用于临床数据。

洞察在于应用领域,而非方法本身。

三阶段流程(规划、执行、综合)是标准的智能体架构。

贡献在于展示这种架构适用于临床证据搜寻,而非发明新的推理范式。

实验诚意: 基线是公平的。

论文与使用预先整理证据的相同模型(整理输入设置)进行比较,并显示证据搜寻带来的一致收益。

ClinSeek-Bench 的构建是合理的,将相同任务的整理版本和原始数据版本配对。

然而,评估仅限于回顾性任务(从历史数据预测结果)。

真正的临床效用需要前瞻性验证,即智能体的证据搜寻影响实际决策。

蒸馏结果(ClinSeek-35B-A3B)令人印象深刻,但仅在 AgentEHR-Bench 上评估,而非论文自己的 ClinSeek-Bench。

写作功力: 论文结构良好但密集。

方法部分混淆了推理时和训练时的使用,使得难以追踪哪些组件适用于何处。

结果部分将受益于错误分析——证据搜寻何时失败?关联工作部分很全面,但可以更好地将这项工作相对于大语言模型文献之外的临床决策支持系统进行定位。

判决: 弱接收 — 在真实问题上执行扎实,但方法是增量式的,评估止步于临床验证之前。

要点总结

实践者可以为任何证据分散在异构来源的领域窃取三阶段智能体模式(规划 → 执行 → 综合)。

关键洞察:不要等待人类整理数据;教智能体导航原始来源。

轨迹蒸馏流程是可重用的——用前沿模型生成高质量智能体轨迹,然后训练紧凑模型模仿它们。

这适用于临床 AI 之外:法律研究(判例法 + 法规 + 文件)、财务分析(报告 + 市场数据 + 新闻)或科学文献综述(论文 + 数据集 + 代码)。

多模态整合策略(将每个数据源视为具有输入/输出契约的工具)可推广到任何多源推理任务。