Cut CoT Costs, Fix Agent Memory, Test Clinical AI
Three papers: smarter CoT trimming cuts reasoning length by 50%, a plug-in context manager rescues frozen agents on long tasks, and a 960K-item clinical benchmark exposes LLM gaps in hospitals.

Today's arXiv sweep pulls three papers worth your attention: one tackles the runaway token cost of chain-of-thought reasoning, another solves a nasty context management problem for deployed agents, and the third asks whether today's LLMs are actually ready for clinical decision making. Spoiler on the last one: they're not - not yet.
TL;DR
- SLAT - Reinforcement learning trims extra CoT segments, cutting reasoning length by 50% while holding accuracy steady
- AdaCoM - An external context manager trained with RL improves frozen agents on long-horizon tasks; stronger agents need fidelity, weaker ones need aggressive compression
- EHRBench - 960K clinical QA items across 30+ LLMs uncovers consistent gaps in diagnosis and prognosis tasks that matter most for real deployments
SLAT: Smarter CoT Trimming That Doesn't Cost You Accuracy
Chain-of-thought reasoning is expensive. A model "thinking out loud" through a math problem or multi-step coding task can produce thousands of tokens before arriving at an answer, most of which are repetitive scaffolding rather than actual computation. Existing fixes apply a blunt uniform length penalty - shorter is better, full stop - which tends to cut into quality.
SLAT (Segment-Level Adaptive Trimming), from Jian Yao, Xiongcai Luo, Ran Cheng, and Kay Chen Tan, takes a more surgical approach. The paper first derives a theoretical characterization of what makes a reasoning segment suboptimal: high probability (easy to generate) combined with low marginal utility (doesn't actually help reach the answer). These are the tokens your model churns out on autopilot, filling space without contributing reasoning.
What SLAT Actually Does
Instead of penalizing all output tokens equally, SLAT trains a reinforcement learning policy that learns to suppress specific problematic segments. The objective balances correctness against length, but applies pressure only where the theory says it's wasteful.
The results are striking. SLAT achieves a 50% reduction in reasoning length relative to uncompressed baselines while maintaining competitive accuracy. The paper reports what it calls "a superior accuracy-efficiency Pareto frontier" compared to prior methods.
This matters for practitioners running inference at scale. A 50% token reduction translates directly to lower compute costs, lower latency, and higher throughput - with no accuracy sacrifice. The approach builds on earlier work showing that a small fraction of tokens drives most reasoning failures; SLAT is basically the targeted intervention that research implied was possible.
The RL training requirement means SLAT isn't a zero-effort drop-in - you need to fine-tune the model with the new objective. But for teams already running reasoning models in production, that's a reasonable cost for halving inference spend.
Segment-level trimming targets the scaffolding tokens that fill reasoning traces without contributing to the answer - a different approach than uniform length penalties.
Source: unsplash.com
AdaCoM: A Plug-In Context Manager for Frozen Agents
Long-horizon tasks break agents. Give a web search agent a 50-step research task and its context grows until the model can't hold the earliest instructions alongside the most recent observations. Prior fixes either retrain the agent itself (impossible if it's a closed-source model) or apply fixed summarization rules (too rigid to work well across varied agents and tasks).
Lu Yi and colleagues at multiple institutions propose AdaCoM (Adaptive Context Management), which sidesteps both problems by training an external LLM - a separate model - to manage the context of a completely frozen agent.
The Fidelity-Reliability Trade-off
AdaCoM is trained end-to-end with reinforcement learning. The external manager learns flexible modification actions: it can summarize, prune, or preserve sections of the agent's context depending on what the agent needs.
The paper's most useful finding is the Fidelity-Reliability Trade-off. High-performing agents (measured by vanilla ReAct performance) benefit from high-fidelity context preservation - they need the details intact to reason correctly. Lower-performing agents need more aggressive compression to stay within a reliable reasoning regime, because they get lost in noise faster.
This isn't just a research artifact. It gives you a practical heuristic: if you're rolling out a capable model, your context manager should be conservative. If you're launching a smaller or less capable model, aggressive summarization actually helps.
Transfer experiments show AdaCoM generalizes most effectively between agents with similar capability levels - which suggests you can train one context manager per capability tier and reuse it, rather than training one per model.
For anyone building agent pipelines on top of closed-source models like GPT-4o or Claude, this is a direct solution to a problem that has no clean answer today. We've covered the broader challenge of reasoning failures in autonomous research agents - AdaCoM provides a module-level fix that doesn't require touching the agent itself.
EHRBench: Testing Whether LLMs Can Actually Make Clinical Decisions
The healthcare AI space is full of benchmarks that test whether a LLM can answer medical school exam questions. EHRBench, from Yuzhang Xie, Keqi Han, Yunpeng Xiao, and colleagues, does something more demanding: it grounds evaluation in actual electronic health records.
960K Items, 30+ Models, Real Clinical Tasks
The benchmark construction pipeline converts encounter-level EHR trajectories into structured QA templates using a specialized LLM, then applies knowledge-base verification to filter out hallucinated or ambiguous questions. The result is 960,067 question-answer items spanning three task types: diagnosis, treatment selection, and prognosis.
That's a large number, but the point isn't volume for its own sake. The automated pipeline means EHRBench can scale to cover varied patient populations and clinical settings in a way hand-crafted benchmarks can't.
EHRBench grounds evaluation in actual patient encounter data rather than synthetic medical QA, making its performance gaps more informative for clinical deployment decisions.
Source: unsplash.com
The evaluation across 30+ LLMs uncovers what the authors describe as "actionable gaps toward clinically reliable LLM systems." Models perform reasonably on surface-level factual retrieval but struggle with the multi-step inference that clinical decision making actually requires - taking an incomplete patient history, weighing differential diagnoses, and committing to a course of action under uncertainty.
Why This Matters Beyond the Numbers
Healthcare AI has a credibility problem. Labs announce strong benchmark scores on medical QA, but clinicians are rightly skeptical about whether those scores predict real-world performance. EHRBench is built from real patient encounters, not textbook cases, which makes its gaps more diagnostically useful.
We've tracked how clinical AI tools can actively cause harm when safety measures over-correct. EHRBench adds the other side of that picture: the baseline performance isn't good enough to paper over with safety wrappers. The gaps are structural, not just edge-case failures.
The automated construction pipeline is also worth noting independently. If it holds up under scrutiny, it offers a template for building domain-specific benchmarks in other regulated industries - law, finance, manufacturing - where ground truth comes from records rather than human annotation.
Common Threads
All three papers are working on the same underlying problem from different angles: making AI systems more reliable in real-world deployment, without requiring teams to retrain everything from scratch.
SLAT addresses the inference cost problem that makes large reasoning models impractical at scale. AdaCoM offers a modular fix for context failure without touching frozen models. EHRBench establishes an honest baseline for where clinical AI stands - and the picture is that current models need more work before they belong in the loop on treatment decisions.
None of these are moonshots. They're the kind of targeted engineering that tends to get absorbed into standard practice quietly, then shows up in production systems six months later.
Sources:
