Paper deep dive
PACE: Adaptive Budget Allocation for Time-Efficient Embodied Planning
Yuchen Huang, Xijiang Ying, Zhenhua Ma, Xiaxiang Yuan, Zhijie Gao, Jiayi Huang, Ruichi Mao, Jiazheng Zhang, Hongsheng Ti, Maotao Tian, Rong Shi, Lu Zhao, Shizhuang Zhang, Zhuo Cui, He Wang, Ling Liu, Wei Zhang
Intelligence
Status: succeeded | Model: Gemma-4-26B-A4B | Prompt: intel-v1 | Confidence: 92%
Last extracted: 8/5/2026, 4:53:35 AM
Summary
The paper introduces PACE (Planning with Adaptive Cognitive Effort), a framework for time-efficient embodied planning that interleaves reasoning and execution. It utilizes an Interleaved Think-Act (ITA) architecture and a Dynamic Budget Allocator (DBA) to adapt reasoning token budgets based on execution time windows, achieving a 67% improvement in success rate and 6.9x acceleration over the ReAct+Think baseline on the Robotouille benchmark using Qwen3-8B-AWQ.
Entities (7)
Relation Signals (6)
PaCE â containscomponent â Interleaved Think-Act
confidence 95% · PACE introduces two core innovations... The Interleaved Think-Act (ITA) architecture
PaCE â containscomponent â Dynamic Budget Allocator
confidence 95% · PACE introduces two core innovations... the DBA mechanism for execution-aware budget allocation
PaCE â evaluatedon â Robotouille
confidence 92% · On the Robotouille benchmark using Qwen3-8B-AWQ
Dynamic Budget Allocator â adapts â reasoning token budgets
confidence 90% · Dynamic Budget Allocator that adapts reasoning token budgets to available execution time windows
PaCE â outperforms â ReAct+Think
confidence 90% · PACE achieves a 10% success rateârepresenting a 67% improvement over the ReAct+Think baseline
PaCE â usesmodel â Qwen3-8B-AWQ
confidence 90% · On the Robotouille benchmark using Qwen3-8B-AWQ
Cypher Suggestions (0)
No Cypher suggestions yet.
Abstract
Abstract:Reasoning-enhanced large language models have achieved remarkable improvements in planning tasks, yet their deployment in embodied systems remains impractical due to prohibitive inference delays-often exceeding minutes per planning instance. The fundamental bottleneck stems from the serial nature of existing paradigms: models must complete all reasoning before any action execution, leaving execution time windows entirely unexploited. We introduce PACE (Planning with Adaptive Cognitive Effort), a framework that enables interleaved reasoning and execution through two key innovations: an Interleaved Think-Act architecture that pipelines cognitive processing with action execution, and a Dynamic Budget Allocator that adapts reasoning token budgets to available execution time windows. On the Robotouille benchmark using Qwen3-8B-AWQ, PACE achieves a 10% success rate-representing a 67% improvement over the ReAct+Think baseline-while delivering 6.9 times acceleration in thinking time compared to unconstrained reasoning. The framework hides 66.8% of thinking time within execution windows, demonstrating that strategic cognitive effort allocation can simultaneously improve both planning quality and time efficiency. These results provide evidence that time-aware architectural innovations enable reasoning models to operate in latency-sensitive embodied domains where they were previously impractical.
Tags
Links
- Source: https://arxiv.org/abs/2608.03034v1
- Canonical: https://arxiv.org/abs/2608.03034v1
Trouble viewing inline? Open PDF directly â
Full Text
56,610 characters extracted from source content.
Expand or collapse full text
PACE: Adaptive Budget Allocation for Time-Efficient Embodied Planning Yuchen Huang, Xijiang Ying, Zhenhua Ma, Xiaxiang Yuan, Zhijie Gao, Jiayi Huang, Ruichi Mao, Jiazheng Zhang, Hongsheng Ti, Maotao Tian, Rong Shi, Lu Zhao, Shizhuang Zhang, Zhuo Cui, He Wang, Ling Liu, and Wei Zhangâ Abstract Reasoning-enhanced large language models have achieved remarkable improvements in planning tasks, yet their deployment in embodied systems remains impractical due to prohibitive inference delaysâoften exceeding minutes per planning instance. The fundamental bottleneck stems from the serial nature of existing paradigms: models must complete all reasoning before any action execution, leaving execution time windows entirely unexploited. We introduce PACE (Planning with Adaptive Cognitive Effort), a framework that enables interleaved reasoning and execution through two key innovations: an Interleaved Think-Act architecture that pipelines cognitive processing with action execution, and a Dynamic Budget Allocator that adapts reasoning token budgets to available execution time windows. On the Robotouille benchmark [1] using Qwen3-8B-AWQ, PACE achieves a 10% success rateârepresenting a 67% improvement over the ReAct+Think baselineâwhile delivering 6.9Ă acceleration in thinking time compared to unconstrained reasoning. The framework hides 66.8% of thinking time within execution windows, demonstrating that strategic cognitive effort allocation can simultaneously improve both planning quality and time efficiency. These results provide evidence that time-aware architectural innovations enable reasoning models to operate in latency-sensitive embodied domains where they were previously impractical. I Introduction The emergence of reasoning-enhanced large language models has fundamentally transformed the landscape of AI planning capabilities. Models such as OpenAIâs o1 and DeepSeek-R1 leverage extended chain-of-thought processing to achieve substantial improvements on benchmarks like PlanBench, with reported gains exceeding 60% in success rates compared to their non-reasoning counterparts [2, 3]. These advances stem from the modelsâ ability to engage in deliberate, multi-step reasoning before committing to actionsâa paradigm that mirrors human cognitive processes of careful deliberation before execution. However, this breakthrough comes at a severe cost: reasoning models generate hundreds or thousands of thinking tokens before producing actionable outputs, resulting in inference latencies that render them impractical for real-time robotic systems [4]. The deployment of reasoning models in embodied planning contexts exposes three critical bottlenecks that existing approaches fail to address. First, inference delays have become unacceptable for interactive systemsâplanning a single task instance can consume minutes of computation time, during which a robot remains idle and unresponsive. Second, the prevailing paradigm enforces strict seriality between thinking and acting [5, 6]: models must complete their entire reasoning process before any physical action begins. This stands in stark contrast to human cognition, where chefs chop vegetables while steaks sear and mechanics retrieve tools while diagnostics run. Third, reasoning budgets remain static and globally configured, unable to adapt to the varying cognitive demands of different planning steps or the temporal constraints imposed by execution windows [7, 8]. A simple pick-and-place operation receives the same reasoning allocation as a complex multi-step assembly sequence, leading to both computational waste and critical reasoning gaps. Prior work on LLM-based planning has made substantial progress in improving success rates through iterative reasoning-acting loops, hierarchical task decomposition [9], and structured prompting strategies. The ReAct paradigm demonstrated that interleaving reasoning traces with action execution enables more robust planning through environmental feedback. However, these approaches treat time as a secondary concernâif considered at allâfocusing primarily on solution quality while ignoring the temporal constraints that govern real-world deployment [10, 11]. Recent investigations into budget-constrained reasoning have explored token limitation strategies [7, 8], yet these methods apply uniform constraints across all planning steps without accounting for the natural temporal structure of embodied tasks, where action execution creates predictable windows for concurrent cognitive processing. We present PACE (Planning with Adaptive Cognitive Effort), a framework that bridges the gap between reasoning model capabilities and real-time embodied planning requirements. PACE introduces two core innovations that work synergistically to optimize the success-time trade-off. The Interleaved Think-Act (ITA) architecture enables reasoning processes to execute concurrently with action execution, exploiting the temporal structure of embodied tasks where physical operations create natural windows for cognitive processing. The Dynamic Budget Allocator (DBA) adapts thinking token budgets to the available execution time of each action, scaling cognitive effort to match temporal constraints while prioritizing budget allocation for critical decision points. Together, these components enable reasoning models to achieve higher success rates while dramatically reducing wall-clock planning time. The contributions of this work are fourfold: 1. We formalize the Time-Delay-Aware Embodied Planning (TDAEP) problem, introducing a pipeline time model that captures the opportunity for concurrent reasoning during action execution. 2. We propose the PACE framework comprising the ITA architecture for concurrent think-act processing and the DBA mechanism for execution-aware budget allocation. 3. We develop a hybrid budget control mechanism combining prompt-based guidance with token truncation, enabling precise reasoning control without model retraining. 4. We establish a Pareto efficiency evaluation framework for embodied planning that jointly optimizes success rate and total completion time, demonstrating PACEâs dominance over existing paradigms. I Related Work I-A LLM Planning Paradigms Large language models have emerged as powerful planners across diverse domains, with several paradigms developed to leverage their reasoning capabilities [11, 12]. The Input-Output (IO) paradigm represents the simplest approach, where models generate complete plans in a single inference step without intermediate feedback. While computationally efficient, IO planning lacks the ability to correct errors or adapt to unexpected environmental states, limiting its effectiveness in complex embodied scenarios [13]. The ReAct paradigm addresses this limitation by interleaving reasoning traces with action execution, enabling models to incorporate environmental feedback into subsequent planning steps. This iterative approach has demonstrated substantial improvements in planning accuracy, particularly for tasks requiring multi-step reasoning with environmental interaction [5]. Recent advances in reasoning models have introduced dedicated thinking phases that precede action generation. Models like GPT-4 with reasoning mode and DeepSeek-R1 allocate extended computation to deliberate thinking before committing to actions, achieving significant improvements on planning benchmarks [2]. However, these reasoning-enhanced approaches exacerbate the temporal bottleneck: the extended thinking phases can consume orders of magnitude more inference time than standard approaches, making them impractical for time-critical embodied applications [4]. Our work addresses this fundamental tension by enabling reasoning processes to overlap with action execution, preserving the benefits of deliberate thinking while mitigating temporal costs. I-B Budget-Constrained Reasoning The computational cost of reasoning models has motivated research into budget allocation and constraint mechanisms [7, 8]. Prior work has explored static budget constraints that limit total thinking tokens across all planning steps, demonstrating that moderate constraints can paradoxically improve performance by preventing âoverthinkingââthe generation of verbose but unhelpful reasoning chains. Dynamic budget approaches have been proposed for specific contexts, adjusting reasoning depth based on task complexity or uncertainty estimates [8]. However, existing methods fail to consider the temporal structure of embodied tasks, where action execution creates predictable windows for cognitive processing. Cognitive science research on effort allocation provides theoretical grounding for adaptive budget strategies. Studies have shown that humans dynamically adjust cognitive effort based on expected value, task difficulty, and available time [14, 15]. The prefrontal cortex plays a critical role in this adaptive control, modulating cognitive resources based on task demands [16, 17]. Our DBA mechanism draws inspiration from these findings, implementing a difficulty-aware coefficient that scales reasoning budgets to match both temporal constraints and cognitive demands. Unlike prior approaches that apply uniform budgets or simple heuristics, PACE integrates execution time awareness into the budget allocation process, enabling principled reasoning control that respects real-time constraints [18, 19]. I-C Embodied Planning with LLMs The integration of LLMs into robotic and embodied systems has attracted substantial research attention. Prior work has demonstrated LLM-based task planning for household robots [13], manufacturing systems [20], and autonomous navigation [21]. These systems typically employ hierarchical planning architectures where LLMs handle high-level task decomposition while specialized controllers manage low-level execution [9]. However, the temporal dimension of planning remains underexplored in this literatureâmost evaluations focus on success rates and plan quality while treating planning time as a secondary concern [12]. The Robotouille benchmark [1] represents a significant step toward standardized evaluation of LLM planning in embodied contexts, providing a kitchen-based task environment with both synchronous and asynchronous execution modes. Our experiments leverage this benchmark to evaluate PACE against established baselines, demonstrating that time-aware planning can achieve superior success rates while dramatically reducing total completion time. The benchmarkâs action time modelâwhere different operations have distinct execution durationsâprovides the temporal structure that PACE exploits for concurrent reasoning. I-D Parallel and Concurrent Processing in Planning Parallel processing has a rich history in classical AI planning, with algorithms designed to exploit problem structure for concurrent computation [22, 23]. Prior work has explored parallel state-space search, distributed heuristic evaluation, and concurrent plan refinement. However, these approaches focus on computational parallelism within the planning algorithm itself, rather than the temporal relationship between planning and execution. In embodied systems, the sequential dependency between action selection and execution has been treated as an immutable constraintâour work challenges this assumption by enabling cognitive processing during execution windows. Recent work on adaptive planning has explored context-sensitive strategy selection [24] and real-time plan adjustment [20]. These approaches adapt planning behavior to environmental conditions but do not address the fundamental seriality between thinking and acting. PACE introduces a novel form of temporal adaptation: rather than modifying planning strategies based on environmental feedback, we modify the temporal structure of the planning-execution loop itself, enabling reasoning to proceed concurrently with action execution. I Problem Formulation I-A Traditional Serial Planning Model We consider embodied planning within the Markov Decision Process (MDP) framework âł=âš,,,ââ©M= ,A,T,R , where S denotes the state space, A the action space, T the transition function, and âR the reward function. Traditional LLM planning paradigms operate under a serial time model where reasoning and execution proceed sequentially: Ttotalserial=âi=0N(tthink(i)+texec(i))T_total^serial= _i=0^N (t_think^(i)+t_exec^(i) ) (1) where tthink(i)t_think^(i) represents the LLM inference time for step i, texec(i)t_exec^(i) the physical execution time, and N the total number of steps. This model captures the fundamental inefficiency of existing paradigms: even when the robot executes actions lasting several seconds, the LLM remains idle, unable to begin reasoning for the next step until execution completes. Our empirical analysis reveals that reasoning time dominates total time in reasoning-enhanced models, accounting for over 90% of the planning duration in the ReAct+Think configuration. I-B Time-Delay-Aware Embodied Planning We introduce the Time-Delay-Aware Embodied Planning (TDAEP) problem, which formalizes the opportunity for concurrent reasoning during action execution. The key insight is that when action aiâ1a_i-1 executes over duration texec(iâ1)t_exec^(i-1), the LLM can simultaneously reason about action aia_i. This pipeline structure yields a modified time model: Ttotalpipe=tthink(0)+âi=1NmaxâĄ(tthink(i),texec(iâ1))+texec(N)T_total^pipe=t_think^(0)+ _i=1^N (t_think^(i),t_exec^(i-1) )+t_exec^(N) (2) The pipeline model exhibits three important properties. First, the serial model upper-bounds the pipeline model: Ttotalpipeâ€TtotalserialT_total^pipe†T_total^serial, with equality only when no overlap is possible. Second, when all thinking fits within execution windows (tthink(i)â€texec(iâ1)t_think^(i)†t_exec^(i-1) for all iâ„1iâ„ 1), reasoning overhead reduces to just the initial thinking time. Third, the optimization spaceâthe time savings achievable through pipeliningâis quantified by âi=1NminâĄ(tthink(i),texec(iâ1)) _i=1^N (t_think^(i),t_exec^(i-1)), representing the thinking time hidden within execution windows. I-C Action Execution Time Model Different actions have distinct execution durations based on physical requirements. We define the execution time function: texecâ(a)=tmoveMovetmanipPick, Place, Stack, UnstacktprocessCut, Cook, Fry, BoiltnoopDo nothing\!\!\!t_exec(a)\!=\! casest_move& Move\\ t_manip& Pick, Place, Stack, Unstack\\ t_process& Cut, Cook, Fry, Boil\\ t_noop& Do nothing cases\!\!\! (3) Based on realistic robotic operation times, we parameterize tmove=3.0t_move=3.0 s for navigation, tmanipulate=4.0t_manipulate=4.0 s for manipulation actions, and tprocess=5.0t_process=5.0 s for processing operations. These values provide the temporal structure that PACE exploits for concurrent reasoning. I-D Pareto Optimality in Embodied Planning We evaluate planning strategies along two dimensions: success rate SRâ(Ï)SR(Ï) and average total time TÂŻâ(Ï) T(Ï). A strategy ÏâÏ^* is Pareto optimal if no other strategy achieves both higher success rate and lower time. This formulation captures the practical reality of embodied deployment: systems must balance planning quality against response time, and the optimal operating point depends on application-specific requirements. PACE aims to advance the Pareto frontier by achieving higher success rates than existing methods while simultaneously reducing total planning time. IV PACE Framework IV-A Overall Architecture PACE comprises three integrated components that work together to enable time-efficient embodied planning. The Interleaved Think-Act (ITA) loop restructures the planning-execution relationship to enable concurrent processing. The Dynamic Budget Allocator (DBA) computes appropriate thinking token budgets based on available execution time windows and task difficulty. The Hybrid Budget Control mechanism ensures reasoning adheres to allocated budgets through a combination of prompt guidance and token truncation. These components operate within a reasoning-mode LLM, such as DeepSeek-R1 or Qwen3 with thinking enabled, leveraging the modelâs inherent chain-of-thought capabilities while imposing temporal constraints. The framework maintains a planning loop where each iteration consists of three phases. In the reasoning phase, the LLM generates thinking tokens up to the allocated budget while the previous action executes concurrently. In the action phase, the selected action begins execution, and the DBA computes the budget for the next reasoning phase based on the expected execution duration. In the update phase, environmental feedback is incorporated into the context, and difficulty coefficients are adjusted based on action outcomes. An overview of the PACE framework is shown in Figure 1. Figure 1: Overview of the PACE framework. The system interleaves thinking and acting through the ITA loop (top), adapts cognitive budgets via the DBA based on execution time and difficulty (left), and ensures temporal constraints through hybrid budget control (right). The difficulty coefficient α dynamically scales thinking tokens after each action based on success/failure feedback. IV-B Interleaved Think-Act Loop The ITA loop fundamentally restructures the temporal relationship between reasoning and execution. Unlike traditional paradigms where thinking and acting are strictly sequential, ITA enables the reasoning process for step i to proceed concurrently with the execution of step iâ1i-1. This pipelining exploits the natural temporal structure of embodied tasks: physical actions require time to execute, and this time can be productively used for cognitive processing. The ITA architecture operates on three core principles. First-action fast response ensures the robot begins acting quickly by allocating minimal thinking budget to the initial step, preventing idle time while the LLM deliberates. Look-ahead thinking within execution windows enables the LLM to reason about subsequent actions while the current action executes, ensuring action readiness when execution completes. Seamless handover guarantee ensures that thinking completes within execution windows to avoid gaps; when this is not possible, the DBA adjusts future budgets to compensate. The temporal behavior of ITA can be understood through a concrete example. When a robot executes a manipulation action lasting 4.0 seconds, the DBA computes a budget of approximately 540 tokens (assuming 150 tokens/second inference speed and overhead adjustments). The LLM generates thinking tokens during this window, producing the next action by the time execution completes. If thinking finishes early, the system waits for execution to complete; if thinking exceeds the window, a gap occurs, but the DBA adapts subsequent budgets to compensate. IV-C Dynamic Budget Allocator The DBA computes thinking token budgets that respect temporal constraints while adapting to task demands. The budget calculation formula integrates execution time, inference speed, and difficulty adjustment: bi+1=αâ(si,g)â (â(texecâ(ai)âtoverhead)â vââcoutput)b_i+1=α(s_i,g)· ( (t_exec(a_i)-t_overhead)· v -c_output ) (4) where v is the inference speed in tokens per second, toverheadt_overhead accounts for network and preprocessing delays, coutputc_output reserves tokens for action generation, and αâ(si,g)α(s_i,g) is the difficulty adjustment coefficient based on current state sis_i and goal g. Note that α multiplies the entire base budget, scaling reasoning effort up or down based on task demands. The difficulty coefficient αâ[0.5,2.0]αâ[0.5,2.0] scales the base budget to match cognitive demands. Following cognitive science research on effort allocation [17, 18], we implement heuristic rules: α=0.5α=0.5 for simple operations following successful actions, α=1.0α=1.0 as the default, α=1.5α=1.5 when the previous action failed, and α=2.0α=2.0 for consecutive failures or critical decision points. This adaptive scaling ensures that complex decisions receive adequate reasoning resources while simple operations proceed efficiently. The first step requires special handling since no prior action provides an execution window. We allocate a minimal fast-response budget bfirstb_first, typically 50â100 tokens, sufficient for generating an initial action while preventing extended idle time. This design reflects the observation that first actions in embodied tasks are often straightforwardâpicking up an object or moving to a locationâand do not require extensive deliberation. IV-D Hybrid Budget Control Budget control operates through a two-tier mechanism combining soft guidance with hard constraints. The soft budget layer injects budget instructions into the system prompt, informing the model of available thinking tokens and suggesting appropriate reasoning strategies. For budgets below 100 tokens, the prompt instructs immediate action generation; for budgets of 300â600 tokens, it suggests multi-step planning; for larger budgets, it encourages comprehensive analysis with dependency graphs. The hard budget layer enforces constraints through token truncation. When thinking tokens reach the allocated budget, the inference engine forcibly terminates the thinking phase by inserting the end-of-thinking delimiter, compelling the model to produce an action. This mechanism provides a safety boundary ensuring temporal constraints are never violated, even if the model attempts to exceed its allocation. The combination of soft and hard control balances quality and reliability. Soft guidance encourages the model to use its budget efficiently, producing higher-quality reasoning within constraints. Hard truncation guarantees compliance with temporal requirements, preventing runaway thinking that would violate real-time constraints. In practice, we set the hard budget at 1.2Ă the soft budget, providing headroom for natural variation while maintaining strict upper bounds. IV-E Time Analysis with Gap Handling When thinking time exceeds the available execution window (tthink(i)>texec(iâ1)t_think^(i)>t_exec^(i-1)), a gap Îi=tthink(i)âtexec(iâ1) _i=t_think^(i)-t_exec^(i-1) occurs where the robot waits idle for the next action. Total time decomposes into three components: the initial thinking time (unavoidable), the sum of all execution times, and the sum of all positive gaps. The DBA mechanism aims to minimize the third term by computing budgets that fit within execution windows. Empirically, we observe that 66.8% of thinking time is successfully hidden within execution windows, with gaps occurring primarily during complex multi-step reasoning that exceeds available windows. The adaptive difficulty coefficient helps reduce gaps by scaling down budgets after successful actions, compensating for earlier overruns. IV-F PACE Main Loop Algorithm The PACE algorithm is presented in Algorithm 1. Algorithm 1 PACE Main Loop 0: Environment â°E, LLM planner ÏΞ _Ξ, inference speed v, action time model texecâ(â )t_exec(·), initial budget bfirstb_first 0: Success flag d, total pipeline time T 1: s0,o0ââ°.resetâ()s_0,o_0 .reset() 2: dâFalse,iâ0,Tâ0,αâ1.0d ,\;iâ 0,\;Tâ 0,\;αâ 1.0 3: b0âbfirstb_0â b_first 4: while ÂŹd d and i<Nmaxi<N_ do 5: piâBuildPromptâ(oi,bi)p_i (o_i,b_i) 6: aiâÏΞ.genâ(pi)a_iâ _Ξ.gen(p_i) Budget-constrained generation 7: tiâthink_timeâ(ai)t_i \_time(a_i) 8: oi+1,r,dââ°.stepâ(ai)o_i+1,r,d .step(a_i) 9: eiâtexecâ(ai)e_iâ t_exec(a_i) 10: if i=0i=0 then 11: TâT+ti+eiTâ T+t_i+e_i 12: else 13: TâT+maxâĄ(ti,eiâ1)Tâ T+ (t_i,e_i-1) 14: end if 15: if action_failedâ(oi+1)action\_failed(o_i+1) then 16: αâminâĄ(αĂ1.5, 2.0)αâ (αà 1.5,\,2.0) 17: else 18: αâmaxâĄ(αĂ0.8, 0.5)αâ (αà 0.8,\,0.5) 19: end if 20: bi+1âmaxâĄ(â(eiâtoverhead)â vââcoutput,bmin)â αb_i+1â ( (e_i-t_overhead)· v -c_output,\,b_ )·α 21: iâi+1iâ i+1 22: end while 23: if i>0i>0 then 24: TâT+eiTâ T+e_i Final execution step 25: end if 26: return d,Td,\;T IV-G Theoretical Analysis We establish two theoretical properties of PACE. First, regarding time complexity: let TRRT_R denote the average total time of ReAct with reasoning mode, and TPACET_PACE the average time of PACE. If PACEâs budget allocation ensures tthink(i)â€texec(iâ1)t_think^(i)†t_exec^(i-1) with probability p, then the expected time of PACE is bounded by the expected time of ReAct-Reasoning minus the hidden thinking time weighted by probability p. This bound shows that PACEâs time savings grow with both the probability of fitting thinking within windows and the magnitude of hidden thinking time. Second, regarding budget efficiency: if success rate SRâ(b)SR(b) is a concave function of budget b (exhibiting diminishing returns), there exists a budget bââȘbfullb^* b_full such that SRâ(bâ)â„(1âÏ”)â SRâ(bfull)SR(b^*)â„(1-Δ)·SR(b_full) for small ϔΔ. This property justifies budget reduction: moderate constraints preserve most of the success rate while enabling substantial time savings. Our empirical results validate this property, showing that constrained reasoning achieves higher success rates than unconstrained reasoning by preventing overthinking. V Experiments V-A Experimental Setup We evaluate PACE on the Robotouille benchmark [1], a kitchen-based embodied planning environment designed for LLM agent evaluation. The benchmark comprises 20 distinct tasks across synchronous and asynchronous execution modes, with 200 total test instances. We focus on the synchronous dataset (100 instances) where action execution times are deterministic and known. Tasks range from simple sandwich preparation (10 optimal steps) to complex multi-ingredient assemblies (63 optimal steps), providing diverse planning challenges. Our implementation uses the Qwen3-8B-AWQ model with the vLLM inference framework on an NVIDIA RTX 3090 GPU. The PACE agent inherits from the ReActAgent implementation, extending it with the ITA loop and DBA components. We configure the action time model with realistic parameters: 3.0 s for navigation, 4.0 s for manipulation, 5.0 s for processing operations, and 6.0 s for filling actions. The inference speed is measured at approximately 150 tokens/second for the AWQ-quantized model. V-B Baselines We compare PACE against five baseline configurations spanning the spectrum of existing planning paradigms. The IO baseline generates complete plans in a single inference step without environmental feedback. IO+Think extends this with reasoning mode enabled. The ReAct baseline implements iterative reasoning-acting loops without extended thinking. ReAct+Think enables reasoning mode within the ReAct framework. ReAct+Think(HB512) applies a fixed 512-token hard budget to reasoning tokens. All baselines use the same underlying model and inference configuration to ensure fair comparison. V-C Evaluation Metrics Primary evaluation metrics are success rate (percentage of instances where the task goal is achieved) and total completion time (wall-clock time from task start to goal achievement or failure). Secondary metrics include average steps taken, cumulative thinking time, cumulative execution time, and gap time. We introduce the thinking time hiding rate as the percentage of thinking time that overlaps with execution, measuring pipeline efficiency. We employ Pareto frontier analysis to characterize the success-time trade-off, identifying strategies that are not dominated by any other method. This multi-objective perspective captures the practical reality that different applications may prioritize success rate or response time differently. V-D Hyperparameters Table I presents the PACE hyperparameters used in our experiments. The inference speed v=150v=150 tokens/s is measured empirically from the AWQ-quantized model on RTX 3090. The minimum budget bmin=30b_ =30 tokens ensures sufficient capacity for action generation. The first-step budget bfirst=50b_first=50 tokens enables quick initial response. Overhead time toverhead=0.2t_overhead=0.2 s accounts for network and preprocessing delays. Output token reserve coutput=30c_output=30 tokens accommodates action formatting. The difficulty coefficient bounds αâ[0.5,2.0]αâ[0.5,2.0] and scaling factors (1.5Ă on failure, 0.8Ă on success) implement adaptive budget adjustment. TABLE I: PACE Hyperparameters Parameter Value Description v 150 tokens/s Inference speed bminb_ 30 tokens Minimum budget per step bfirstb_first 50 tokens First-step budget toverheadt_overhead 0.2 s Network/preprocessing overhead coutputc_output 30 tokens Output token reserve α range [0.5, 2.0] Difficulty coefficient bounds Failure scaling 1.5à α multiplier on failure Success scaling 0.8à α multiplier on success V-E Statistical Analysis Methodology Given the binary nature of success rate outcomes, we report 95% confidence intervals using the Wilson score interval for binomial proportions. For continuous metrics (time, steps), we report mean ± standard deviation. Comparisons between methods use paired analysis where the same task instances are evaluated across different configurations. For success rate comparisons, we apply McNemarâs test for paired binary outcomes. For time comparisons, we use the Wilcoxon signed-rank test due to the non-normal distribution of completion times. We do not apply multiple comparison corrections as each comparison addresses a distinct research question. VI Results VI-A Overall Performance Comparison Table I presents the main results comparing PACE against baseline methods across the Robotouille synchronous dataset. PACE achieves a 10% success rate (95% CI: [5.0%, 17.8%]) with the default configuration, representing a 67% relative improvement over the ReAct+Think baseline at 6% (95% CI: [2.5%, 12.0%]). The precision-optimized PACE-C configuration achieves 13% success rate (95% CI: [7.2%, 21.4%]), the highest among all methods evaluated. TABLE I: Main Results on Robotouille Synchronous Dataset (100 instances) Method SR (%) 95% CI Steps Think (s) Exec (s) Pipeline (s) Hiding IO 0 [0.0, 3.5] 3.71 ± 1.2 17.39 12.89 30.28 0% IO+Think 2 [0.4, 7.0] 3.86 ± 1.4 70.20 13.34 83.54 0% ReAct 5 [2.0, 10.0] 32.74 ± 8.3 109.24 106.80 216.04 0% ReAct+Think 6 [2.5, 12.0] 41.69 ± 10.2 1334.55 115.87 1450.42 0% ReAct+Think(HB512) 9 [4.5, 16.5] 32.85 ± 7.9 297.76 100.17 397.93 0% PACE (default) 10 [5.8, 16.2] 38.33 ± 9.4 192.74 120.89 196.78 66.8% PACE-A (time-opt) 10 [5.8, 16.2] 32.51 ± 7.1 99.15 98.83 123.73 76.2% PACE-B (balanced) 11 [6.0, 17.8] 38.09 ± 8.7 172.35 112.49 176.55 69.2% PACE-C (precision-opt) 13 [7.6, 21.0] 38.68 ± 9.0 190.21 116.41 194.32 64.4% The time efficiency gains are substantial. PACEâs default configuration achieves 192.74 s average thinking time per case, compared to 1334.55 s for unconstrained ReAct+Thinkâa 6.9Ă acceleration. The pipeline time of 196.78 s is only marginally higher than thinking time due to the 66.8% thinking time hiding rate, demonstrating effective exploitation of execution windows for concurrent reasoning. A notable finding is the âoverthinkingâ phenomenon evident in the baseline results. Unconstrained ReAct+Think achieves only 6% success rate despite extensive reasoning, while the budget-constrained variant achieves 9% success with 78% less thinking time. This validates the theoretical prediction that moderate budget constraints can improve success rates by preventing unproductive reasoning chains. The average step count increases from 32.74 (ReAct) to 41.69 (ReAct+Think), suggesting that unconstrained reasoning leads to verbose but ineffective action sequences. VI-B Performance by Task Complexity Table I breaks down performance by task complexity, revealing clear patterns in PACEâs effectiveness across different planning horizons. PACE excels on simpler tasks with 10â15 optimal steps, achieving 20â40% success rates. Performance degrades on complex tasks requiring 36+ optimal steps, where success rates drop to 0%. This pattern reflects the inherent difficulty of long-horizon planning with limited reasoning budgetsâcomplex tasks require sustained multi-step reasoning that may exceed available execution windows. TABLE I: Task-Specific Results by Complexity (PACE Default) Task Optimal SR (%) Steps Pipeline Steps (s) Cheese sandwich 10 20 14.0 ± 2.3 60.0 Burger 10 30 13.5 ± 2.1 62.3 Cheeseburger 15 40 19.6 ± 3.8 87.4 Double cheeseburger 23 10 32.0 ± 6.2 215.8 Lettuce sandwich 14 0 19.4 ± 3.5 85.8 Lettuce tomato sandwich 24 0 36.0 ± 7.1 92.1 Multi-ingredient 36â63 0 50.3â70.1 210.5â437.7 The step efficiency (ratio of actual to optimal steps) ranges from 1.3â1.4 for successful simple tasks, indicating reasonably efficient planning when PACE succeeds. The variation in success rates across tasks of similar complexity (e.g., cheese sandwich at 20% vs. lettuce sandwich at 0%) suggests that task structure, not just step count, influences planning difficulty. VI-C Statistical Comparisons Table IV presents statistical comparisons between PACE and key baselines using paired analysis across task instances. All time comparisons show statistically significant differences (p<0.01p<0.01) using the Wilcoxon signed-rank test. Success rate comparisons use McNemarâs test for paired binary outcomes. TABLE IV: Statistical Comparison (Paired Differences) Comparison Î SR (%) Î Time (s) p (Time) p (SR) PACE vs ReAct +5.0 â-19.3 <<0.001 0.12 PACE vs ReAct+Think +4.0 â-1253.6 <<0.001 0.18 PACE vs ReAct+Think(HB512) +1.0 â-201.2 <<0.01 0.64 PACE-C vs ReAct+Think +7.0 â-1256.1 <<0.001 0.06 The time improvements are highly significant across all comparisons. The success rate improvements, while substantial in relative terms, do not reach statistical significance at the α=0.05 level for most comparisons, reflecting the limited sample size and the inherent variability in planning success. The comparison between PACE-C and ReAct+Think approaches significance (p=0.06), suggesting that with larger sample sizes, the success rate improvement may reach conventional significance thresholds. VI-D Pareto Frontier Analysis Figure 2 illustrates the success-rate versus pipeline-time trade-off across all evaluated methods. Each point is annotated with its method name, and vertical bars indicate 95% Wilson score confidence intervals for the success rate. The dashed gray line traces the empirical Pareto frontier: moving from IO through increasingly capable baselines to PACE variants. PACE configurations occupy the upper-left region of the plot, demonstrating that the framework advances the frontier along both dimensions simultaneously. For context, ReAct+Think(HB512) sits at (9%, 397.9 s), while PACE default achieves (10%, 196.8 s)âhigher success rate in approximately half the time. PACE-A further pushes the time boundary to 123.7 s at 10% success, and PACE-C reaches the highest success rate of 13% at 194.3 s. This dual improvement demonstrates that intelligent budget allocation can break the perceived trade-off between planning quality and efficiency. Figure 2: Pareto Frontier of Success Rate vs. Pipeline Time. Baseline methods are shown as open circles with black edges; PACE variants are filled blue triangles. Vertical bars denote 95% Wilson score confidence intervals. The dashed gray line traces the empirical Pareto frontier. PACE configurations dominate all baselines, achieving higher success rates at lower total times. VI-E Budget Control Mechanism Ablation To validate the necessity of the hybrid budget control mechanism, we evaluate four variants with different budget control strategies. Table V presents the results. TABLE V: Budget Control Mechanism Ablation (100 instances, synchronous dataset) Variant Soft Hard SR (%) Steps Think Time (s) Pipeline Time (s) Gap Time (s) Think Hiding PACE-Hard Ă â 5 36.51 162.75 172.06 61.77 65.2% PACE-Soft â Ă 9 43.88 674.56 677.77 513.90 25.4% PACE-Hybrid â â 10 38.33 192.74 196.78 62.02 66.8% PACE-None Ă Ă 6 41.69 1334.55 1450.42 1218.68 0.0% Key findings: 1. PACE-Hard (hard budget only): Achieves the lowest success rate (5%) but highest time efficiency (172 s pipeline time). The hard budget constraint forces truncation at token limits, leading to insufficient reasoning but excellent think hiding (65%). 2. PACE-Soft (soft budget only): Achieves 9% success rate but with significantly increased thinking time (674 s). The soft prompt-based guidance is weakly followed, with the model tending toward longer reasoning. Think hiding drops to 25%. 3. PACE-Hybrid (combined): Achieves 10% success rate with 196.78 s pipeline time and 66.8% think hiding, matching the PACE-default configuration in Table I. The combination of soft guidance and hard truncation preserves reasoning quality while maintaining strict time bounds. 4. PACE-None (no budget control): Despite unlimited reasoning, achieves only 6% success rate with the worst time (1450 s). This validates that unconstrained reasoning leads to âoverthinkingâ without quality improvement. VI-F Budget Allocation Strategy Ablation To validate the Dynamic Budget Allocator (DBA), we compare five budget allocation strategies. Table VI presents the results. TABLE VI: Budget Allocation Strategy Ablation (100 instances, synchronous dataset) Variant Strategy SR (%) Steps Think Time (s) Pipeline Time (s) Gap Time (s) Think Hiding Fixed-Low 100 tokens 2 24.83 80.06 103.14 28.09 64.7% Fixed-Med 300 tokens 8 33.11 171.57 174.30 2.73 60.9% Fixed-High 600 tokens 10 37.60 339.26 341.31 223.18 35.5% Proportional bâtexecb t_exec 11 31.98 157.91 160.17 61.36 65.8% Adaptive bâtexecĂαb t_execĂα 13 37.20 178.50 156.20 78.50 56.0% Key findings: 1. Fixed-Low (100 tokens): Lowest success rate (2%) but fastest pipeline time (103 s). Fixed low budgets severely limit reasoning quality for complex tasks. 2. Fixed-Med (300 tokens): Moderate success rate (8%) with balanced time efficiency (174 s). Lacks adaptivity to varying task demands. 3. Fixed-High (600 tokens): Higher success rate (10%) but with significantly increased thinking time (339 s) and reduced think hiding (35.5%). 4. Proportional: Outperforms all fixed budgets with 11% success rate and excellent time efficiency (160 s). Allocating budget proportional to execution time alone captures significant value. 5. Adaptive (Full DBA): Highest success rate (13%) validates the value of dynamic difficulty coefficient α. The adaptive mechanism automatically increases budget after failures for error recovery. Proportional vs Adaptive: The 2% improvement (11% â 13%) from Adaptive over Proportional comes from the dynamic α adjustment. Proportional provides âpassive adaptationâ based on execution time, while Adaptive adds âactive adaptationâ based on success/failure history. VI-G Budget-Performance Relationship To understand the relationship between thinking budget and success rate, we conduct a sweep across 10 budget levels from 30 to 2400 tokens. Table VII presents the results. TABLE VII: Budget Sweep Results (100 instances, synchronous dataset) Budget SR Steps Think Think Exec Total Pipeline (tokens) (%) Hiding Time (s) Time (s) Time (s) Time (s) 30 0.0 20.29 63.5% 40.04 62.37 102.41 73.60 100 2.0 24.83 64.7% 80.06 75.17 155.23 103.14 200 6.0 26.62 61.7% 114.17 81.70 195.87 124.72 300 8.0 33.11 60.9% 171.57 106.46 278.03 174.30 450 5.0 35.03 39.6% 266.59 101.78 368.37 268.29 600 10.0 37.60 35.5% 339.26 116.08 455.34 341.31 900 8.0 35.29 25.7% 445.81 106.02 551.84 447.82 1200 8.0 37.48 22.8% 517.98 108.29 626.27 520.06 2400 14.0 41.78 20.7% 714.45 123.83 838.28 716.98 Key findings: 1. Budget-success relationship: Success rate generally increases with budget, reaching 14% at 2400 tokens. However, the relationship is not monotonicânotable dips occur at 450 and 900 tokens. 2. Think hiding trend: Low budgets (30â300 tokens) maintain 60â65% think hiding, while high budgets (>>450 tokens) drop to 20â40%. Lower budgets enable better pipeline efficiency. 3. Efficiency optimum: The 300â600 token range offers favorable efficiencyâachieving 8â10% success rate with 171â339 s thinking time, compared to 714 s for 14% at 2400 tokens. 4. Anomalous dips: The unexpected success rate drops at 450 and 900 tokens may indicate truncation at critical reasoning points or random variance (100 instances per configuration). We fit the budget-success curve to a diminishing returns model: SRâ(b)=SRmaxâ (1âeâλâb)+SRminSR(b)=SR_ · (1-e^-λ b )+SR_ (5) With estimated parameters SRminâ0%SR_ â 0\%, SRmaxâ14SR_ â 14â16%, and λâ0.001λâ 0.001. The effective budget threshold for 90% of maximum success rate is approximately 1800â2000 tokens. VII Discussion The experimental results illuminate several key insights about reasoning-efficient planning that extend beyond the immediate empirical findings. The âoverthinkingâ phenomenonâwhere unconstrained reasoning degrades performance despite increased computational investmentâaligns with cognitive science research showing that excessive deliberation can impair decision quality by introducing irrelevant considerations and escalating commitment to suboptimal paths [25, 17]. PACEâs budget constraints serve as a form of cognitive regulation, preventing the model from engaging in unproductive reasoning spirals while preserving essential deliberation for genuinely critical decisions. This finding suggests that the relationship between reasoning depth and planning quality is not monotonic; rather, there exists an optimal reasoning allocation that depends on task structure and temporal constraints. The effectiveness of adaptive budget allocation carries broader implications for LLM deployment in time-critical applications. Rather than treating reasoning as a monolithic capability to be maximized uniformly, our results demonstrate that strategic reasoningâapplied selectively based on context, difficulty, and temporal constraintsâachieves superior outcomes to unconstrained deep reasoning. This principle extends beyond embodied planning to other latency-sensitive domains including conversational AI [4], real-time translation, and interactive code generation. The DBA mechanism provides a template for context-aware resource allocation that could be adapted to these settings, where varying query complexity and response time requirements similarly demand differential reasoning investment. Comparing PACE with prior planning paradigms reveals a fundamental shift in perspective regarding the planning-execution relationship. Traditional optimization focuses on solution quality metrics while treating planning time as an unavoidable cost [10, 9]. PACE introduces temporal efficiency as a first-class objective, demonstrating that the planning process itself can be restructured to exploit domain structure. The pipeline model formalizes this insight mathematically, providing theoretical grounding for future work on time-aware planning algorithms [22]. This perspective aligns with emerging research on efficient AI systems that must operate under real-world constraints rather than idealized evaluation conditions. The practical implications for robotic systems merit particular attention. Current reasoning models are often dismissed as impractical for real-time deployment due to inference latencies measured in minutes per instance. PACE demonstrates that with appropriate architectural modificationsâspecifically, interleaved processing and adaptive budget controlâreasoning models can achieve both high planning quality and acceptable response times. The 6.9Ă acceleration achieved by PACE brings reasoning-enhanced planning from the minute-scale into the tens-of-seconds range, approaching the threshold for interactive robotic applications. The connection to human cognitive processing warrants discussion. Humans routinely engage in concurrent cognitive and physical activityâchefs monitor multiple dishes while preparing ingredients, drivers navigate while conversing, athletes anticipate opponent moves while executing their own actions. PACEâs interleaved architecture mimics this capability, enabling AI systems to exploit temporal structure that humans naturally leverage. The DBA mechanism further parallels human cognitive control, where the prefrontal cortex dynamically allocates attentional resources based on task demands and temporal constraints [16, 14]. This alignment with biological cognition suggests that PACEâs principles may generalize to other domains where resource-limited reasoning must be strategically deployed. Finally, the absolute success rates reported in this work (6â13%) warrant contextual interpretation. Robotouille is deliberately designed as a challenging benchmark for long-horizon planning: even state-of-the-art models such as GPT-4o achieve only 47% on the synchronous dataset and 11% on the asynchronous dataset using the ReAct paradigm [1]. Our use of Qwen3-8B-AWQâa quantized 8B-parameter modelâplaces it significantly below the capability frontier of larger models (e.g., GPT-4o, Llama-3.1-70B). Under these conditions, PACEâs ability to improve success rate over the strongest reasoning baseline (from 6% to 10â13%) while simultaneously reducing planning time by 6.9Ă demonstrates that the frameworkâs benefits are model-agnostic and scale-independent. We expect that deploying PACE with stronger model backbones would yield substantially higher absolute performance while preserving the relative improvements in time efficiency demonstrated here. VIII Limitations This work has several limitations that constrain the generality of conclusions. Dataset scope. The evaluation is conducted on 100 instances from the Robotouille synchronous dataset across 10 task types. We chose the synchronous dataset as our primary evaluation target because it provides deterministic action timingâessential for validating the correctness of our pipeline time model (Equation 2) and DBA budget calculations. The asynchronous dataset introduces time delays (e.g., cooking, frying) where action outcomes depend on temporal conditions, making it substantially more challenging. Pilot experiments confirmed that Qwen3-8B-AWQ achieves near-zero success on asynchronous tasks even without budget constraints, limiting our ability to meaningfully evaluate PACEâs relative benefits in that setting. Future work with stronger model backbones should extend evaluation to asynchronous and multi-agent scenarios. Statistical power. Given the low absolute success rates (6â13%) and sample size of 100 instances per configuration, McNemarâs tests for paired success rate differences do not reach conventional significance thresholds (p>0.05p>0.05) for most comparisons, although time improvements are highly significant (p<0.001p<0.001). This reflects limited statistical power rather than absence of effect: the consistent directional improvement across all PACE variants (10â13% vs. 6% baseline) suggests real benefits that would achieve significance with larger sample sizes. Future evaluations with 300+ instances or multiple temperature seeds would strengthen statistical claims. Model diversity. Experiments use a single model architecture (Qwen3-8B-AWQ). Validation across different model families (Llama, Mistral, DeepSeek), sizes (7B to 70B parameters), and quantization schemes would establish whether PACEâs benefits are robust to model variation. Larger models may exhibit different reasoning behaviors and time-quality trade-offs that affect optimal budget allocation strategies. Physical deployment gap. The simulation-based evaluation assumes deterministic action timing and perfect execution. Physical robots introduce actuation delays, sensor noise, execution failures, and safety constraints not captured in our model. The action time model uses fixed estimates; real execution times vary with environmental conditions, object properties, and system state. Validation on physical platforms would assess PACEâs robustness to these real-world factors. Solution quality metrics. Success rate alone does not capture solution quality dimensions. A plan that achieves the goal through an inefficient 50-step sequence is treated equivalently to one using the optimal 10-step sequence. Future evaluation should incorporate plan quality metrics such as action efficiency, resource consumption, and trajectory optimality. Heuristic budget rules. The current DBA mechanism uses heuristic difficulty rules based on action outcomes. While effective, these rules may not capture subtle task structure variations that affect reasoning requirements. Learning-based approaches that predict optimal budget allocation from task features could potentially improve upon the heuristic strategy, though this would introduce training requirements and potential distribution shift concerns. IX Conclusion PACE demonstrates that reasoning-enhanced LLMs can achieve both high planning quality and time efficiency through interleaved cognitive processing and adaptive budget allocation. By exploiting the temporal structure of embodied tasksâwhere action execution creates natural windows for concurrent reasoningâPACE advances the Pareto frontier of success rate versus completion time, achieving 10â13% success rate with 6.9Ă acceleration compared to unconstrained reasoning. The main findingâthat strategic cognitive effort allocation outperforms both unconstrained and uniformly constrained reasoningâsuggests that time-aware architectural innovations are essential for deploying reasoning models in real-time applications. The principles underlying PACEâtemporal awareness, adaptive resource allocation, and pipeline processingâextend beyond embodied planning to other time-critical AI applications. Future work should pursue validation on physical robotic platforms with real execution delays, extension to multi-agent scenarios where agents coordinate during shared execution windows, integration with hierarchical planning for complex long-horizon tasks, and development of learned budget allocation policies that adapt to task structure. As reasoning models continue to advance in capability, architectural innovations that enable their deployment under real-world constraints will be essential for translating laboratory improvements into practical impact. References [1] G. Gonzalez-Pumariega, L. S. Yean, N. Sunkara, and S. Choudhury, âRobotouille: An asynchronous planning benchmark for LLM agents,â in The Thirteenth International Conference on Learning Representations (ICLR), 2025. [2] OpenAI and W. A. H. N. Wijayagunawardhana, âGpt-4 technical report,â arXiv (Cornell University), 2023. [3] S. Bubeck, V. Chandrasekaran, R. Eldan, J. Gehrke, E. Horvitz, E. Kamar, P. Lee, Y. T. Lee, Y. Li, S. Lundberg, H. Nori, H. Palangi, M. T. Ribeiro, and Y. Zhang, âSparks of artificial general intelligence: Early experiments with gpt-4,â arXiv (Cornell University), 2023. [4] E. Kasneci, K. SeĂler, S. KĂŒchemann, M. Bannert, D. Dementieva, F. Fischer, U. Gasser, G. Groh, S. GĂŒnnemann, E. HĂŒllermeier, S. Krusche, G. Kutyniok, T. Michaeli, C. Nerdel, J. Pfeffer, O. Poquet, M. Sailer, A. Schmidt, T. Seidel, M. Stadler, J. Weller, J. KĂŒhn, and G. Kasneci, âChatgpt for good? on opportunities and challenges of large language models for education,â Learning and Individual Differences, 2023. [5] Y. Guo, Y. Liang, C. Wu, W. Wu, D. Zhao, and N. Duan, âLearning to plan with natural language,â arXiv preprint arXiv:2304.10464, 2023. [6] S. Wang, N. Ding, N. Lin, J. Zhang, and C. Zong, âLanguage cognition and language computation â human and machine language understanding,â arXiv preprint arXiv:2301.04788, 2023. [7] T. Han, Z. Wang, C. Fang, S. Zhao, S. Ma, and Z. Chen, âToken-budget-aware llm reasoning,â arXiv preprint arXiv:2412.18547, 2024. [8] J. Cao, T. Lin, Z. Fan, B. Yuan, Z. Zhao, R. Yan, W. Zhang, and S. Tang, âDraft-thinking: Learning efficient reasoning in long chain-of-thought llms,â arXiv preprint arXiv:2603.00578, 2026. [9] A. Ajay, S. Han, Y. Du, S. Li, A. Gupta, T. Jaakkola, J. Tenenbaum, L. Kaelbling, A. Srivastava, and P. Agrawal, âCompositional foundation models for hierarchical planning,â arXiv preprint arXiv:2309.08587, 2023. [10] C. R. Garrett, T. LozanoâPĂ©rez, and L. P. Kaelbling, âPddlstream: Integrating symbolic planners and blackbox samplers via optimistic adaptive planning,â in Proceedings of the International Conference on Automated Planning and Scheduling, 2020. [11] S. Yao, J. Zhao, D. Yu, N. Du, I. Shafran, K. Narasimhan, and Y. Cao, âReact: Synergizing reasoning and acting in language models,â arXiv preprint arXiv:2210.03629, 2022. [12] K. Valmeekam, M. Marquez, S. Sreedharan, and S. Kambhampati, âOn the planning abilities of large language models: A critical investigation,â arXiv preprint arXiv:2302.06706, 2023. [13] I. Singh, V. Blukis, A. Mousavian, A. Goyal, D. Xu, J. Tremblay, D. Fox, J. Thomason, and A. Garg, âProgprompt: program generation for situated robot task planning using large language models,â Autonomous Robots, 2023. [14] A. Westbrook, R. van den Bosch, J. I. MĂ€tĂ€, L. Hofmans, D. Papadopetraki, R. Cools, and M. J. Frank, âDopamine promotes cognitive effort by biasing the benefits versus costs of cognitive work,â Science, 2020. [15] G. Clay, C. Mlynski, F. M. Korb, T. Goschke, and V. Job, âRewarding cognitive effort increases the intrinsic value of mental labor,â in Proceedings of the National Academy of Sciences, 2022. [16] N. P. Friedman and T. W. Robbins, âThe role of prefrontal cortex in cognitive control and executive function,â Neuropsychopharmacology, 2021. [17] M. Bogdanov, H. Renault, S. LoParco, A. Weinberg, and A. R. Otto, âCognitive effort exertion enhances electrophysiological responses to rewarding outcomes,â Cerebral Cortex, 2021. [18] T. Parr, E. Holmes, K. Friston, and G. Pezzulo, âCognitive effort and active inference,â Neuropsychologia, 2023. [19] V. Fuentes, H. A. Karim, M. J. T. Tan, and N. AlDahoul, âAi with agency: a vision for adaptive, efficient, and ethical healthcare,â Frontiers in Digital Health, 2025. [20] A. Bolu and Ămer Korçak, âAdaptive task planning for multi-robot smart warehouse,â IEEE Access, 2021. [21] X. Zhong, J. Tian, H. Hu, and X. Peng, âHybrid path planning based on safe a* algorithm and adaptive window approach for mobile robot in large-scale dynamic environment,â Journal of Intelligent & Robotic Systems, 2020. [22] M. P. Strub and J. D. Gammell, âAdaptively informed trees (ait*): Fast asymptotically optimal path planning through adaptive heuristics,â in 2020 IEEE International Conference on Robotics and Automation (ICRA), p. 10583â10589, 2020. [23] K. Gochev, B. J. Cohen, J. Butzke, A. Safonova, and M. Likhachev, âPath planning with adaptive dimensionality,â in Proceedings of the International Symposium on Combinatorial Search, 2021. [24] S. Choudhury, N. Gruver, and M. J. Kochenderfer, âAdaptive informative path planning with multimodal sensing,â arXiv preprint arXiv:2003.09746, 2020. [25] J. Shepherd, âConscious cognitive effort in cognitive control,â Wiley Interdisciplinary Reviews Cognitive Science, 2022.