Paper Overview
Field: AI/ML Authors: Zeyu Liu, Souvik Kundu, Peter A. Beerel Published: 2026-09-06 arXiv: 2509.00003
Introduction
Tool-using LLM agents spend wall-clock time not only on model inference but also in serial action-observation turns, where each tool call, environment transition, and observation can delay subsequent decisions.
What SMC Does
Speculative Macro Commit (SMC) is a runtime mechanism for a two-tier agent system:
- A large authoritative actor model produces the official trajectory.
- A faster speculative drafter model continuously predicts and executes future action chains on an isolated environment snapshot.
- τ²-Bench Telecom subset: SMC maintains overall accuracy of sequential agents while reducing latency by 10.23% versus the Speculative Actions (SA) baseline and 18.59% versus sequential execution.
- AppWorld: SMC reduces wall-clock time by 7.7% versus the SA baseline and 44.9% versus sequential execution, with only a slight drop in task completion rate.
SMC mines recurring multi-action skeletons from training traces and stores them in a macro library, which is used to match against action chains predicted by the drafter at runtime. When the actor's next tool call matches the first drafted action, SMC commits the remaining pre-executed draft steps — along with their observations — into the official trajectory.
Results
Using Qwen3.5-27B INT4 as the authoritative actor and Qwen3.5-4B as the speculative drafter:
Conclusion
SMC provides a practical approach to reusing multi-step speculative execution, pushing agent latency reductions beyond what single-step speculative actions can achieve.
--- *Auto-collected on 2026-09-06*