TVCACHE: A Stateful Tool-Value Cache for Post-Training LLM Agents
Abhishek Vijaya Kumar, Bhaskar Kataria, Byungsoo Oh, Emaad Manzoor, Rachee Singh
TL;DR
TVCache tackles the inefficiency of long tool executions during RL post-training of LLM agents by introducing a stateful tool-value cache built around a Tool Call Graph (TCG). It guarantees correctness through longest-prefix matching on tool-call trajectories and employs selective sandbox snapshotting and proactive sandbox forking to enable fast, concurrent reuse across rollouts. Across terminal-based, SQL, and video-understanding workloads, TVCache achieves up to $70\%$ cache-hit rates and up to $6.9\times$ reductions in median tool-call time, while preserving post-training reward trajectories. The system scales via cache sharding, asynchronous sandbox instantiation, and an open-source implementation suitable for integration with modern RL post-training frameworks, offering practical gains in efficiency and cost reductions for LLM agents with extensive tool-use capabilities.
Abstract
In RL post-training of LLM agents, calls to external tools take several seconds or even minutes, leaving allocated GPUs idle and inflating post-training time and cost. While many tool invocations repeat across parallel rollouts and could in principle be cached, naively caching their outputs for reuse is incorrect since tool outputs depend on the environment state induced by prior agent interactions. We present TVCACHE, a stateful tool-value cache for LLM agent post-training. TVCACHE maintains a tree of observed tool-call sequences and performs longest-prefix matching for cache lookups: a hit occurs only when the agent's full tool history matches a previously executed sequence, guaranteeing identical environment state. On three diverse workloads-terminal-based tasks, SQL generation, and video understanding. TVCACHE achieves cache hit rates of up to 70% and reduces median tool call execution time by up to 6.9X, with no degradation in post-training reward accumulation.
