菜单

关于 🐙 GitHub
arXiv 提交日期: 2026-02-16
📄 Abstract - Arbor: A Framework for Reliable Navigation of Critical Conversation Flows

Large language models struggle to maintain strict adherence to structured workflows in high-stakes domains such as healthcare triage. Monolithic approaches that encode entire decision structures within a single prompt are prone to instruction-following degradation as prompt length increases, including lost-in-the-middle effects and context window overflow. To address this gap, we present Arbor, a framework that decomposes decision tree navigation into specialized, node-level tasks. Decision trees are standardized into an edge-list representation and stored for dynamic retrieval. At runtime, a directed acyclic graph (DAG)-based orchestration mechanism iteratively retrieves only the outgoing edges of the current node, evaluates valid transitions via a dedicated LLM call, and delegates response generation to a separate inference step. The framework is agnostic to the underlying decision logic and model provider. Evaluated against single-prompt baselines across 10 foundation models using annotated turns from real clinical triage conversations. Arbor improves mean turn accuracy by 29.4 percentage points, reduces per-turn latency by 57.1%, and achieves an average 14.4x reduction in per-turn cost. These results indicate that architectural decomposition reduces dependence on intrinsic model capability, enabling smaller models to match or exceed larger models operating under single-prompt baselines.

顶级标签: llm systems agents
详细标签: decision tree navigation workflow decomposition llm orchestration clinical triage structured conversation 或 搜索:

Arbor:一个用于关键对话流程可靠导航的框架 / Arbor: A Framework for Reliable Navigation of Critical Conversation Flows


1️⃣ 一句话总结

这篇论文提出了一个名为Arbor的框架,它通过将复杂的决策流程拆分成多个小任务,并让AI模型分步执行,从而在医疗分诊等关键对话场景中,显著提升了决策的准确性、速度和成本效益。

源自 arXiv: 2602.14643