Reason--Imagine--Act: Closed-Loop LLM Decision Making with World Models for Autonomous Driving

arXiv cs.AI Papers

Summary

Proposes Reason-Imagine-Act (RIA), a closed-loop framework coupling an LLM reasoner with an action-conditioned world model for online safety verification in autonomous driving, achieving 80.05% route completion and 0.20% collision rate in CARLA simulations.

arXiv:2605.24004v1 Announce Type: new Abstract: Large language models (LLMs) are promising for autonomous driving, but semantics-only decision policies can yield physically unsafe behavior in dynamic traffic. Existing methods either perform online language reasoning without explicit dynamics verification or use world models mainly in offline pipelines, leaving a gap between semantic intent and physical feasibility at decision time. We propose Reason--Imagine--Act (RIA), a closed-loop framework that couples an LLM reasoner with an action-conditioned world model for online safety verification. At each step, the LLM proposes an action template and candidate sub-actions, the world model performs short-horizon rollouts, and a safety scorer selects the safest executable action with feedback to the next reasoning step. Under a unified CARLA point-goal protocol (1000 episodes), RIA achieves 80.05% route completion, 51.10% arrival rate, and 0.20% collision rate. Under the same closed-loop interface, RIA consistently outperforms training-free baselines, including CARLA TM and MADA, on core closed-loop metrics. For reproducibility, code is available at https://github.com/pku-smart-city/source_code/tree/main/RIA.
Original Article
View Cached Full Text

Cached at: 05/26/26, 09:04 AM

