DeAR: Decentralized Agentic Reasoning via Capability Grounding and Collaborative Thought Navigation

arXiv cs.AI Papers

Summary

DeAR is a decentralized agentic reasoning framework that enhances accuracy in knowledge-intensive reasoning tasks through capability grounding and collaborative thought navigation, outperforming centralized methods on multimodal benchmarks.

arXiv:2608.17282v1 Announce Type: new Abstract: Existing agentic reasoning systems typically rely on centralized protocols. This design introduces routing bottlenecks and static role allocations that often fail when handling complex multimodal queries. We propose DeAR (Decentralized Agentic Reasoning), a framework that shifts from central control to autonomous peer-to-peer collaboration. DeAR is built on three mechanisms: (1) decentralized capability grounding for query-dependent agent specialization, (2) thought map navigation for targeted peer interactions, and (3) topology update for adaptive error correction. Evaluations across 9 diverse multimodal reasoning and text-based QA benchmarks indicate that DeAR consistently outperforms recent baseline methods, validating that decentralized and adaptive collaboration among agents enhances accuracy in knowledge-intensive reasoning tasks. The source code will be available at https://open_upon_acceptance.
Original Article
View Cached Full Text

Cached at: 08/19/26, 09:57 AM

# DeAR: Decentralized Agentic Reasoning via Capability Grounding and Collaborative Thought Navigation
Source: [https://arxiv.org/html/2608.17282](https://arxiv.org/html/2608.17282)
###### Abstract

Existing agentic reasoning systems typically rely on centralized protocols\. This design introduces routing bottlenecks and static role allocations that often fail when handling complex multimodal queries\. We proposeDeAR\(DecentralizedAgenticReasoning\), a framework that shifts from central control to autonomous peer\-to\-peer collaboration\. DeAR is built on three mechanisms: \(1\) decentralized capability grounding for query\-dependent agent specialization, \(2\) thought map navigation for targeted peer interactions, and \(3\) topology update for adaptive error correction\. Evaluations across 9 diverse multimodal reasoning and text\-based QA benchmarks indicate that DeAR consistently outperforms recent baseline methods, validating that decentralized and adaptive collaboration among agents enhances accuracy in knowledge\-intensive reasoning tasks\. The source code will be available athttps://open\_upon\_acceptance\.

## Introduction

Complex reasoning represents the frontier of Large Language Model \(LLM\) applications, demanding capabilities that extend far beyond simple pattern matching\. To address this,Agentic Reasoninghas emerged as a proven and effective paradigm\([49](https://arxiv.org/html/2608.17282#bib.bib41)\)\. By decomposing intricate problems into manageable sub\-tasks handled by specialized agents, agentic workflows have achieved remarkable proficiency in multi\-step problem solving\([50](https://arxiv.org/html/2608.17282#bib.bib4)\)\.

Despite these successes, current agentic reasoning systems\([51](https://arxiv.org/html/2608.17282#bib.bib23)\)frequently encounter significant stumbling blocks, particularly when handling complex multimodal queries\. Consider the task in Figure[1](https://arxiv.org/html/2608.17282#Sx1.F1), which asks how many people in a specific image were born after World War II\. A standard single agent often fails here because it cannot simultaneously manage fine\-grained visual recognition and historical knowledge retrieval\. Furthermore, in a centralized multi\-agent framework, a planner rigidly assigns visual extraction to one agent and factual querying to another\. If an agent misidentifies a person or hallucinates a birth year, the central "Judge" node becomes a severe bottleneck\. It blindly aggregates these flawed intermediate results without peer verification, resulting in an incorrect final answer\.

![Refer to caption](https://arxiv.org/html/2608.17282v1/motivation.png)Figure 1:Framework comparison on a multimodal query \("How many people in the image were born after World War II?"\)\. \(a\) Single agent fails due to restricted knowledge domains\. \(b\) Centralized framework fails as the judge bottleneck propagates incorrect inputs\. \(c\) DeAR \(Ours\) succeeds by grounding capabilities and navigating an adaptive thought map to collaboratively verify facts and yield the correct answer\.We argue that these failures stem from structural flaws within the Centralized Collaboration Protocol rather than deficient model capabilities\. In these topologies, a central coordinator monopolizes routing and aggregation\([38](https://arxiv.org/html/2608.17282#bib.bib24)\), inducing severe information loss and strict single\-point bottlenecks\([33](https://arxiv.org/html/2608.17282#bib.bib49)\)\. Consequently, this rigid role allocation\([14](https://arxiv.org/html/2608.17282#bib.bib45)\)fails to adapt to fluid, query\-dependent reasoning, forcing dynamic problems into static workflows that misroute tasks and propagate unverified errors downstream\.

In the real world, complex problem\-solving follows a different topology\. It is inherentlydecentralized\. Interdisciplinary experts do not wait for a single omniscient manager to dictate every micro\-interaction; they engage in peer\-to\-peer discourse, negotiate boundaries, and self\-organize to bridge knowledge gaps\.

However, this decentralized paradigm remains largely unexplored in the context of agentic reasoning\.To bridge this gap, we proposeDeAR\(DecentralizedAgenticReasoning\), a framework designed to bypass the bottlenecks of centralization by enabling agents to reason and collaborate autonomously\. The evolving reasoning context is maintained not by a hidden system layer, but as a dynamic message payload passed directly through peer\-to\-peer token streams\. Realizing robust decentralized reasoning requires addressing three challenges, which we tackle by restructuring role allocation, collaboration mechanisms, and reasoning paths:

- •Dynamic capability vs\. Static role: Centralized systems often rely on pre\-defined roles\([8](https://arxiv.org/html/2608.17282#bib.bib25)\), allowing the coordinator to route requests by labels\. But role labels are a weak proxy for real competence and are precisely what causes coordinators to hallucinate capabilities in open\-ended scenarios\. We address this by replacing static labels with a*dynamic capability grounding*mechanism\. Agents actively assess their own suitability for a specific query fragment based on verifiable linguistic benchmarks, ensuring that role allocation is query\-dependent and driven by actual competence rather than rigid titles\.
- •Local graph navigation vs\. Central routing: In centralized pipelines\([39](https://arxiv.org/html/2608.17282#bib.bib26)\), the coordinator acts as a global router that dictates a linear execution path\. To eliminate this central bottleneck while maintaining selective collaboration, we propose a*collaboration propensity matrix*, which intuitively functions as a dynamicadjacency matrixdefining the edges of our reasoning graph\. Analogous to sociolinguistic alignment, this matrix establishes a decision boundary\. Instead of a central judge computing a global sequential route, the currently active agent performs a*local graph traversal*, independently selecting its optimal downstream peer based on the current context\.
- •Progressive reasoning vs\. Restarting: In centralized systems, if a reasoning chain breaks, the “Judge” often has to discard the entire trajectory and restart, which is highly inefficient\. We propose that decentralized reasoning should be viewed as collaborative navigation over an agentic thought map\. Rather than fragile linear chains, our agents maintain a shared topological map of the reasoning space\. This allows for*progressive reasoning*: if a path proves invalid, agents do not retreat to the starting line\. Instead, they efficiently pivot from the current node, utilizing the thought map to explore alternative effective chains without losing the progress made thus far\.

More details are provided in Section[DeAR Framework](https://arxiv.org/html/2608.17282#Sx3)\.

## Related work

Recent studies show that multi\-agent systems improve the robustness and interpretability of Large Language Models \(LLMs\) and Multimodal Large Language Models \(MLLMs\) by coordinating agents with complementary capabilities\. These frameworks facilitate complex task decomposition, intermediate state sharing, and dynamic workflow management\([11](https://arxiv.org/html/2608.17282#bib.bib1)\)\. Consequently, multi\-agent collaboration has been applied successfully across diverse domains, including mathematical reasoning\([42](https://arxiv.org/html/2608.17282#bib.bib2)\)and visual question answering, where iterative planning and reversible reasoning enhance overall performance\([43](https://arxiv.org/html/2608.17282#bib.bib3)\)\.

To address complex multi\-step reasoning tasks, recent frameworks explore distributing cognitive loads across specialized agents\([15](https://arxiv.org/html/2608.17282#bib.bib42);[27](https://arxiv.org/html/2608.17282#bib.bib6)\)\. While debate\-based approaches\([50](https://arxiv.org/html/2608.17282#bib.bib4);[23](https://arxiv.org/html/2608.17282#bib.bib50);[21](https://arxiv.org/html/2608.17282#bib.bib51)\)and linear reasoning paths allow for the refinement of intermediate states\([12](https://arxiv.org/html/2608.17282#bib.bib5)\), they heavily rely on rigid, centralized coordination protocols\. For instance, AutoGen\([41](https://arxiv.org/html/2608.17282#bib.bib46)\)depends on static topologies governed by central managers, AgentVerse\([2](https://arxiv.org/html/2608.17282#bib.bib47)\)dictates synchronous pipelines under central evaluators, and DyLAN\([28](https://arxiv.org/html/2608.17282#bib.bib48)\)requires a global ranker for layer\-wise filtering\. Even dynamic routing frameworks like AgentNet\([45](https://arxiv.org/html/2608.17282#bib.bib22)\)lack query\-dependent capability grounding and adaptive error correction\. This persistent centralized bottleneck limits adaptability, incurs redundant computational overhead, and leaves systems vulnerable to hallucinated competencies and compounding reasoning errors, highlighting the critical need for a decentralized collaborative architecture\.

## DeAR Framework

![Refer to caption](https://arxiv.org/html/2608.17282v1/main.png)Figure 2:An overview of theDecentralizedAgenticReasoning framework\.In this section, we presentDecentralizedAgenticReasoning framework in which agents autonomously decide when and with whom to collaborate during question answering\. The execution of DeAR proceeds in three phases, corresponding to the three challenges identified in the introduction\.

### Overview

The core of DeAR is to navigate anAgentic Thought Map, where nodes represent reasoning states and edges represent collaboration probabilities\. This navigation is governed by a dynamicCollaboration Propensity Matrix𝒞∈ℝN×N\\mathcal\{C\}\\in\\mathbb\{R\}^\{N\\times N\}, which encodes the likelihood of beneficial interaction between agent pairs based on their grounded capabilities\. As agents traverse the map, they generate a sequence of knowledge states𝒦\\mathcal\{K\}\. If a path leads to a dead end \(i\.e\., fails to generate a valid answeryy\), the system employs aprogressive refinementstrategy, updating the matrix𝒞\\mathcal\{C\}to prune invalid edges and steer the navigation toward effective reasoning chains\. The system𝒮\\mathcal\{S\}is defined as:

𝒮=\(Q,𝒜,𝒞,𝒦\)\.\\mathcal\{S\}=\(Q,\\mathcal\{A\},\\mathcal\{C\},\\mathcal\{K\}\)\.\(1\)
As illustrated in Figure[2](https://arxiv.org/html/2608.17282#Sx3.F2), the algorithm consists of three parts\.

### Decentralized Capability Grounding

To address the limitations of static role pre\-definition, DeAR implementsDecentralized Capability Grounding\. At initialization, agents are not assigned rigid labels \(e\.g\., “Math Agent”\)\. Instead, each agentaia\_\{i\}grounds its identity in verifiable linguistic benchmarks derived from its underlying official technical reports or model cards, denoted as𝒫i\\mathcal\{P\}\_\{i\}\.

Rather than relying on externally assigned task labels or groundless self\-assessments, we characterize each agent’s capability along a set of fundamental cognitive dimensions commonly required in question answering\. Specifically, each agent maintains an intrinsic capability profile:

𝝉i=\[τicr,τiea,τinc,τifr,τicm\],\\boldsymbol\{\\tau\}\_\{i\}=\\left\[\\tau\_\{i\}^\{\\text\{cr\}\},\\tau\_\{i\}^\{\\text\{ea\}\},\\tau\_\{i\}^\{\\text\{nc\}\},\\tau\_\{i\}^\{\\text\{fr\}\},\\tau\_\{i\}^\{\\text\{cm\}\}\\right\],\(2\)whereτicr\\tau\_\{i\}^\{\\text\{cr\}\},τiea\\tau\_\{i\}^\{\\text\{ea\}\},τinc\\tau\_\{i\}^\{\\text\{nc\}\},τicm\\tau\_\{i\}^\{\\text\{cm\}\},andτifr\\tau\_\{i\}^\{\\text\{fr\}\}denote the agent’s proficiency in commonsense reasoning, explanatory ability, numerical computation, natural language comprehension ,and factual reliability, respectively\. The detailed prompt templates and alignment protocols employed for this calibration mechanism are provided in Appendix\.

Crucially, these continuous values do not originate from arbitrary text reading\. They are based on explicit mappings of quantitative benchmark data extracted from𝒫i\\mathcal\{P\}\_\{i\}\. Letsids\_\{i\}^\{d\}represent the raw accuracy score of agentaia\_\{i\}on a standard dataset corresponding to dimensiondd\. For instance,sincs\_\{i\}^\{\\text\{nc\}\}is derived from the GSM8K benchmark,sicrs\_\{i\}^\{\\text\{cr\}\}from MMLU, andsifrs\_\{i\}^\{\\text\{fr\}\}from TruthfulQA\. To resolve the inconsistency of reporting standards across different foundational models, we apply a calibration mechanism during the system initialization phase\. The raw scores are projected into the\[0,1\]\[0,1\]interval and normalized across allNNagents using a Softmax operation:

τid=exp⁡\(sid\)∑k=1Nexp⁡\(skd\),d∈\{cr,ea,nc,fr,cm\}\.\\tau\_\{i\}^\{d\}=\\frac\{\\exp\(s\_\{i\}^\{d\}\)\}\{\\sum\_\{k=1\}^\{N\}\\exp\(s\_\{k\}^\{d\}\)\},\\quad d\\in\\\{\\text\{cr\},\\text\{ea\},\\text\{nc\},\\text\{fr\},\\text\{cm\}\\\}\.\(3\)This mapping mechanism ensures that the capability values𝝉i\\boldsymbol\{\\tau\}\_\{i\}of all agents are rigorously quantified and strictly comparable on the same scale\.

Upon receiving a queryqq, agentaia\_\{i\}dynamically contextualizes its profile based on the query requirements and its technical report𝒫i\\mathcal\{P\}\_\{i\}, producing aQuery\-Dependent Capability State:

𝝉i​\(q\)=Φi​\(q,𝒫i,𝝉i\),\\boldsymbol\{\\tau\}\_\{i\}\(q\)=\\Phi\_\{i\}\\left\(q,\\mathcal\{P\}\_\{i\},\\boldsymbol\{\\tau\}\_\{i\}\\right\),\(4\)whereΦi​\(⋅\)\\Phi\_\{i\}\(\\cdot\)denotes the agent’s internal reasoning operator, implemented via prompting, which evaluates the task context against the agent’s calibrated benchmark profile\.

Finally, the knowledge or intermediate reasoning generated by agentaia\_\{i\}is conditioned on the query and this capability state:

𝒦i=Θi​\(q∣𝝉i​\(q\)\)\.\\mathcal\{K\}\_\{i\}=\\Theta\_\{i\}\\left\(q\\mid\\boldsymbol\{\\tau\}\_\{i\}\(q\)\\right\)\.\(5\)Here,Θi​\(⋅\)\\Theta\_\{i\}\(\\cdot\)denotes the LLM’s generative reasoning process driven by its parametric knowledge, yielding the intermediate results𝒦i\\mathcal\{K\}\_\{i\}\. By evaluating peer benchmark reports, agentaia\_\{i\}quantitatively estimates their strengths, forming the basis to compute the collaboration propensityci,jc\_\{i,j\}and construct the decentralized thought map\.

### Self\-Organized Collaboration

Figure 3:Thought Map Navigation Construction among AgentsTo replace centralized routing with local consensus, we introduce a mechanism forSelf\-Organized Collaboration\. Each agentaia\_\{i\}autonomously evaluates the potential utility of peering with every other agentaja\_\{j\}under the current query context\.To initiate the decentralized reasoning trajectory, the first active agent is selected uniformly at random from the agent pool\. This evaluation forms a Collaboration Propensity Vectorcic\_\{i\}:

ci=\[ci,1,ci,2,…,ci,N\],c\_\{i\}=\\left\[c\_\{i,1\},\\,c\_\{i,2\},\\,\\ldots,\\,c\_\{i,N\}\\right\],\(6\)whereci,j∈\[0,1\]c\_\{i,j\}\\in\[0,1\]is the collaboration preference towards agentaja\_\{j\}\. Given a query mapping to a cognitive dimensiondd,ci,jc\_\{i,j\}is calculated via a temperature\-scaled Softmax over the calibrated proficiencyτjd\\tau\_\{j\}^\{d\}defined in Equation 3:

ci,j=exp⁡\(τjd/T\)∑k=1,k≠iNexp⁡\(τkd/T\),∀j≠ic\_\{i,j\}=\\frac\{\\exp\(\\tau\_\{j\}^\{d\}/T\)\}\{\\sum\_\{k=1,k\\neq i\}^\{N\}\\exp\(\\tau\_\{k\}^\{d\}/T\)\},\\quad\\forall j\\neq i\(7\)whereT\>0T\>0controls routing sharpness\. Sinceτjd∈\[0,1\]\\tau\_\{j\}^\{d\}\\in\[0,1\]is bounded, this formulation inherently prevents exponential overflow, guaranteeing absolute numerical stability\. By definition, self\-collaboration is disallowed:

ci,i=0,∀i∈\{1,2,…,N\}\.c\_\{i,i\}=0,\\quad\\forall i\\in\\\{1,2,\\ldots,N\\\}\.\(8\)
Aggregating the collaboration preference vectors from all agents yields a collaboration matrix𝒞\\mathcal\{C\}:

𝒞=\(0c1,2⋯c1,Nc2,10⋯c2,N⋮⋮⋱⋮cN,1cN,2⋯0\)\\mathcal\{C\}=\\left\(\\begin\{array\}\[\]\{cccc\}0&c\_\{1,2\}&\\cdots&c\_\{1,N\}\\\\ c\_\{2,1\}&0&\\cdots&c\_\{2,N\}\\\\ \\vdots&\\vdots&\\ddots&\\vdots\\\\ c\_\{N,1\}&c\_\{N,2\}&\\cdots&0\\end\{array\}\\right\)\(9\)This matrix encodes pairwise and directed collaboration preferences among agents, reflecting both agent heterogeneity and task\-specific requirements\. Unlike static routing strategies or centralized coordination mechanisms, the collaboration structure here is dynamically shaped by each agent’s local assessment under the current query\. Although the base ranking ofci,jc\_\{i,j\}reflects target capabilities, it avoids global ranking degeneration by activating agents on an as\-needed basis\. The cumulative context𝒦i\\mathcal\{K\}\_\{i\}from operatorΘi\\Theta\_\{i\}imbues the payload with source\-specificity, achieving context\-dependent collaboration\.

#### Thought Map Navigation construction

Based on the collaboration matrix𝒞\\mathcal\{C\}, agents construct a collaboration path in a sequential manner\. The objective of this process is to determine an ordered sequence of agents such that the knowledge generated by each selected agent is incrementally propagated and refined through interaction\.

The navigation begins with a randomly selected seed agent \(or the most relevant initial agent\)\. At stepii, the current agentaia\_\{i\}acts as a local navigator, selecting the next node \(agentaja\_\{j\}\) that maximizes the collaboration propensity\. The incremental utility of transitioning to an unvisited agentaja\_\{j\}is:

ui​\(aj\)=\{ci,j,aj∉𝒱i,0,aj∈𝒱i\.u\_\{i\}\(a\_\{j\}\)=\\begin\{cases\}c\_\{i,j\},&a\_\{j\}\\notin\\mathcal\{V\}\_\{i\},\\\\ 0,&a\_\{j\}\\in\\mathcal\{V\}\_\{i\}\.\\end\{cases\}\(10\)The next agentai\+1a\_\{i\+1\}is chosen by

ai\+1=arg⁡maxaj∈𝒜​ui​\(aj\)a\_\{i\+1\}=\\arg\\max\_\{a\_\{j\}\\in\\mathcal\{A\}\}u\_\{i\}\(a\_\{j\}\)\(11\)
The selected agent then generates its knowledge conditioned on the input query and the accumulated context formed by the union of knowledge generated by previously selected agents, i\.e\.,⋃k=1i𝒦k\\bigcup\_\{k=1\}^\{i\}\\mathcal\{K\}\_\{k\}\. This creates a chain of thought that exploits the strongest collaborative edges in the map\.

Through sequential selection and knowledge propagation, agents autonomously construct a thought map that progressively integrates complementary reasoning capabilities\. Independent of any centralized judge or predefined topology, the terminal agent generates the final answeryydirectly from the fully accumulated knowledge𝒦N\\mathcal\{K\}\_\{N\}\.Dynamic Termination\. This decentralized trajectory terminates dynamically based on real\-time capability assessments rather than a fixed step limit\. Navigation halts if the evaluated propensities of all unvisited peers \(outside𝒱i\\mathcal\{V\}\_\{i\}\) fall below a minimal operational threshold, or if all agents have been exhausted\. Upon halting, the active agent serves as the terminal node, outputting its accumulated context as the final answer\.

### Collaborative Navigation with Progressive Refinement

Upon reaching the terminal state, the system attempts to generate a final answeryy\. If the accumulated context𝒦N\\mathcal\{K\}\_\{N\}is insufficient \(a “dead end” on the map\), we do not simply discard the effort\. Instead, we perform aTopology UpdateΨ⁡\(⋅\)\\Psi\(\\cdot\)to refine the thought map\.

y=Ω⁡\(q,𝒦N\),y=\\Omega\\left\(q,\\mathcal\{K\}\_\{N\}\\right\),\(12\)whereΩ⁡\(⋅\)\\Omega\(\\cdot\)denotes the answer generation function of the terminal agentaNa\_\{N\}conditioned on the full accumulated context\.

Specifically,DeAR leverages the terminal agent rather than an external judge to verify the final context𝒦N\\mathcal\{K\}\_\{N\}\. If the final context fails to match the initial query and its requirements, a refusal is triggered\. To prune the target edge setℰfail\\mathcal\{E\}\_\{\\text\{fail\}\}without over\-penalizing valid upstream transitions, DeAR employs a localized, progressive backtracking strategy instead of full\-path mitigation\. Initially,ℰfail\\mathcal\{E\}\_\{\\text\{fail\}\}contains only the immediate terminal edge, prompting alternative routing at the current depth\. If local choices are exhausted,ℰfail\\mathcal\{E\}\_\{\\text\{fail\}\}expands step\-by\-step to preceding edges in the reasoning path\. Finally, these active edges are penalized in the Collaboration Propensity Matrix:

𝒞←Ψ⁡\(𝒞\),\\mathcal\{C\}\\leftarrow\\Psi\(\\mathcal\{C\}\),\(13\)where the transformation applies a decay factorα\\alpha\(e\.g\., 0\.5\) to the failed connections:

ci,j=\{α⋅ci,j,\(ai→aj\)∈ℰfail,ci,j,otherwise\.c\_\{i,j\}=\\begin\{cases\}\\alpha\\cdot c\_\{i,j\},&\(a\_\{i\}\\rightarrow a\_\{j\}\)\\in\\mathcal\{E\}\_\{\\text\{fail\}\},\\\\ c\_\{i,j\},&\\text\{otherwise\}\.\\end\{cases\}\(14\)This update prunes failing edges, backtracking to preceding layers step\-by\-step if local routes fail\. The agents then re\-navigate the adjusted topology\. This process of exploration, sequential backtracking, and refinement allows DeAR to progressively converge on a valid reasoning path, bypassing the single\-point vulnerabilities typical of centralized systems\.

## Experimental Setup

### Datasets

We evaluate our method on four widely used multimodal reasoning datasets: MMMU\([48](https://arxiv.org/html/2608.17282#bib.bib35)\), MathVista\([30](https://arxiv.org/html/2608.17282#bib.bib36)\), ChartQA\([9](https://arxiv.org/html/2608.17282#bib.bib37)\), and ScienceQA\([31](https://arxiv.org/html/2608.17282#bib.bib38)\)\. We adopt Accuracy \(ACC\) as the primary evaluation metric and conduct experiments on the full test splits for all benchmarks\. Specifically, beyond the overall accuracy for MMMU and ChartQA, we report detailed fine\-grained metrics for MathVista across different question types \(e\.g\., FQA, GPS, MWP\) and reasoning skills \(e\.g\., ALG, ARI, GEO\)\. For ScienceQA, we report the accuracy across various subjects \(NAT, SOC, LAN\), modalities \(TXT, IMG, NO\), and grade levels \(G1\-6, G7\-12\), alongside the average score\.

Furthermore, to demonstrate the generalizability of DeAR, we additionally conduct experiments on 5 text\-based QA benchmarks, encompassing both single\-hop \(e\.g\., NQ\([20](https://arxiv.org/html/2608.17282#bib.bib7)\), TriviaQA\([19](https://arxiv.org/html/2608.17282#bib.bib8)\), PopQA\([32](https://arxiv.org/html/2608.17282#bib.bib9)\)\) and multi\-hop \(e\.g\., WikiMultihopQA\([10](https://arxiv.org/html/2608.17282#bib.bib11)\), and HotpotQA\([46](https://arxiv.org/html/2608.17282#bib.bib10)\)\) datasets\. For these pure text tasks, we employ Exact Match \(EM\) and F1 as evaluation metrics, with 1,000 examples randomly sampled for the multi\-hop evaluations\.

### Implementation Details

In our implementation, the thought map uses a dynamic multi\-agent design where up to four agents can participate depending on the query’s complexity\. For multimodal reasoning tasks, we assign a different Multimodal Large Language Model \(MLLM\) to each agent: DeepSeek\-VL\-7B\-Chat\([29](https://arxiv.org/html/2608.17282#bib.bib27)\), LLaVA\-1\.5\-7B\([26](https://arxiv.org/html/2608.17282#bib.bib28)\), Qwen2\-VL\-7B\-Instruct\([37](https://arxiv.org/html/2608.17282#bib.bib29)\), and MiniCPM\-V\-2\.6\([47](https://arxiv.org/html/2608.17282#bib.bib30)\)\. Using different models provides diverse visual reasoning perspectives\. For text\-based QA evaluations, the agents are powered by four distinct LLMs \(Qwen3\-8B\([44](https://arxiv.org/html/2608.17282#bib.bib12)\), Gemma\-3\-1B\-IT\([35](https://arxiv.org/html/2608.17282#bib.bib13)\), Llama\-3\.2\-3B\([7](https://arxiv.org/html/2608.17282#bib.bib14)\), and DeepSeek\-LLM\-7B\-Chat\([25](https://arxiv.org/html/2608.17282#bib.bib15)\)\)\. We integrate these text models with the FlashRAG toolkit\([18](https://arxiv.org/html/2608.17282#bib.bib16)\), using E5\-base\-v2 as the dense retriever to fetch the topk=10k=10passages from a shared Wikipedia corpus\. We keep all generation and system hyperparameters consistent across the multimodal and QA experiments\. Finally, all models are evaluated in a zero\-shot setting without any task\-specific fine\-tuning\.

MethodMMMUMathVistaChartQAScienceQAFQAGPSMWPTQAVQAALLNATSOCLANALLBaseline Models \(Single Agent\)LLaMA\-2\-13B\([26](https://arxiv.org/html/2608.17282#bib.bib28)\)\-26\.829\.316\.132\.326\.326\.10\-44\.141\.243\.943\.08InternVL2\.5\-26B\([3](https://arxiv.org/html/2608.17282#bib.bib43)\)51\.8038\.035\.030\.040\.037\.036\.03\-\-\-\-\-MiniCPM\-V\-2\.6\([47](https://arxiv.org/html/2608.17282#bib.bib30)\)45\.1151\.727\.439\.842\.534\.739\.89\-59\.557\.059\.658\.70Qwen2\-VL\-72B\([37](https://arxiv.org/html/2608.17282#bib.bib29)\)46\.2155\.934\.729\.758\.842\.441\.3488\.30\-\-\-\-NVLM\-H 1\.0 78B\([4](https://arxiv.org/html/2608.17282#bib.bib44)\)53\.0865\.048\.045\.068\.053\.055\.91\-\-\-\-\-Baseline Models \(Multi\-Agent Frameworks\)MAD\-Vote \(EMNLP 2024\)\([24](https://arxiv.org/html/2608.17282#bib.bib40)\)44\.7049\.038\.035\.051\.042\.043\.1281\.0255\.052\.154\.053\.70MUG \(AAAI 2025\)\([22](https://arxiv.org/html/2608.17282#bib.bib39)\)50\.3055\.040\.039\.056\.046\.047\.32\-56\.553\.855\.555\.27C2R \(EMNLP 2025\)\([13](https://arxiv.org/html/2608.17282#bib.bib31)\)51\.9260\.138\.245\.462\.049\.351\.0185\.08\-\-\-\-Cache\-of\-Thought \(EMNLP 2025\)\([40](https://arxiv.org/html/2608.17282#bib.bib32)\)37\.9254\.235\.430\.058\.344\.644\.51\-59\.056\.559\.858\.44Corvid \(ICCV 2025\)\([16](https://arxiv.org/html/2608.17282#bib.bib33)\)52\.2065\.040\.835\.770\.650\.052\.43\-\-\-\-\-Insight\-V \(CVPR 2025\)\([5](https://arxiv.org/html/2608.17282#bib.bib34)\)53\.7078\.048\.542\.170\.353\.158\.4083\.0063\.559\.263\.061\.93AutoGen\([41](https://arxiv.org/html/2608.17282#bib.bib46)\)54\.3177\.649\.242\.768\.754\.559\.0186\.7962\.758\.762\.160\.24AgentVerse\([2](https://arxiv.org/html/2608.17282#bib.bib47)\)55\.1076\.447\.141\.669\.154\.458\.7987\.1261\.958\.462\.961\.45DyLAN\([28](https://arxiv.org/html/2608.17282#bib.bib48)\)54\.3977\.248\.942\.967\.153\.959\.1686\.4662\.459\.161\.360\.52Our Proposed MethodDeAR \(Fixed Role\)49\.8268\.141\.238\.960\.149\.751\.6085\.7261\.057\.560\.659\.70DeAR \(w/o Thought Map\)47\.2068\.241\.339\.060\.249\.751\.6883\.1255\.551\.255\.554\.07DeAR \(w/o Topology Update\)53\.2175\.045\.041\.070\.546\.755\.6588\.0161\.257\.561\.059\.92DeAR \(Ours\)55\.5880\.349\.942\.784\.560\.959\.4189\.4364\.860\.362\.262\.45

Table 1:Zero\-shot evaluation on four multimodal benchmarks \(fine\-grained metrics reported for MathVista and ScienceQA\)\. ’\-’ denotes unreported data\. Agent counts: Cache\-of\-Thought \(2\); MUG, C2R \(3\); MAD\-Vote, Corvid, Insight\-V, AutoGen, AgentVerse, DyLAN, ReConcile, and DeAR \(4\)\. Best results inbold\.Table 2:Overall evaluation results of the proposed DeAR framework and other baselines on five text\-only QA benchmarks\.Δ\\DeltaEM andΔ\\DeltaF1 denote the performance gap between DeAR and each baseline \(Δ=DeAR score−baseline score\\Delta=\\text\{DeAR score\}\-\\text\{baseline score\}\)\. Darker gray cells mark the best performance, and lighter gray cells mark the second\-best performance among all methods\.

## Experimental Results

### Comparison with Baselines

Evaluating DeAR against large single models shows that improvements come from the structured architecture instead of parameter scaling\. Despite relying on a cooperative system of four base models, DeAR maintains a smaller total parameter count than 72B or 78B models while showing higher accuracy\. Specifically, the score of DeAR is 18\.07 points higher than Qwen2\-VL\-72B on MathVista \(59\.41 vs\. 41\.34\), as shown in Table[1](https://arxiv.org/html/2608.17282#Sx4.T1)\.

Compared to recent chain of thought and multi agent frameworks such as MAD\-Vote\([24](https://arxiv.org/html/2608.17282#bib.bib40)\), MUG\([22](https://arxiv.org/html/2608.17282#bib.bib39)\), C2R\([13](https://arxiv.org/html/2608.17282#bib.bib31)\), Cache of Thought\([40](https://arxiv.org/html/2608.17282#bib.bib32)\), Corvid\([16](https://arxiv.org/html/2608.17282#bib.bib33)\), and Insight\-V\([5](https://arxiv.org/html/2608.17282#bib.bib34)\), DeAR reports the highest overall scores on MathVista \(59\.41\), ChartQA \(89\.43\), and ScienceQA \(62\.45\) in Table[1](https://arxiv.org/html/2608.17282#Sx4.T1)\.It also consistently outperforms established multi agent platforms including AutoGen\([41](https://arxiv.org/html/2608.17282#bib.bib46)\), AgentVerse\([2](https://arxiv.org/html/2608.17282#bib.bib47)\), and DyLAN\([28](https://arxiv.org/html/2608.17282#bib.bib48)\)across all four benchmarks\. For instance, DeAR surpasses these three baselines on ChartQA by over 2\.3 and achieves a higher score on MMMU \(55\.58\), showing the advantage of a decentralized topology over conventional centralized routing\.

Evaluations on five text QA benchmarks show the performance of DeAR beyond multimodal tasks, with detailed metrics provided in Table[2](https://arxiv.org/html/2608.17282#Sx4.T2)\. The framework ranks first on NQ and obtains the highest F1 score on TriviaQA for single hop tasks\. For multi hop queries, it obtains the highest score on HotpotQA and maintains stable precision and completeness on 2Wiki \(Table[2](https://arxiv.org/html/2608.17282#Sx4.T2)\), showing that decentralized thought navigation applies to pure NLP domains\.

Table[1](https://arxiv.org/html/2608.17282#Sx4.T1)decouples architectural gains from ensemble effects using identical backbones\. DeAR \(Fixed Role\), serving as the centralized routing baseline, drops sharply \(\-5\.76 on MMMU\)\. DeAR \(w/o Topology Update\), acting as the ensemble control without backtracking, also degrades \(\-2\.37 on MMMU\)\. These margins mathematically prove our superiority stems from decentralized navigation rather than vanilla model aggregation\.

### Analysis of the Thought Map Navigation

This section evaluates the effectiveness of the proposed thought map navigation by comparing it against a variant without \(w/o\) the thought map navigation\. To provide deeper insights beyond aggregate metrics, we conduct a fine\-grained analysis of the performance across diverse question types and reasoning skills within the MathVista dataset\. The results demonstrate that dynamic agent routing consistently outperforms static setups across all sub\-categories, confirming that adaptive collaboration is essential for complex visual reasoning\.

Overall, the thought map navigation increases the comprehensive MathVista accuracy from 51\.68 to 59\.41\. The detailed breakdown reveals that the most substantial gains occur in tasks demanding intricate multi\-step logic and specialized visual processing\. For example, accuracy on Statistical Reasoning \(STA\) improves significantly from 62\.9 to 80\.9\. Similarly, Logical Reasoning \(LOG\) sees a major boost from 19\.6 to 31\.0, and Figure Question Answering \(FQA\) rises from 69\.1 to 80\.3\. These consistent enhancements validate that allowing agents to autonomously navigate the reasoning space is far more effective than forcing a predefined execution order\.

### Analysis of Topology Update

This section evaluates the proposed topology update on multimodal benchmarks, including MMMU, MathVista, ChartQA, and ScienceQA\. By correcting intermediate errors, the topology update consistently improves accuracy across datasets with varying visual complexities\. On MMMU, the score increases from 53\.21 to 55\.58, mitigating errors in college level academic tasks, while MathVista accuracy rises from 55\.65 to 59\.41 in intricate mathematical settings\. Similar gains are observed on ChartQA \(88\.01 to 89\.43\) and ScienceQA \(59\.92 to 62\.45\), reflecting a reduced accumulation of multiple step reasoning errors\.

#### Effect of Decay Factorα\\alpha

Figure 4:Analysis of the topology update’s decay factorα\\alpha\.Figure[4](https://arxiv.org/html/2608.17282#Sx5.F4)investigates the topology update’s decay factorα∈\[0\.1,0\.9\]\\alpha\\in\[0\.1,0\.9\], which controls the penalty for failed paths\. Small values \(α=0\.1\\alpha=0\.1\) cause overcorrection and unstable thought map paths, dropping the 2Wiki F1 score to 53\.91\. Conversely, large values \(α=0\.9\\alpha=0\.9\) insufficiently suppress ineffective paths, causing repeated invalid computations and a 2Wiki F1 of 55\.02\. DeAR performs optimally in the\[0\.5,0\.8\]\[0\.5,0\.8\]\. Specifically, a moderateα=0\.5\\alpha=0\.5achieves peak performance on MMMU \(55\.58\) and MathVista \(59\.41\) by effectively selecting new paths without discarding previously successful interactions\.

![Refer to caption](https://arxiv.org/html/2608.17282v1/case_study.png)Figure 5:Case Study of the Reasoning with Centralized and Decentralized Multi\-Agent Collaboration on Q&A\.

### Dynamic Agent Activation and Usage Frequency

DeAR constructs reasoning paths dynamically based on query requirements and agent confidence\. The framework does not mandate the participation of allN=4N=4agents; unselected agents remain inactive if a smaller subset can resolve the query, which avoids unnecessary compute consumption\. Table[3](https://arxiv.org/html/2608.17282#Sx5.T3)presents the activation frequency of different agent subset sizes on MathVista\. The results show that while complex problems require all 4 agents \(37\.5%\), a majority of queries \(62\.5%\) are resolved by fewer agents, confirming the adaptability and resource efficiency of the algorithm\.

Table 3:Frequency of activation for varying numbers of agents on the MathVista dataset\.
### Case Study

Figure[5](https://arxiv.org/html/2608.17282#Sx5.F5)compares DeAR and a centralized multi\-agent baseline on historical map identification \(Q1\) and chart reasoning \(Q2\)\.DeAR resolves visual and logical ambiguities through dynamic, capability\-driven hand\-offs\. In Q1, agents progressively determine map assignments by combining factual knowledge, spatial commonsense, and historical geographic constraints, such as identifying landlocked regions\. They finalize the boundaries via numerical verification of area ratios\. In Q2, rather than being misled by the four plotted dots, the agents translate the mathematical "zero" into a geometric target on the x\-axis and perform an algebraic check \(log2⁡\(x\)=0⇒x=1\\log\_\{2\}\(x\)=0\\Rightarrow x=1\) to confirm the single root\.The centralized framework restricts agents to isolated, static roles like visual extraction or text reading\. All intermediate findings are forced through a single Judge Agent, creating an information bottleneck\. Without peer\-to\-peer verification, the Judge blindly aggregates fragmented reports\. As a result, it hallucinates an incorrect map configuration in Q1 by forcibly merging vague hints\. In Q2, the Judge directly misattributes the visual worker’s observation of "four prominent dots" to the mathematical query and incorrectly outputs "Four"\.These results confirm that decentralized navigation effectively resolves complex logical dependencies and prevents the aggregation errors typical of centralized pipelines\.

## Conclusion

We proposeDeAR, a decentralized framework replacing centralized multi\-agent coordination with autonomous, capability\-aware collaboration\. DeAR integrates three core mechanisms: Decentralized Capability Grounding for query\-dependent agent specialization, Thought Map Navigation for selective peer interaction, and Topology Update for adaptive error correction\. These components allow agents to progressively refine reasoning trajectories without a central judge\. Evaluations across 9 diverse multimodal and text\-based QA benchmarks show DeAR consistently outperforms recent baselines, validating that decentralized, adaptive collaboration among agents enhances performance in complex tasks\.

## References

- Asaiet al\.\(2024\)A\. Asai, Z\. Wu, Y\. Wang, A\. Sil, and H\. HajishirziSelf\-rag: learning to retrieve, generate, and critique through self\-reflection\.Cited by:[Table 2](https://arxiv.org/html/2608.17282#Sx4.T2.1.1.10.1)\.
- Chenet al\.\(2024a\)W\. Chen, Y\. Su, J\. Zuo, C\. Yang, C\. Yuan, C\. Chan, H\. Yu, Y\. Lu, Y\. Hung, C\. Qian,et al\.Agentverse: facilitating multi\-agent collaboration and exploring emergent behaviors\.InInternational Conference on Learning Representations,Vol\.2024,pp\. 20094–20136\.Cited by:[Related work](https://arxiv.org/html/2608.17282#Sx2.p2.1),[Table 1](https://arxiv.org/html/2608.17282#Sx4.T1.1.1.17.1),[Comparison with Baselines](https://arxiv.org/html/2608.17282#Sx5.SSx1.p2.1)\.
- Chenet al\.\(2024b\)Z\. Chen, J\. Wu, W\. Wang, W\. Su, G\. Chen, S\. Xing, M\. Zhong, Q\. Zhang, X\. Zhu, L\. Lu,et al\.Internvl: scaling up vision foundation models and aligning for generic visual\-linguistic tasks\.InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition,pp\. 24185–24198\.Cited by:[Table 1](https://arxiv.org/html/2608.17282#Sx4.T1.1.1.5.1)\.
- Daiet al\.\(2024\)W\. Dai, N\. Lee, B\. Wang, Z\. Yang, Z\. Liu, J\. Barker, T\. Rintamaki, M\. Shoeybi, B\. Catanzaro, and W\. PingNVLM: open frontier\-class multimodal llms\.arXiv preprint\.Cited by:[Table 1](https://arxiv.org/html/2608.17282#Sx4.T1.1.1.8.1)\.
- Donget al\.\(2025\)Y\. Dong, Z\. Liu, H\. Sun, J\. Yang, W\. Hu, Y\. Rao, and Z\. LiuInsight\-v: exploring long\-chain visual reasoning with multimodal large language models\.InProceedings of the Computer Vision and Pattern Recognition Conference,pp\. 9062–9072\.Cited by:[Table 1](https://arxiv.org/html/2608.17282#Sx4.T1.1.1.15.1),[Comparison with Baselines](https://arxiv.org/html/2608.17282#Sx5.SSx1.p2.1)\.
- Duet al\.\(2023\)Y\. Du, S\. Li, A\. Torralba, J\. B\. Tenenbaum, and I\. MordatchImproving factuality and reasoning in language models through multiagent debate\.InForty\-first International Conference on Machine Learning,Cited by:[Table 2](https://arxiv.org/html/2608.17282#Sx4.T2.1.1.6.1)\.
- Dubeyet al\.\(2024\)A\. Dubey, A\. Jauhri, A\. Pandey, A\. Kadian, A\. Al\-Dahle, A\. Letman, A\. Mathur, A\. Schelten, A\. Yang, A\. Fan,et al\.The llama 3 herd of models\.arXiv preprint arXiv:2407\.21783\.Cited by:[Implementation Details](https://arxiv.org/html/2608.17282#Sx4.SSx2.p1.1)\.
- Fanget al\.\(2025\)J\. Fang, Y\. Peng, X\. Zhang, Y\. Wang, X\. Yi, G\. Zhang, Y\. Xu, B\. Wu, S\. Liu, Z\. Li,et al\.A comprehensive survey of self\-evolving ai agents: a new paradigm bridging foundation models and lifelong agentic systems\.arXiv preprint arXiv:2508\.07407\.Cited by:[1st item](https://arxiv.org/html/2608.17282#Sx1.I1.i1.p1.1)\.
- Hegdeet al\.\(2025\)S\. Hegde, P\. Fazli, and H\. SeifiChartqa\-x: generating explanations for charts\.arXiv e\-prints,pp\. arXiv–2504\.Cited by:[Datasets](https://arxiv.org/html/2608.17282#Sx4.SSx1.p1.1)\.
- Hoet al\.\(2020\)X\. Ho, A\. D\. Nguyen, S\. Sugawara, and A\. AizawaConstructing a multi\-hop qa dataset for comprehensive evaluation of reasoning steps\.arXiv preprint arXiv:2011\.01060\.Cited by:[Datasets](https://arxiv.org/html/2608.17282#Sx4.SSx1.p2.1)\.
- Honget al\.\(2023\)S\. Hong, M\. Zhuge, J\. Chen, X\. Zheng, Y\. Cheng, J\. Wang, C\. Zhang, Z\. Wang, S\. K\. S\. Yau, Z\. Lin,et al\.MetaGPT: meta programming for a multi\-agent collaborative framework\.InThe Twelfth International Conference on Learning Representations,Cited by:[Related work](https://arxiv.org/html/2608.17282#Sx2.p1.1)\.
- Huet al\.\(2025\)W\. Hu, W\. Zhang, Y\. Jiang, C\. J\. Zhang, X\. Wei, and L\. QingRemoval of hallucination on hallucination: debate\-augmented rag\.InProceedings of the 63rd Annual Meeting of the Association for Computational Linguistics \(Volume 1: Long Papers\),pp\. 15839–15853\.Cited by:[Related work](https://arxiv.org/html/2608.17282#Sx2.p2.1),[Table 2](https://arxiv.org/html/2608.17282#Sx4.T2.1.1.11.1)\.
- Janget al\.\(2025\)Y\. Jang, W\. S\. Choi, M\. Jung, M\. Lee, and B\. ZhangConfidence\-guided refinement reasoning for zero\-shot question answering\.InProceedings of the 2025 Conference on Empirical Methods in Natural Language Processing,pp\. 6944–6961\.Cited by:[Table 1](https://arxiv.org/html/2608.17282#Sx4.T1.1.1.12.1),[Comparison with Baselines](https://arxiv.org/html/2608.17282#Sx5.SSx1.p2.1)\.
- Jiaet al\.\(2024\)C\. Jia, M\. Luo, Z\. Dang, Q\. Sun, F\. Xu, J\. Hu, T\. Xie, and Z\. WuAgentstore: scalable integration of heterogeneous agents as specialized generalist computer assistant\.arXiv preprint arXiv:2410\.18603\.Cited by:[Introduction](https://arxiv.org/html/2608.17282#Sx1.p3.1)\.
- Jianget al\.\(2025a\)B\. Jiang, Y\. Xie, X\. Wang, Y\. Yuan, Z\. Hao, X\. Bai, W\. J\. Su, C\. J\. Taylor, and T\. MallickTowards rationality in language and multimodal agents: a survey\.InProceedings of the 2025 Conference of the Nations of the Americas Chapter of the Association for Computational Linguistics: Human Language Technologies \(Volume 1: Long Papers\),pp\. 3656–3675\.Cited by:[Related work](https://arxiv.org/html/2608.17282#Sx2.p2.1)\.
- Jianget al\.\(2025b\)J\. Jiang, C\. Ma, X\. Song, H\. Zhang, and J\. LuoCorvid: improving multimodal large language models towards chain\-of\-thought reasoning\.InProceedings of the IEEE/CVF International Conference on Computer Vision,pp\. 3034–3046\.Cited by:[Table 1](https://arxiv.org/html/2608.17282#Sx4.T1.1.1.14.1),[Comparison with Baselines](https://arxiv.org/html/2608.17282#Sx5.SSx1.p2.1)\.
- Jianget al\.\(2023\)Z\. Jiang, F\. F\. Xu, L\. Gao, Z\. Sun, Q\. Liu, J\. Dwivedi\-Yu, Y\. Yang, J\. Callan, and G\. NeubigActive retrieval augmented generation\.InProceedings of the 2023 Conference on Empirical Methods in Natural Language Processing,pp\. 7969–7992\.Cited by:[Table 2](https://arxiv.org/html/2608.17282#Sx4.T2.1.1.9.1)\.
- Jinet al\.\(2025\)J\. Jin, Y\. Zhu, Z\. Dou, G\. Dong, X\. Yang, C\. Zhang, T\. Zhao, Z\. Yang, and J\. WenFlashrag: a modular toolkit for efficient retrieval\-augmented generation research\.InCompanion Proceedings of the ACM on Web Conference 2025,pp\. 737–740\.Cited by:[Implementation Details](https://arxiv.org/html/2608.17282#Sx4.SSx2.p1.1)\.
- Joshiet al\.\(2017\)M\. Joshi, E\. Choi, D\. S\. Weld, and L\. ZettlemoyerTriviaqa: a large scale distantly supervised challenge dataset for reading comprehension\.arXiv preprint arXiv:1705\.03551\.Cited by:[Datasets](https://arxiv.org/html/2608.17282#Sx4.SSx1.p2.1)\.
- Kwiatkowskiet al\.\(2019\)T\. Kwiatkowski, J\. Palomaki, O\. Redfield, M\. Collins, A\. Parikh, C\. Alberti, D\. Epstein, I\. Polosukhin, J\. Devlin, K\. Lee,et al\.Natural questions: a benchmark for question answering research\.Transactions of the Association for Computational Linguistics7,pp\. 453–466\.Cited by:[Datasets](https://arxiv.org/html/2608.17282#Sx4.SSx1.p2.1)\.
- Lianget al\.\(2026a\)D\. Liang, K\. Gong, Y\. Cai, C\. Zheng, and X\. WeiMixture of debaters: learn to debate at architectural level in multi\-agent reasoning\.arXiv preprint arXiv:2606\.29425\.Cited by:[Related work](https://arxiv.org/html/2608.17282#Sx2.p2.1)\.
- Lianget al\.\(2025\)D\. Liang, X\. Wei, and C\. ZhengMulti\-agent undercover gaming: hallucination removal via counterfactual test for multimodal reasoning\.arXiv preprint arXiv:2511\.11182\.Cited by:[Table 1](https://arxiv.org/html/2608.17282#Sx4.T1.1.1.11.1),[Comparison with Baselines](https://arxiv.org/html/2608.17282#Sx5.SSx1.p2.1)\.
- Lianget al\.\(2026b\)D\. Liang, X\. Wei, and C\. ZhengMulti\-agent undercover gaming: hallucination removal through counterfactual test for multimodal reasoning\.InProceedings of the AAAI Conference on Artificial Intelligence,Vol\.40,pp\. 6807–6815\.Cited by:[Related work](https://arxiv.org/html/2608.17282#Sx2.p2.1)\.
- Lianget al\.\(2024\)T\. Liang, Z\. He, W\. Jiao, X\. Wang, Y\. Wang, R\. Wang, Y\. Yang, S\. Shi, and Z\. TuEncouraging divergent thinking in large language models through multi\-agent debate\.InProceedings of the 2024 conference on empirical methods in natural language processing,pp\. 17889–17904\.Cited by:[Table 1](https://arxiv.org/html/2608.17282#Sx4.T1.1.1.10.1),[Comparison with Baselines](https://arxiv.org/html/2608.17282#Sx5.SSx1.p2.1)\.
- Liuet al\.\(2024a\)A\. Liu, B\. Feng, B\. Xue, B\. Wang, B\. Wu, C\. Lu, C\. Zhao, C\. Deng, C\. Zhang, C\. Ruan,et al\.Deepseek\-v3 technical report\.arXiv preprint arXiv:2412\.19437\.Cited by:[Implementation Details](https://arxiv.org/html/2608.17282#Sx4.SSx2.p1.1)\.
- Liuet al\.\(2023\)H\. Liu, C\. Li, Q\. Wu, and Y\. J\. LeeVisual instruction tuning\.InNeurIPS,Cited by:[Implementation Details](https://arxiv.org/html/2608.17282#Sx4.SSx2.p1.1),[Table 1](https://arxiv.org/html/2608.17282#Sx4.T1.1.1.4.1)\.
- Liuet al\.\(2025\)P\. Liu, X\. Liu, R\. Yao, J\. Liu, S\. Meng, D\. Wang, and J\. MaHm\-rag: hierarchical multi\-agent multimodal retrieval augmented generation\.arXiv preprint arXiv:2504\.12330\.Cited by:[Related work](https://arxiv.org/html/2608.17282#Sx2.p2.1)\.
- Liuet al\.\(2024b\)Z\. Liu, Y\. Zhang, P\. Li, Y\. Liu, and D\. YangA dynamic llm\-powered agent network for task\-oriented agent collaboration\.InFirst Conference on Language Modeling,Cited by:[Related work](https://arxiv.org/html/2608.17282#Sx2.p2.1),[Table 1](https://arxiv.org/html/2608.17282#Sx4.T1.1.1.18.1),[Comparison with Baselines](https://arxiv.org/html/2608.17282#Sx5.SSx1.p2.1)\.
- Luet al\.\(2024a\)H\. Lu, W\. Liu, B\. Zhang, B\. Wang, K\. Dong, B\. Liu, J\. Sun, T\. Ren, Z\. Li, Y\. Sun, C\. Deng, H\. Xu, Z\. Xie, and C\. RuanDeepSeek\-vl: towards real\-world vision\-language understanding\.External Links:2403\.05525Cited by:[Implementation Details](https://arxiv.org/html/2608.17282#Sx4.SSx2.p1.1)\.
- Luet al\.\(2024b\)P\. Lu, H\. Bansal, T\. Xia, J\. Liu, C\. Li, H\. Hajishirzi, H\. Cheng, K\. Chang, M\. Galley, and J\. GaoMathVista: evaluating mathematical reasoning of foundation models in visual contexts\.InInternational Conference on Learning Representations \(ICLR\),Cited by:[Datasets](https://arxiv.org/html/2608.17282#Sx4.SSx1.p1.1)\.
- Luet al\.\(2022\)P\. Lu, S\. Mishra, T\. Xia, L\. Qiu, K\. Chang, S\. Zhu, O\. Tafjord, P\. Clark, and A\. KalyanLearn to explain: multimodal reasoning via thought chains for science question answering\.InThe 36th Conference on Neural Information Processing Systems \(NeurIPS\),Cited by:[Datasets](https://arxiv.org/html/2608.17282#Sx4.SSx1.p1.1)\.
- Mallenet al\.\(2023\)A\. Mallen, A\. Asai, V\. Zhong, R\. Das, D\. Khashabi, and H\. HajishirziWhen not to trust language models: investigating effectiveness of parametric and non\-parametric memories\.InProceedings of the 61st Annual Meeting of the Association for Computational Linguistics \(Volume 1: Long Papers\),pp\. 9802–9822\.Cited by:[Datasets](https://arxiv.org/html/2608.17282#Sx4.SSx1.p2.1)\.
- Owenset al\.\(2025\)D\. M\. Owens, R\. Rossi, S\. Kim, T\. Yu, F\. Dernoncourt, X\. Chen, R\. Zhang, J\. Gu, H\. Deilamsalehy, and N\. LipkaMulti\-llm debiasing framework\.InProceedings of the 15th International Conference on Recent Advances in Natural Language Processing\-Natural Language Processing in the Generative AI Era,pp\. 843–853\.Cited by:[Introduction](https://arxiv.org/html/2608.17282#Sx1.p3.1)\.
- Shaoet al\.\(2023\)Z\. Shao, Y\. Gong, Y\. Shen, M\. Huang, N\. Duan, and W\. ChenEnhancing retrieval\-augmented large language models with iterative retrieval\-generation synergy\.arXiv preprint arXiv:2305\.15294\.Cited by:[Table 2](https://arxiv.org/html/2608.17282#Sx4.T2.1.1.8.1)\.
- Teamet al\.\(2025\)G\. Team, A\. Kamath, J\. Ferret, S\. Pathak, N\. Vieillard, R\. Merhej, S\. Perrin, T\. Matejovicova, A\. Ramé, M\. Rivière,et al\.Gemma 3 technical report\.arXiv preprint arXiv:2503\.19786\.Cited by:[Implementation Details](https://arxiv.org/html/2608.17282#Sx4.SSx2.p1.1)\.
- Trivediet al\.\(2023\)H\. Trivedi, N\. Balasubramanian, T\. Khot, and A\. SabharwalInterleaving retrieval with chain\-of\-thought reasoning for knowledge\-intensive multi\-step questions\.InProceedings of the 61st annual meeting of the association for computational linguistics \(volume 1: long papers\),pp\. 10014–10037\.Cited by:[Table 2](https://arxiv.org/html/2608.17282#Sx4.T2.1.1.7.1)\.
- Wanget al\.\(2024a\)P\. Wang, S\. Bai, S\. Tan, S\. Wang, Z\. Fan, J\. Bai, K\. Chen, X\. Liu, J\. Wang, W\. Ge, Y\. Fan, K\. Dang, M\. Du, X\. Ren, R\. Men, D\. Liu, C\. Zhou, J\. Zhou, and J\. LinQwen2\-vl: enhancing vision\-language model’s perception of the world at any resolution\.arXiv preprint arXiv:2409\.12191\.Cited by:[Implementation Details](https://arxiv.org/html/2608.17282#Sx4.SSx2.p1.1),[Table 1](https://arxiv.org/html/2608.17282#Sx4.T1.1.1.7.1)\.
- Wanget al\.\(2024b\)Q\. Wang, T\. Wang, Q\. Li, J\. Liang, and B\. HeMegaagent: a practical framework for autonomous cooperation in large\-scale llm agent systems\.arXiv e\-prints,pp\. arXiv–2408\.Cited by:[Introduction](https://arxiv.org/html/2608.17282#Sx1.p3.1)\.
- Wuet al\.\(2025a\)F\. Wu, Z\. Li, F\. Wei, Y\. Li, B\. Ding, and J\. GaoTalk to right specialists: routing and planning in multi\-agent system for question answering\.arXiv preprint arXiv:2501\.07813\.Cited by:[2nd item](https://arxiv.org/html/2608.17282#Sx1.I1.i2.p1.1)\.
- Wuet al\.\(2025b\)M\. Wu, J\. Jiang, H\. Zheng, M\. Li, Z\. Li, B\. Tian, B\. Chen, Y\. Park, M\. Zhang, C\. Zhai,et al\.Cache\-of\-thought: master\-apprentice framework for cost\-effective vision language model inference\.arXiv e\-prints,pp\. arXiv–2502\.Cited by:[Table 1](https://arxiv.org/html/2608.17282#Sx4.T1.1.1.13.1),[Comparison with Baselines](https://arxiv.org/html/2608.17282#Sx5.SSx1.p2.1)\.
- Wuet al\.\(2024\)Q\. Wu, G\. Bansal, J\. Zhang, Y\. Wu, B\. Li, E\. Zhu, L\. Jiang, X\. Zhang, S\. Zhang, J\. Liu,et al\.Autogen: enabling next\-gen llm applications via multi\-agent conversations\.InFirst conference on language modeling,Cited by:[Related work](https://arxiv.org/html/2608.17282#Sx2.p2.1),[Table 1](https://arxiv.org/html/2608.17282#Sx4.T1.1.1.16.1),[Comparison with Baselines](https://arxiv.org/html/2608.17282#Sx5.SSx1.p2.1)\.
- Xieet al\.\(2024\)W\. Xie, D\. Liu, H\. Yan, W\. Wu, and Z\. LiuMathlearner: a large language model agent framework for learning to solve mathematical problems\.arXiv preprint arXiv:2408\.01779\.Cited by:[Related work](https://arxiv.org/html/2608.17282#Sx2.p1.1)\.
- Xinjieet al\.\(2025\)Z\. Xinjie, F\. Gao, X\. Song, Y\. Chen, R\. Yang, Y\. Fu, Y\. Wang, Y\. Iwasawa, Y\. Matsuo, and I\. LiReagent: reversible multi\-agent reasoning for knowledge\-enhanced multi\-hop qa\.InProceedings of the 2025 Conference on Empirical Methods in Natural Language Processing,pp\. 4067–4089\.Cited by:[Related work](https://arxiv.org/html/2608.17282#Sx2.p1.1)\.
- Yanget al\.\(2025a\)A\. Yang, A\. Li, B\. Yang, B\. Zhang, B\. Hui, B\. Zheng, B\. Yu, C\. Gao, C\. Huang, C\. Lv,et al\.Qwen3 technical report\.arXiv preprint arXiv:2505\.09388\.Cited by:[Implementation Details](https://arxiv.org/html/2608.17282#Sx4.SSx2.p1.1)\.
- Yanget al\.\(2025b\)Y\. Yang, H\. Chai, S\. Shao, Y\. Song, S\. Qi, R\. Rui, and W\. ZhangAgentnet: decentralized evolutionary coordination for llm\-based multi\-agent systems\.arXiv preprint arXiv:2504\.00587\.Cited by:[Related work](https://arxiv.org/html/2608.17282#Sx2.p2.1)\.
- Yanget al\.\(2018\)Z\. Yang, P\. Qi, S\. Zhang, Y\. Bengio, W\. Cohen, R\. Salakhutdinov, and C\. D\. ManningHotpotQA: a dataset for diverse, explainable multi\-hop question answering\.InProceedings of the 2018 conference on empirical methods in natural language processing,pp\. 2369–2380\.Cited by:[Datasets](https://arxiv.org/html/2608.17282#Sx4.SSx1.p2.1)\.
- Yaoet al\.\(2024\)Y\. Yao, T\. Yu, A\. Zhang, C\. Wang, J\. Cui, H\. Zhu, T\. Cai, H\. Li, W\. Zhao, Z\. He,et al\.MiniCPM\-v: a gpt\-4v level mllm on your phone\.arXiv preprint arXiv:2408\.01800\.Cited by:[Implementation Details](https://arxiv.org/html/2608.17282#Sx4.SSx2.p1.1),[Table 1](https://arxiv.org/html/2608.17282#Sx4.T1.1.1.6.1)\.
- Yueet al\.\(2024\)X\. Yue, Y\. Ni, K\. Zhang, T\. Zheng, R\. Liu, G\. Zhang, S\. Stevens, D\. Jiang, W\. Ren, Y\. Sun, C\. Wei, B\. Yu, R\. Yuan, R\. Sun, M\. Yin, B\. Zheng, Z\. Yang, Y\. Liu, W\. Huang, H\. Sun, Y\. Su, and W\. ChenMMMU: a massive multi\-discipline multimodal understanding and reasoning benchmark for expert agi\.InProceedings of CVPR,Cited by:[Datasets](https://arxiv.org/html/2608.17282#Sx4.SSx1.p1.1)\.
- Zhenget al\.\(2023\)C\. Zheng, J\. Feng, Y\. Cai, X\. Wei, and Q\. LiRethinking multimodal entity and relation extraction from a translation point of view\.InProceedings of the 61st Annual Meeting of the Association for Computational Linguistics \(Volume 1: Long Papers\),pp\. 6810–6824\.Cited by:[Introduction](https://arxiv.org/html/2608.17282#Sx1.p1.1)\.
- Zhenget al\.\(2024\)C\. Zheng, D\. Liang, W\. Zhang, X\. Wei, T\. Chua, and Q\. LiA picture is worth a graph: a blueprint debate paradigm for multimodal reasoning\.InProceedings of the 32nd ACM International Conference on Multimedia,pp\. 419–428\.Cited by:[Introduction](https://arxiv.org/html/2608.17282#Sx1.p1.1),[Related work](https://arxiv.org/html/2608.17282#Sx2.p2.1)\.
- Zhouet al\.\(2025\)J\. Zhou, J\. Chen, Q\. Lu, D\. Zhao, and L\. ZhuShielda: structured handling of exceptions in llm\-driven agentic workflows\.arXiv preprint arXiv:2508\.07935\.Cited by:[Introduction](https://arxiv.org/html/2608.17282#Sx1.p2.1)\.

Similar Articles

DAR: Deontic Reasoning with Agentic Harnesses

Hugging Face Daily Papers

This paper introduces DAR (Deontic Agentic Reasoning), an agentic framework enabling LLMs to interactively query statutes and policies for legal/regulatory reasoning tasks. Evaluated on DeonticBench, results show agentic harnesses improve frontier models but can degrade weaker models on numerical tasks while consuming more tokens.

Deep Reasoning in General Purpose Agents via Structured Meta-Cognition

arXiv cs.CL

This paper introduces Deep Reasoning, an inference-time approach that uses structured meta-reasoning to construct task-specific scaffolds for general-purpose agents. The proposed agent, Dolores, outperforms existing methods by distributing cognition across lower-load reasoning threads, reducing hallucinations and improving performance across multiple benchmarks.