# Reason–Imagine–Act: Closed-Loop LLM Decision Making with World Models for Autonomous Driving
Source: [https://arxiv.org/html/2605.24004](https://arxiv.org/html/2605.24004)
Zhengqi Sun1, Yiwen Sun2,3,\*, Boxuan Liu4, Tailai Chen5, Tianxu Guo6, and Jiabin Liu6This work was supported by the National Natural Science Foundation of China under Grant No\. 62503015\.

###### Abstract

Large language models \(LLMs\) are promising for autonomous driving, but semantics\-only decision policies can yield physically unsafe behavior in dynamic traffic\. Existing methods either perform online language reasoning without explicit dynamics verification or use world models mainly in offline pipelines, leaving a gap between semantic intent and physical feasibility at decision time\. We proposeReason–Imagine–Act \(RIA\), a closed\-loop framework that couples an LLM reasoner with an action\-conditioned world model for online safety verification\. At each step, the LLM proposes an action template and candidate sub\-actions, the world model performs short\-horizon rollouts, and a safety scorer selects the safest executable action with feedback to the next reasoning step\. Under a unified CARLA point\-goal protocol \(1000 episodes\), RIA achieves 80\.05% route completion, 51\.10% arrival rate, and 0\.20% collision rate\. Under the same closed\-loop interface, RIA consistently outperforms training\-free baselines, including CARLA TM and MADA, on core closed\-loop metrics\. For reproducibility, code is available at[https://github\.com/pku\-smart\-city/source\_code/tree/main/RIA](https://github.com/pku-smart-city/source_code/tree/main/RIA)\.

## IIntroduction

Autonomous driving is undergoing a profound paradigm shift from traditional modular pipelines—typically decomposed into perception, prediction, and planning—towards model\-centric decision\-making driven by large foundation models\. Such large\-scale pre\-trained models have demonstrated strong transferability and generalization, motivating the community to revisit how “intelligence” should be implemented in the driving stack\. In particular, Large Language Models \(LLMs\) introduce powerful common\-sense reasoning and semantic understanding, enabling agents to interpret traffic rules, explain decisions, and generalize to previously unseen long\-tail situations\.

![Refer to caption](https://arxiv.org/html/2605.24004v1/x1.png)Figure 1:Overview of the proposed Reason–Imagine–Act framework\. The LLM proposes high\-level intents and candidates, the world model imagines short\-horizon futures, and the safety scorer selects the safest executable action with feedback to close the loop\.Despite these promising capabilities, deploying LLMs directly for real\-time driving decisions faces a fundamental obstacle:*the lack of physical grounding*\. Trained primarily on textual or multimodal semantic corpora, LLMs often behave as a “brain in a vat”: they can generate logically coherent high\-level commands \(e\.g\., “execute emergency avoidance”\), yet they do not precisely capture vehicle dynamic constraints, nor can they reliably anticipate the numerical consequences of commands in continuous physical space\. This decoupling between semantic logic and physical reality leads to severe*physical hallucinations*, where the generated intention is kinematically/dynamically infeasible and thus threatens driving safety\.

Meanwhile, World Models \(WMs\) have shown substantial potential for capturing physical regularities by learning environment evolution and supporting multi\-step prediction\. However, existing studies on world models for autonomous driving predominantly emphasize offline video generation quality or their use as auxiliary predictors during pre\-training, while tight integration with LLM\-level reasoning for*real\-time*decision\-making is still limited\. As a result, high\-level reasoning is often “rule\-aware but physics\-agnostic”, whereas world models are “dynamics\-aware but intent\-agnostic”, leaving a clear gap between semantic decision logic and physically grounded execution\.

To bridge this gap, we propose a novel closed\-loop autonomous driving framework, termedReason–Imagine–Act\. The key idea is to tightly couple LLM\-based high\-level semantic reasoning with WM\-based numerical dynamics prediction in the decision loop\. Concretely, the LLM first generates a high\-level driving intent; the world model then performs multi\-step physical rollouts conditioned on this intent to reveal potential collision risks or kinematic/dynamic violations*before*execution\. The resulting physical feedback further refines action selection and is fed back to the reasoning module, enabling a “think\-before\-acting” loop that mitigates physically unsafe decisions\.

We validate the proposed framework in the high\-fidelity 3D simulator CARLA under point\-goal navigation in complex urban dynamics\. Experimental results show that, compared with a vanilla LLM baseline, our framework significantly improves route completion while substantially reducing the Collision Rate \(ColR\)\. Under an identical closed\-loop interface, our method also outperforms other training\-free baselines in challenging scenarios, demonstrating the practical value of integrating semantic reasoning with physically grounded imagination\.

In this paper, we focus on*inference\-time*deployment without parameter updates \(i\.e\., no fine\-tuning or additional policy training\)\. Accordingly, our comparisons are restricted to methods that can be reproduced under the same CARLA closed\-loop interface and evaluation protocol\.

Contributions\.Our main contributions are three\-fold:

- •To the best of our knowledge, this is the first work to tightly couple an LLM reasoner with an action\-conditioned world model in a closed\-loop driving decision pipeline for online*think\-before\-acting*verification\.
- •We proposeReason–Imagine–Act, a WM\-augmented decision mechanism that evaluates template\-conditioned candidate sub\-actions via short\-horizon rollouts and feeds physical verification signals back to the LLM for iterative correction\.
- •Under the same closed\-loop interface, our method consistently outperforms comparable training\-free baselines, achieving stronger route\-completion and collision outcomes\. In closed\-loop CARLA evaluation, compared with the LLM w/o WM verification variant, our full method improves RC from 61\.21% to 80\.05% and AR from 30\.20% to 51\.10%, while reducing ColR from 0\.40% to 0\.20%\.

## IIRelated Work

### II\-ALarge Language Models for Autonomous Driving

With the rapid progress of large foundation models, recent research has explored leveraging large language/vision\-language models to improve decision making, interpretability, and generalization in autonomous driving\[[1](https://arxiv.org/html/2605.24004#bib.bib1)\]\. A first line of work treats LLMs \(or multimodal LLMs\) as*high\-level reasoners*that operate on structured scene descriptions or learned tokens, producing semantic decisions or plans that can be executed by downstream controllers or planners\[[2](https://arxiv.org/html/2605.24004#bib.bib2),[3](https://arxiv.org/html/2605.24004#bib.bib3)\]\. These systems emphasize commonsense reasoning, rule understanding, and explanatory outputs, and often incorporate memory, reflection, or hierarchical planning to handle long\-horizon tasks\. Related ITSC studies also investigate real\-vehicle personalization and human\-language interaction, including field\-tested command\-to\-control systems with memory adaptation\[[4](https://arxiv.org/html/2605.24004#bib.bib4)\]and multimodal warning generation for driver\-assistance personalization\[[5](https://arxiv.org/html/2605.24004#bib.bib5)\]\.

A second line of work pushes toward*end\-to\-end closed\-loop*driving with LLMs/VLMs by conditioning on multi\-view sensors \(and sometimes vehicle states\) and directly generating trajectories or low\-level control signals\[[6](https://arxiv.org/html/2605.24004#bib.bib6),[7](https://arxiv.org/html/2605.24004#bib.bib7),[8](https://arxiv.org/html/2605.24004#bib.bib8)\]\. To better balance reasoning quality and real\-time constraints, recent approaches introduce efficient inference schemes such as switching between “fast” and “slow” modes or progressively refining trajectories with language\-vision synergy\[[9](https://arxiv.org/html/2605.24004#bib.bib9),[10](https://arxiv.org/html/2605.24004#bib.bib10)\]\. Despite encouraging progress, many LLM\-based driving systems still struggle with*grounding*under distribution shift: high\-level decisions that are semantically plausible often become physically unsafe when facing complex urban dynamics, rare interactions, or out\-of\-distribution motion patterns\. This motivates mechanisms that can enforce feasibility and safety through explicit physical feedback during inference, rather than relying solely on semantic consistency\.

### II\-BWorld Models for Autonomous Driving

World models aim to learn predictive representations of environment evolution, enabling counterfactual reasoning, planning, and data augmentation\. Early successes in model\-based RL and latent dynamics modeling motivate adopting learned forward models for decision making in driving\-like domains\[[11](https://arxiv.org/html/2605.24004#bib.bib11),[12](https://arxiv.org/html/2605.24004#bib.bib12)\]\. In autonomous driving, a prominent direction focuses on*generative world models*that synthesize future driving observations \(e\.g\., multi\-view videos\) for simulation, augmentation, or evaluation\[[13](https://arxiv.org/html/2605.24004#bib.bib13),[14](https://arxiv.org/html/2605.24004#bib.bib14)\]\. These models are valuable for controllable scenario generation and improving robustness of perception and prediction, but are often used offline\.

More recent efforts emphasize*structured 3D/BEV world representations*for forecasting and planning\. Occupancy\-centric world models predict the evolution of fine\-grained 3D scene states and can support planning by evaluating candidate ego actions in the predicted future\[[15](https://arxiv.org/html/2605.24004#bib.bib15),[16](https://arxiv.org/html/2605.24004#bib.bib16)\]\. Related works also explore feeding compact 3D representations into large models \(e\.g\., occupancy tokens\) to improve spatial understanding and forecasting\[[17](https://arxiv.org/html/2605.24004#bib.bib17)\]\. However, integrating world models into real\-time decision loops remains challenging: many systems either \(i\) use world models primarily as offline generators or pretraining auxiliaries, or \(ii\) perform planning with limited interaction between high\-level reasoning and low\-level dynamics\.

In contrast to using world models solely for generation or as passive predictors, our work highlights the importance of*closed\-loop coupling*between high\-level semantic reasoning and action\-conditioned dynamics rollouts, so that candidate intents can be assessed and refined with numerical physical feedback before execution\.

## IIIMethodology

### III\-AOverview of Reason–Imagine–Act

We propose a closed\-loop decision\-making framework,Reason–Imagine–Act \(RIA\), to align high\-level semantic reasoning with low\-level physical feasibility in autonomous driving\. At each control cyclett, RIA couples a large language model \(LLM\) with an action\-conditioned world model \(WM\) to perform*think\-before\-acting*verification\. Herettdenotes the discrete control\-step index\.

High\-level idea\.Reason:the LLM ingests the current state and environment description together with short\-term behavior memory, and selects a*discrete*driving*action template*\(e\.g\., lane change, speed adjustment\)\.Imagine:conditioned on the chosen template, the WM performs short\-horizon rollouts over a small set of*sub\-actions*\(parameterizations / primitives\) to predict future trajectories and interactions\.Act:the system selects the safest sub\-action by a safety score and executes it through a TM\-based control backend, while returning the verification outcomes and execution summary back to the LLM to close the loop\.

Figure[2](https://arxiv.org/html/2605.24004#S3.F2)shows the complete Reason–Imagine–Act closed\-loop pipeline\.

![Refer to caption](https://arxiv.org/html/2605.24004v1/image_ria_v2.png)Figure 2:Reason–Imagine–Act \(RIA\) closed\-loop framework\. The LLM proposes an action template; the WM performs short\-horizon rollouts over candidate sub\-actions; a safety scorer selects the safest option and feeds back physical verification signals to the LLM\.Notation\.Letoto\_\{t\}denote raw observations \(e\.g\., ego states, traffic lights, nearby agents\), andsts\_\{t\}denote the structured state used by both the LLM and the WM\. The LLM outputs a discrete templategt∈𝒢g\_\{t\}\\in\\mathcal\{G\}and a set of candidates𝒰​\(gt\)=\{ut\(j\)\}j=1J\\mathcal\{U\}\(g\_\{t\}\)=\\\{u\_\{t\}^\{\(j\)\}\\\}\_\{j=1\}^\{J\}\(sub\-actions\) under this template\. The WM predicts a rollout trajectoryτ^t\(j\)=\{s^t\+1\(j\),…,s^t\+H\(j\)\}\\hat\{\\tau\}\_\{t\}^\{\(j\)\}=\\\{\\hat\{s\}\_\{t\+1\}^\{\(j\)\},\\ldots,\\hat\{s\}\_\{t\+H\}^\{\(j\)\}\\\}for each candidate\. A safety scorer returns a scalar scoreS​\(τ^t\(j\)\)S\(\\hat\{\\tau\}\_\{t\}^\{\(j\)\}\)and choosesut⋆=arg⁡maxj⁡S​\(τ^t\(j\)\)u\_\{t\}^\{\\star\}=\\arg\\max\_\{j\}S\(\\hat\{\\tau\}\_\{t\}^\{\(j\)\}\)for execution, wherejjis the candidate index,JJis the number of candidate sub\-actions, andHHis the rollout horizon \(in control steps\)\.

### III\-BWorld Model Training

We train an action\-conditioned world model to predict short\-horizon environment evolution under ego actions\. Our WM follows a latent dynamics formulation inspired by recurrent state\-space models \(RSSM\)\[[18](https://arxiv.org/html/2605.24004#bib.bib18)\]\.

##### State representation\.

At each step, we construct a compact structured statests\_\{t\}by aggregating: \(i\)egofeatures \(position, velocity, yaw, acceleration, lane\-center offset, route progress\), \(ii\)roadfeatures \(lane topology, route direction, speed limit, traffic light state, distance to stop line, and distance to lane boundaries\), and \(iii\)socialfeatures \(relative pose/velocity of surrounding vehicles and pedestrians\)\. The action inputata\_\{t\}corresponds to the executed low\-level control signal \(or a sub\-action parameterization\) used during data collection\. These geometric quantities make rule and road violations \(e\.g\., lane\-boundary crossing, off\-road, and red\-light related crossing risk\) directly computable from predicted states\.

##### Social attention encoding\.

To model multi\-agent coupling around the ego vehicle, we use an attention\-based social encoder over nearby agents\. Given the ego tokenxex\_\{e\}and neighbor tokens\{xi\}i=1N\\\{x\_\{i\}\\\}\_\{i=1\}^\{N\}at steptt, we compute

αi=softmaxi​\(\(Wq​xe\)⊤​\(Wk​xi\)d\),ct=∑i=1Nαi​Wv​xi,\\alpha\_\{i\}=\\mathrm\{softmax\}\_\{i\}\\\!\\left\(\\frac\{\(W\_\{q\}x\_\{e\}\)^\{\\top\}\(W\_\{k\}x\_\{i\}\)\}\{\\sqrt\{d\}\}\\right\),\\quad c\_\{t\}=\\sum\_\{i=1\}^\{N\}\\alpha\_\{i\}\\,W\_\{v\}x\_\{i\},\(1\)wherectc\_\{t\}is the social context feature\. This design allows the WM to prioritize interaction risk instead of raw distance, so high\-closing\-speed cut\-ins can dominate attention even if they are not the nearest objects\.

##### Model architecture\.

The WM maintains a latent belief statehth\_\{t\}updated recurrently:

ht=fdyn​\(ht−1,zt−1,at−1\),h\_\{t\}=f\_\{\\text\{dyn\}\}\(h\_\{t\-1\},z\_\{t\-1\},a\_\{t\-1\}\),\(2\)whereztz\_\{t\}is the stochastic latent variable inferred from the current observation/state\. Herefdyn​\(⋅\)f\_\{\\text\{dyn\}\}\(\\cdot\)denotes the latent transition function\. In implementation, the encoder follows a spatial\-temporal factorization\. The spatial branch computes social contextctc\_\{t\}from ego\-neighbor interaction tokens, and the temporal branch applies a GRU over the fused sequencext=\[st;ct\]x\_\{t\}=\[s\_\{t\};c\_\{t\}\]to encode second\-order trends \(e\.g\., acceleration and yaw\-rate evolution\):

h~t=GRU​\(xt,h~t−1\)\.\\tilde\{h\}\_\{t\}=\\mathrm\{GRU\}\(x\_\{t\},\\tilde\{h\}\_\{t\-1\}\)\.\(3\)The fused latent feature is used to inferq​\(zt\|st,ht\)q\(z\_\{t\}\|s\_\{t\},h\_\{t\}\), and the decoder predicts residual dynamics

s^t\+1=st\+gdec​\(ht,zt,at\),\\hat\{s\}\_\{t\+1\}=s\_\{t\}\+g\_\{\\text\{dec\}\}\(h\_\{t\},z\_\{t\},a\_\{t\}\),\(4\)which is numerically more stable than direct absolute\-state regression in closed\-loop rollouts\. We use action\-conditioning to model trajectory bifurcation under different candidate controls\.

##### Data collection\.

We collect trajectories by combining an expert policy \(e\.g\., CARLA Traffic Manager\) with controlled perturbations to cover both nominal and near\-failure regimes \(e\.g\., close cut\-ins, hard braking, lane boundary violations\)\. Specifically, we use expert\-guided noise exploration withϵ=0\.2\\epsilon=0\.2to increase coverage of near\-collision and off\-road precursor states\. To strengthen boundary learning, we additionally keep short critical windows immediately before failure events \(collision, off\-road, and lane\-boundary crossing\) in the training set\. The dataset consists of tuples\(st,at,st\+1\)\(s\_\{t\},a\_\{t\},s\_\{t\+1\}\)with fixed control frequency\. In each tuple,sts\_\{t\}is the current structured state,ata\_\{t\}is the executed action at steptt, andst\+1s\_\{t\+1\}is the next\-step state\.

##### Training objective\.

We optimize the WM with a multi\-step prediction loss over horizonHH:

ℒWM=1H​∑k=1Hγk​‖s^t\+k−st\+k‖22\+λ​ℒlatent,\\mathcal\{L\}\_\{\\text\{WM\}\}=\\frac\{1\}\{H\}\\sum\_\{k=1\}^\{H\}\\gamma^\{k\}\\left\\\|\\hat\{s\}\_\{t\+k\}\-s\_\{t\+k\}\\right\\\|\_\{2\}^\{2\}\\;\+\\;\\lambda\\,\\mathcal\{L\}\_\{\\text\{latent\}\},\(5\)whereγ∈\(0,1\]\\gamma\\in\(0,1\]discounts long\-horizon errors andℒlatent\\mathcal\{L\}\_\{\\text\{latent\}\}denotes standard latent regularization \(e\.g\., KL terms\)\. Herekkis the rollout offset index andλ\\lambdabalances prediction accuracy and latent regularization\. We train the WM until short\-horizon forecasts are stable enough to support online verification\.

##### Design choices for closed\-loop verification\.

Our WM is explicitly configured for online safety screening instead of long\-horizon video synthesis\. First, compact structured states make key safety predicates directly measurable from rollouts \(lane departure, front\-gap collapse, and stop\-line risk\), without additional perception post\-processing\. Second, social attention and temporal recurrence are decoupled: the former selects interaction relevance in the current scene, and the latter tracks motion continuity across time\. Third, residual action\-conditioned decoding preserves control sensitivity, so different candidate sub\-actions from the same state produce distinguishable counterfactual futures\. Fourth, near\-failure\-window sampling improves transition modeling around safety boundaries, which is exactly where closed\-loop ranking decisions are most sensitive\. Fifth, we use the same state variables for WM rollout scoring and TM control adaptation, keeping the verification semantics consistent from prediction to execution\.

##### From prediction fidelity to decision utility\.

Our objective in closed\-loop driving is not long\-horizon pixel\-level realism, but reliable*candidate ordering*within a short reaction window\. At each decision step, the WM is used to rank a small action set𝒰​\(gt\)\\mathcal\{U\}\(g\_\{t\}\)by predicted safety\. This requires three properties: \(i\) local geometric accuracy around safety boundaries, \(ii\) consistent action sensitivity so rollout branches do not collapse, and \(iii\) semantic consistency between prediction variables and scoring variables\. The above architectural choices are designed around this ranking objective, which is why we prioritize 1 s rollout fidelity and boundary\-transition coverage in training\.

### III\-CAgent Design and WM\-Augmented Decision Loop

Our agent builds upon the modular agent design of MADA\[[19](https://arxiv.org/html/2605.24004#bib.bib19)\]and replaces direct rule\-based arbitration with an LLM\-driven template selection plus WM\-based short\-horizon verification\. We use the DeepSeek API as the LLM backend\[[20](https://arxiv.org/html/2605.24004#bib.bib20)\]\. Crucially, verification outcomes are fed back to the LLM as persistent physical feedback, enabling iterative correction across time rather than one\-shot candidate ranking\.

#### III\-C1LLM inputs

The LLM prompt is structured into three parts:

- •Current State & Environment\.Ego speed, speed limit, current/next road direction, traffic light state, leading vehicles and pedestrians, lane\-change permissions, and any detected constraints\.
- •Previous Driving Behaviors\.A short memory buffer containing recent decisions, executed sub\-actions, and key verification outcomes to reduce oscillations \(e\.g\., repeated lane\-change toggling\)\.
- •Driver Prompt \(System Instruction\)\.A strict schema that constrains output format and action space, requiring structured JSON responses \(decision \+ rationale \+ candidate set\)\.

#### III\-C2Discrete action templates

The LLM selects one template from a discrete set𝒢\\mathcal\{G\}:

- •“stop”: emergency stop\.
- •“speed up” / “speed down” / “maintain speed”: adjust target speed while tracking route\.
- •“lane changing left” / “lane changing right”: switch target lane and re\-generate a local path\.
- •“normal behavior”: continue lane\-keeping navigation under traffic rules\.

Each template induces a small candidate set of*sub\-actions*𝒰​\(gt\)\\mathcal\{U\}\(g\_\{t\}\), e\.g\., target speed levels, braking intensity profiles, steering bias parameters, or lane\-change aggressiveness settings\. This discretization keeps the reasoning space compact while allowing physically grounded refinement\. In implementation, each template maps to a small predefined intensity group: speed\-up/speed\-down/stop use soft\-base\-hard triplets, maintain\-speed uses minus\-base\-plus, lane\-change templates use gentle\-base\-fast, and normal\-behavior uses a conservative four\-level set \(maintain, decelerate, hard decelerate, stop\)\. If a template has no predefined group, refinement is skipped and the original template action is executed\.

#### III\-C3WM\-based short\-horizon evaluation \(Imagine\)

After the LLM choosesgtg\_\{t\}, the WM evaluates the candidate sub\-actions:

1. 1\.Feature extraction\.Buildsts\_\{t\}from real\-time observations \(ego \+ road \+ social\)\.
2. 2\.Belief update\.Update WM hidden state using the last executed action and the newly observed state\.
3. 3\.Rollout\.For each candidateut\(j\)∈𝒰​\(gt\)u\_\{t\}^\{\(j\)\}\\in\\mathcal\{U\}\(g\_\{t\}\), roll outHHsteps to obtainτ^t\(j\)\\hat\{\\tau\}\_\{t\}^\{\(j\)\}\.
4. 4\.Safety scoring\.ComputeS​\(τ^t\(j\)\)S\(\\hat\{\\tau\}\_\{t\}^\{\(j\)\}\)\(higher is safer\) and selectut⋆u\_\{t\}^\{\\star\}\.
5. 5\.Fallback rules\.Apply hard constraints as pre\-rollout short\-circuit and post\-scoring override \(e\.g\., immediate brake on imminent collision\)\.

##### Safety scoring\.

In implementation, we first compute a rollout penalty cost

C​\(τ^t\(j\)\)=pcrit\+pdist\+plane,C\(\\hat\{\\tau\}\_\{t\}^\{\(j\)\}\)=p\_\{\\mathrm\{crit\}\}\+p\_\{\\mathrm\{dist\}\}\+p\_\{\\mathrm\{lane\}\},\(6\)where

pcrit=100⋅𝟏\[dmin<3\.0\],pdist=max\(0,8\.0−dmin\)2,p\_\{\\mathrm\{crit\}\}=100\\cdot\\mathbf\{1\}\[d\_\{\\min\}<3\.0\],\\quad p\_\{\\mathrm\{dist\}\}=\\max\(0,8\.0\-d\_\{\\min\}\)^\{2\},\(7\)anddmind\_\{\\min\}is the minimum predicted distance to surrounding agents along rolloutτ^t\(j\)\\hat\{\\tau\}\_\{t\}^\{\(j\)\}\. Letlmaxl\_\{\\max\}be the maximum lateral offset in the rollout, and letblc∈\{0,1\}b\_\{\\mathrm\{lc\}\}\\in\\\{0,1\\\}indicate whether the template is a lane\-change action\. The lane term is

plane=blc​planelc\+\(1−blc\)​planenlc,p\_\{\\mathrm\{lane\}\}=b\_\{\\mathrm\{lc\}\}\\,p\_\{\\mathrm\{lane\}\}^\{\\mathrm\{lc\}\}\+\(1\-b\_\{\\mathrm\{lc\}\}\)\\,p\_\{\\mathrm\{lane\}\}^\{\\mathrm\{nlc\}\},\(8\)where superscriptslc\\mathrm\{lc\}andnlc\\mathrm\{nlc\}denote lane\-change and non\-lane\-change cases, respectively\.

planelc=2\.0​max⁡\(0,lmax−2\.8\),p\_\{\\mathrm\{lane\}\}^\{\\mathrm\{lc\}\}=2\.0\\max\(0,l\_\{\\max\}\-2\.8\),\(9\)planenlc=8\.0​max⁡\(0,lmax−1\.5\)\.p\_\{\\mathrm\{lane\}\}^\{\\mathrm\{nlc\}\}=8\.0\\max\(0,l\_\{\\max\}\-1\.5\)\.\(10\)We select the candidate with minimum cost and use an equivalent safety score definitionS​\(τ^\)=−C​\(τ^\)S\(\\hat\{\\tau\}\)=\-C\(\\hat\{\\tau\}\)in the algorithmic description\. Hard constraints are applied in two stages: a pre\-rollout short\-circuit for imminent front\-collision risk, and a post\-scoring override if all rollout candidates violate critical thresholds\. If there is only one candidate, it is used directly; if rollout fails/returns empty, we fall back to the middle\-intensity candidate when available\.

#### III\-C4TM\-based low\-level execution

Our low\-level controller is CARLA Traffic Manager \(TM\)\. The RIA module does not directly output continuous throttle/brake/steer commands; instead, it outputs high\-level templates and sub\-actions that are mapped to TM behavior parameters and route\-following options \(e\.g\., target speed adjustment, lane\-change intent, and conservative vs\. aggressive passing preference\)\. TM then produces executable control commands at each simulator step\. For safety\-critical situations, our hard\-rule fallback \(e\.g\., emergency braking\) can override normal TM behavior\. Sub\-actions are mapped to calibrated intensity parameters, e\.g\., speed\-up increments \(0\.25/0\.5/1\.00\.25/0\.5/1\.0\), speed\-down decrements \(0\.8/1\.5/2\.50\.8/1\.5/2\.5\), maintain\-speed offsets \(−1/0/\+1\-1/0/\+1km/h around recent speed\), and lane\-change speed bias \(−3/0/\+3\-3/0/\+3km/h\)\. The soft\-stop variant additionally caps braking authority \(brake≤0\.4\\mathrm\{brake\}\\leq 0\.4\)\. TM also consumes four WM hints \(front\-gap distance, front time\-to\-collision, normalized lane offset, and static\-obstacle\-ahead distance\) to form a risk score

r=rgap\+rttc\+rstatic\+rlane,r=r\_\{\\mathrm\{gap\}\}\+r\_\{\\mathrm\{ttc\}\}\+r\_\{\\mathrm\{static\}\}\+r\_\{\\mathrm\{lane\}\},\(11\)with bucketized increments: front gap below 3/6/10 m adds 3/2/1\. TTC below 1\.5/2\.5/4\.0 s adds 3/2/1\. Static\-obstacle distance below 4/8 m adds 2/1\. Lane\-offset norm above 1\.1/1\.3 adds 1/2\. TM mode is then selected byrr\. Ifr≥5r\\geq 5, we use high\-risk mode \(follow distance 5\.0 m, speed reduction at least 30%, random lane change disabled\)\. If3≤r<53\\leq r<5, we use medium\-risk mode \(follow distance 3\.0 m, speed reduction at least 15%, restricted lane change\)\. Ifr<3r<3, we keep the low\-risk baseline \(follow distance 1\.8 m with template\-conditioned speed/lane\-change settings\)\.

#### III\-C5Closed\-loop execution and feedback \(Act\)

The selected sub\-actionut⋆u\_\{t\}^\{\\star\}is passed to the TM backend for low\-level execution\. We log the executed action and the WM verification summary into the memory buffer, and provide a compact physical feedback message to the LLM at the next step \(e\.g\., “predicted side\-collision under candidate lane\-change; chose mild brake”\)\. This completes the RIA loop and enables iterative self\-correction over time\. In Algorithm[1](https://arxiv.org/html/2605.24004#alg1),ϕ​\(⋅\)\\phi\(\\cdot\)maps observations to structured states,mtm\_\{t\}is the behavior memory at steptt,rtr\_\{t\}is the LLM rationale output,S\(j\)S^\{\(j\)\}is the score of candidateut\(j\)u\_\{t\}^\{\(j\)\}, andete\_\{t\}is the execution summary\.

Algorithm 1Reason–Imagine–Act \(RIA\) Decision Loop1:Observation

oto\_\{t\}, memory

mt−1m\_\{t\-1\}, WM hidden state

ht−1h\_\{t\-1\}
2:Build structured state

st←ϕ​\(ot\)s\_\{t\}\\leftarrow\\phi\(o\_\{t\}\)
3:Reason:

\(gt,𝒰​\(gt\),rt\)←LLM​\(st,mt−1\)\(g\_\{t\},\\mathcal\{U\}\(g\_\{t\}\),r\_\{t\}\)\\leftarrow\\text\{LLM\}\(s\_\{t\},m\_\{t\-1\}\)
4:if

HardRisk​\(st\)\\text\{HardRisk\}\(s\_\{t\}\)then

5:

ut⋆←SafeFallback​\(gt\)u\_\{t\}^\{\\star\}\\leftarrow\\text\{SafeFallback\}\(g\_\{t\}\); execute

ut⋆u\_\{t\}^\{\\star\}, obtain

ete\_\{t\}
6:

qt←hard\_triggerq\_\{t\}\\leftarrow\\text\{hard\\\_trigger\}
7:

mt←UpdateMem​\(mt−1,gt,ut⋆,et,qt\)m\_\{t\}\\leftarrow\\text\{UpdateMem\}\(m\_\{t\-1\},g\_\{t\},u\_\{t\}^\{\\star\},e\_\{t\},q\_\{t\}\)
8:returnexecuted action

ut⋆u\_\{t\}^\{\\star\}
9:endif

10:Update belief:

ht←WMUpdate​\(ht−1,st,at−1\)h\_\{t\}\\leftarrow\\text\{WMUpdate\}\(h\_\{t\-1\},s\_\{t\},a\_\{t\-1\}\)
11:for all

ut\(j\)∈𝒰​\(gt\)u\_\{t\}^\{\(j\)\}\\in\\mathcal\{U\}\(g\_\{t\}\)do

12:Imagine:

τ^t\(j\)←Rollout​\(WM,ht,st,ut\(j\),H\)\\hat\{\\tau\}\_\{t\}^\{\(j\)\}\\leftarrow\\text\{Rollout\}\(\\text\{WM\},h\_\{t\},s\_\{t\},u\_\{t\}^\{\(j\)\},H\)
13:Score:

S\(j\)←S​\(τ^t\(j\)\)S^\{\(j\)\}\\leftarrow S\(\\hat\{\\tau\}\_\{t\}^\{\(j\)\}\)
14:endfor

15:

ut⋆←arg⁡maxj⁡S\(j\)u\_\{t\}^\{\\star\}\\leftarrow\\arg\\max\_\{j\}S^\{\(j\)\}
16:Apply post\-scoring hard override when critical constraints are violated

17:Act:execute

ut⋆u\_\{t\}^\{\\star\}, obtain execution summary

ete\_\{t\}
18:

qt←maxj⁡S\(j\)q\_\{t\}\\leftarrow\\max\_\{j\}S^\{\(j\)\}
19:

mt←UpdateMem​\(mt−1,gt,ut⋆,et,qt\)m\_\{t\}\\leftarrow\\text\{UpdateMem\}\(m\_\{t\-1\},g\_\{t\},u\_\{t\}^\{\\star\},e\_\{t\},q\_\{t\}\)
20:returnexecuted action

ut⋆u\_\{t\}^\{\\star\}

## IVExperiments

### IV\-AExperimental Setup

##### Simulator\.

We evaluate in CARLA 0\.9\.15\[[21](https://arxiv.org/html/2605.24004#bib.bib21)\]with synchronous stepping and a fixed controller update frequency\. All methods share the same perception interface \(privileged simulator state\)\. Each baseline keeps its native low\-level control implementation, while our method uses the TM\-based backend described in Sec\.[III\-C](https://arxiv.org/html/2605.24004#S3.SS3)\.

##### Tasks: random point\-goal navigation\.

We consider a randomized point\-goal navigation task: each episode samples a start and a goal waypoint, and the agent must reach the goal under realistic traffic while obeying traffic rules\. We run1000episodes across randomly selected maps with an identical route sampling strategy and identical traffic generation policy for all compared methods\.

##### Maps\.

We evaluate on multiple CARLA towns and randomly sample map\-route combinations during evaluation\.

##### Traffic generation\.

We use CARLA Traffic Manager \(TM\) to spawn background traffic with identical parameters across methods: number of vehiclesNv=30N\_\{v\}=30, number of pedestriansNp=8N\_\{p\}=8, global speed difference, minimum following distance, and traffic light compliance\. We also fix weather presets to reduce variance, unless explicitly studying generalization\.

### IV\-BWorld Model Prediction Quality

As a prerequisite for closed\-loop comparison, we first verify whether the WM is accurate enough for online candidate screening\. We evaluate 1 s prediction quality on a held\-out dataset built with the same state/action interface used during deployment\. Table[I](https://arxiv.org/html/2605.24004#S4.T1)reports displacement, heading, and speed errors of WM rollouts\. These values indicate that short\-horizon rollout errors remain in a regime where relative candidate ranking is stable: the model preserves lane\-level geometry and heading evolution while maintaining usable velocity trends for TTC/front\-gap estimation\. This is sufficient for the*Imagine*stage, whose goal is online risk ordering among a small candidate set, rather than exact long\-horizon trajectory reconstruction\. For context, Table[II](https://arxiv.org/html/2605.24004#S4.T2)lists reported open\-loop trajectory metrics from a recent CARLA\-based study\[[22](https://arxiv.org/html/2605.24004#bib.bib22)\]\.

TABLE I:1 s world\-model prediction quality on held\-out data\.TABLE II:Reference metrics from\[[22](https://arxiv.org/html/2605.24004#bib.bib22)\]\(open\-loop CARLA trajectory prediction\)\.Note: this external table is for scale reference only\. Protocols differ in objective \(open\-loop trajectory prediction vs\. action\-conditioned rollout verification\), horizon, evaluated agent set, and metric aggregation\.

TABLE III:Closed\-loop point\-goal navigation results on 1000 episodes with safety/comfort indicators\.RedL: red\-light violations/route; Stop: stop\-sign violations/route; OffR: offroad events/route; HB: hard\-brake events/route; HJ: high\-jerk events/route; MAJ: mean absolute jerk\.

### IV\-CCompared Methods

We evaluate under an inference\-time, no\-parameter\-update deployment constraint\. All compared agents run with the same CARLA closed\-loop interface and evaluation protocol, without additional policy/value training or fine\-tuning in our setup\. Under this constraint set, MADA is used as the primary external baseline, and TM/LLM variants are included as internal baselines to isolate the contribution of WM verification\. We compare the following methods\.

##### RIA \(ours, with WM verification and feedback\)\.

OurReason–Imagine–Actagent uses an LLM to select a discrete action template and candidate sub\-actions\. The world model performs short\-horizon rollout verification and the safest candidate is executed through TM\.

##### LLM w/o WM verification\.

This variant keeps the same LLM and action space but removes world\-model verification\. Without WM risk cues, the TM execution layer tends to select relatively conservative actions\.

##### CARLA TM\.

The native Traffic Manager policy in CARLA\[[21](https://arxiv.org/html/2605.24004#bib.bib21)\]is used as a non\-LLM reference baseline\.

##### MADA baseline policy\.

We include the MADA policy\[[19](https://arxiv.org/html/2605.24004#bib.bib19)\]as a strong LLM\-driven baseline under the same deployment constraint and interface\. The main quantitative comparison is reported in Sec\.[IV\-F](https://arxiv.org/html/2605.24004#S4.SS6)\(Table[III](https://arxiv.org/html/2605.24004#S4.T3)\)\.

### IV\-DMetrics

Following the finalized evaluation protocol in this work, aligned with CARLA Leaderboard\-style evaluation and prior CARLA closed\-loop studies\[[23](https://arxiv.org/html/2605.24004#bib.bib23),[24](https://arxiv.org/html/2605.24004#bib.bib24),[11](https://arxiv.org/html/2605.24004#bib.bib11)\], we report:

- •Average Route Completion \(RC, %\): average percentage of route distance completed\.
- •Arrival Rate \(AR, %\): percentage of episodes that successfully reach the goal\.
- •Collision Rate \(ColR, %\): percentage of episodes with at least one collision\.
- •Red\-light Violations per Route \(RedL\): average number of red\-light violations per route\.
- •Stop\-sign Violations per Route \(Stop\): average number of stop\-sign violations per route\.
- •Offroad Events per Route \(OffR\): average number of offroad events per route\.
- •Hard\-brake Events per Route \(HB\): average number of hard\-brake events per route\.
- •High\-jerk Events per Route \(HJ\): average number of high\-jerk events per route\.
- •Mean Absolute Jerk \(MAJ\): average absolute jerk magnitude over executed trajectories\.

The comfort\-related jerk indicators are reported as supplementary behavior quality signals, which are common in trajectory/behavior analysis settings\[[25](https://arxiv.org/html/2605.24004#bib.bib25)\]\.

### IV\-EImplementation Details

We use the DeepSeek V3\.2 API\[[20](https://arxiv.org/html/2605.24004#bib.bib20)\]as the reasoning module and keep the same template/sub\-action space for all LLM\-based variants\. The deployed configuration follows Sec\.[III\-C](https://arxiv.org/html/2605.24004#S3.SS3): fixed JSON\-structured prompting, template\-conditioned candidate generation, 1 s WM rollout screening, and hard\-rule fallback in safety\-critical cases\. HereJJis the number of candidates per template andHHis the rollout horizon\.Code Availability\.Code and evaluation scripts are available at[https://github\.com/pku\-smart\-city/source\_code/tree/main/RIA](https://github.com/pku-smart-city/source_code/tree/main/RIA)\.

### IV\-FExperimental Findings

Table[III](https://arxiv.org/html/2605.24004#S4.T3)reports the closed\-loop results\. We summarize the key findings as follows\.

##### Finding 1: WM verification is the primary source of gain\.

Compared withLLM w/o WM verification, adding WM rollout screening improves RC from 61\.21% to 80\.05%, AR from 30\.20% to 51\.10%, and reduces ColR from 0\.40% to 0\.20%\. Behavior\-level metrics also improve substantially: OffR drops from 0\.28 to 0\.19, HB from 207\.41 to 24\.58, HJ from 87\.85 to 54\.77, and MAJ from 97\.43 to 31\.21\.

##### Finding 2: RIA gives the strongest overall closed\-loop task performance\.

AgainstCARLA TMandMADA, RIA achieves the best RC/ColR profile \(RC: 80\.05 vs\. 46\.47/21\.88, ColR: 0\.20 vs\. 16\.00/53\.00\) and the best AR \(51\.10 vs\. 13\.40/22\.40\), showing clear gains in route completion and safety outcomes\.

##### Finding 3: Most safety/comfort indicators improve, with explicit trade\-offs\.

RIA is lower than both external baselines on RedL, Stop, HB, HJ, and MAJ\. Relative to MADA, RIA is also much lower on OffR \(0\.19 vs\. 1\.71\)\. Relative to TM, the main trade\-off is OffR \(0\.19 vs\. 0\.00\), while RIA remains clearly better on RC/AR/ColR\. Taken together, this indicates a stronger overall balance under the same closed\-loop interface\.

## VConclusion

We presentedReason–Imagine–Act, a closed\-loop autonomous driving framework that bridges high\-level LLM reasoning with physically grounded decision making via an action\-conditioned world model\. By evaluating candidate sub\-actions through short\-horizon rollouts and feeding back physical verification signals to the LLM, our system mitigates physically infeasible or unsafe decisions that can arise from purely semantic policies\.

Extensive experiments in CARLA 0\.9\.15 on randomized point\-goal navigation across multiple towns show that our complete RIA configuration achieves higher route completion and success rates while substantially reducing collisions and infractions compared to an LLM\-only baseline, with consistent gains over strong training\-free baselines under the same closed\-loop interface\.

## References

- \[1\]Y\. Li, K\. Katsumata, E\. Javanmardi, and M\. Tsukada, “Large language models for human\-like autonomous driving: A survey,” in*2024 IEEE 27th International Conference on Intelligent Transportation Systems \(ITSC\)*\. IEEE, 2024, pp\. 439–446\.
- \[2\]L\. Wen, D\. Fu, X\. Li, X\. Cai, T\. MA, P\. Cai, M\. Dou, B\. Shi, L\. He, and Y\. Qiao, “Dilu: A knowledge\-driven approach to autonomous driving with large language models,” in*The Twelfth International Conference on Learning Representations*, 2024\.
- \[3\]X\. Tian, J\. Gu, B\. Li, Y\. Liu, Y\. Wang, Z\. Zhao, K\. Zhan, P\. Jia, X\. Lang, and H\. Zhao, “Drivevlm: The convergence of autonomous driving and large vision\-language models,” in*8th Annual Conference on Robot Learning*, 2025\.
- \[4\]C\. Cui, Z\. Yang, Y\. Zhou, Y\. Ma, J\. Lu, L\. Li, Y\. Chen, J\. Panchal, and Z\. Wang, “Personalized autonomous driving with large language models: Field experiments,” in*2024 IEEE 27th International Conference on Intelligent Transportation Systems \(ITSC\)*\. IEEE, 2024, pp\. 20–27\.
- \[5\]Z\. Xu, T\. Chen, and S\. Chen, “A LLM\-based multimodal warning system for driver assistance,” in*2024 IEEE 27th International Conference on Intelligent Transportation Systems \(ITSC\)*\. IEEE, 2024, pp\. 1527–1532\.
- \[6\]H\. Shao, Y\. Hu, L\. Wang, G\. Song, S\. L\. Waslander, Y\. Liu, and H\. Li, “Lmdrive: Closed\-loop end\-to\-end driving with large language models,” in*Proceedings of the IEEE/CVF conference on computer vision and pattern recognition*, 2024, pp\. 15 120–15 130\.
- \[7\]Z\. Xu, Y\. Zhang, E\. Xie, Z\. Zhao, Y\. Guo, K\.\-Y\. K\. Wong, Z\. Li, and H\. Zhao, “Drivegpt4: Interpretable end\-to\-end autonomous driving via large language model,”*IEEE Robotics and Automation Letters*, vol\. 9, no\. 10, pp\. 8186–8193, 2024\.
- \[8\]Z\. Xu, Y\. Bai, Y\. Zhang, Z\. Li, F\. Xia, K\.\-Y\. K\. Wong, J\. Wang, and H\. Zhao, “Drivegpt4\-v2: Harnessing large language model capabilities for enhanced closed\-loop autonomous driving,” in*2025 IEEE/CVF Conference on Computer Vision and Pattern Recognition \(CVPR\)*\. IEEE Computer Society, 2025, pp\. 17 261–17 270\.
- \[9\]Z\. Zhou, T\. Cai, S\. Z\. Zhao, Y\. Zhang, Z\. Huang, B\. Zhou, and J\. Ma, “Autovla: A vision\-language\-action model for end\-to\-end autonomous driving with adaptive reasoning and reinforcement fine\-tuning,” in*The Thirty\-ninth Annual Conference on Neural Information Processing Systems*, 2025\.
- \[10\]X\. Chen, L\. Huang, T\. Ma, R\. Fang, S\. Shi, and H\. Li, “Solve: Synergy of language\-vision and end\-to\-end networks for autonomous driving,” in*Proceedings of the Computer Vision and Pattern Recognition Conference*, 2025, pp\. 12 068–12 077\.
- \[11\]Q\. Li, X\. Jia, S\. Wang, and J\. Yan, “Think2drive: Efficient reinforcement learning by thinking with latent world model for autonomous driving \(in carla\-v2\),” in*European conference on computer vision*\. Springer, 2024, pp\. 142–158\.
- \[12\]H\. Wang, X\. Ye, F\. Tao, C\. Pan, A\. Mallik, B\. Yaman, L\. Ren, and J\. Zhang, “Adawm: Adaptive world model based planning for autonomous driving,”*arXiv preprint arXiv:2501\.13072*, 2025\.
- \[13\]X\. Wang, Z\. Zhu, G\. Huang, X\. Chen, J\. Zhu, and J\. Lu, “Drivedreamer: Towards real\-world\-drive world models for autonomous driving,” in*European conference on computer vision*\. Springer, 2024, pp\. 55–72\.
- \[14\]G\. Zhao, X\. Wang, Z\. Zhu, X\. Chen, G\. Huang, X\. Bao, and X\. Wang, “Drivedreamer\-2: Llm\-enhanced world models for diverse driving video generation,” in*Proceedings of the AAAI Conference on Artificial Intelligence*, vol\. 39, no\. 10, 2025, pp\. 10 412–10 420\.
- \[15\]W\. Zheng, W\. Chen, Y\. Huang, B\. Zhang, Y\. Duan, and J\. Lu, “Occworld: Learning a 3d occupancy world model for autonomous driving,” in*European conference on computer vision*\. Springer, 2024, pp\. 55–72\.
- \[16\]Y\. Yang, J\. Mei, Y\. Ma, S\. Du, W\. Chen, Y\. Qian, Y\. Feng, and Y\. Liu, “Driving in the occupancy world: Vision\-centric 4d occupancy forecasting and planning via world models for autonomous driving,” in*Proceedings of the AAAI Conference on Artificial Intelligence*, vol\. 39, no\. 9, 2025, pp\. 9327–9335\.
- \[17\]T\. Xu, H\. Lu, X\. Yan, Y\. Cai, B\. Liu, and Y\. Chen, “Occ\-llm: Enhancing autonomous driving with occupancy\-based large language models,” in*2025 IEEE International Conference on Robotics and Automation \(ICRA\)*\. IEEE, 2025, pp\. 8434–8441\.
- \[18\]D\. Hafner, T\. Lillicrap, I\. Fischer, R\. Villegas, D\. Ha, H\. Lee, and J\. Davidson, “Learning latent dynamics for planning from pixels,” in*International conference on machine learning*\. PMLR, 2019, pp\. 2555–2565\.
- \[19\]R\. Yang, X\. Zhang, A\. Fernandez\-Laaksonen, X\. Ding, and J\. Gong, “Driving style alignment for llm\-powered driver agent,” in*2024 IEEE/RSJ International Conference on Intelligent Robots and Systems \(IROS\)*\. IEEE, 2024, pp\. 11 318–11 324\.
- \[20\]DeepSeek, “DeepSeek API Docs,”[https://api\-docs\.deepseek\.com/](https://api-docs.deepseek.com/), 2026, online; accessed February 26, 2026\.
- \[21\]A\. Dosovitskiy, G\. Ros, F\. Codevilla, A\. Lopez, and V\. Koltun, “Carla: An open urban driving simulator,” in*Conference on Robot Learning*\. PMLR, 2017, pp\. 1–16\.
- \[22\]X\. Chen, R\. Bhadani, Z\. Sun, and L\. Head, “Msma: Multi\-agent trajectory prediction in connected and autonomous vehicle environment with multi\-source data integration,” in*CICTP 2024*, 2024, pp\. 268–278\.
- \[23\]“Evaluation criteria for the leaderboard 2\.0,”[http://leaderboard\.carla\.org/evaluation\_v2\_0/](http://leaderboard.carla.org/evaluation_v2_0/), 2026, cARLA Autonomous Driving Leaderboard; accessed February 28, 2026\.
- \[24\]D\. Chen, B\. Zhou, V\. Koltun, and P\. Krähenbühl, “Learning by cheating,” in*Conference on Robot Learning*\. PMLR, 2020, pp\. 66–75\.
- \[25\]X\. Chen, M\. Zhu, K\. Chen, P\. Wang, H\. Lu, H\. Zhong, X\. Han, X\. Wang, and Y\. Wang, “Follownet: A comprehensive benchmark for car\-following behavior modeling,”*Scientific Data*, vol\. 10, no\. 1, p\. 828, 2023\.

Similar Articles

Simulate, Reason, Decide: Scientific Reasoning with LLMs for Simulation-Driven Decision Making

arXiv cs.AI

Researchers from the University of Michigan introduce MechSim, a mechanism-grounded neuro-symbolic reasoning framework that enables LLM agents to reason about the internal assumptions, dependencies, and execution behavior of scientific simulators rather than treating them as black boxes. The framework improves explanation quality and decision-making reliability across high-stakes domains like healthcare, finance, and public policy.

Agentic Chain-of-Thought Steering for Efficient and Controllable LLM Reasoning

Hugging Face Daily Papers

ACTS (Agentic Chain-of-Thought Steering) formulates LLM reasoning control as a Markov decision process where a controller agent adaptively steers a frozen reasoner during inference using reasoning strategies and steering phrases. The approach achieves comparable accuracy to full-thinking models with significant token savings, enabling controllable accuracy-efficiency trade-offs.