MetaResearcher: Scaling Deep Research via Self-Reflective Reinforcement Learning in Adversarial Virtual Environments

arXiv cs.AI Papers

Summary

MetaResearcher proposes a framework for training deep research agents using self-reflective reinforcement learning in adversarial virtual environments, addressing limitations of static environments and fact-retrieval-only tasks.

arXiv:2606.19893v1 Announce Type: new Abstract: Deep research agents have demonstrated remarkable capabilities in autonomous information gathering and synthesis, yet their training remains constrained by the static nature of simulated environments, the limits of fact-retrieval-only task designs, and the inefficiency of outcome-based reinforcement learning. In this work, we propose MetaResearcher, a novel framework that scales deep research agent training across four synergistic dimensions. First, we introduce an Evolving Virtual World that injects temporal dynamics and adversarial misinformation into the training environment, forcing agents to develop source credibility assessment and temporal conflict resolution skills. Second, we design Discovery-Oriented Tasks -- including hypothesis generation and contradiction resolution -- that transcend simple fact retrieval and push agents toward genuine research behaviors. Third, we propose a Self-Reflective Meta-Reward mechanism within the GRPO framework that jointly optimizes for answer correctness, search path efficiency, reflection depth, and tool call diversity, directly addressing the repetitive action loop problem observed in prior work. Fourth, we introduce a Heterogeneous Multi-Agent Swarm architecture comprising specialized Scout, Filter, and Synthesizer models that learn collaborative research strategies through coordinated reinforcement learning. Built upon the LiteResearcher infrastructure, MetaResearcher requires zero marginal API cost for training while targeting substantial improvements in both benchmark performance (GAIA, Xbench-DS) and epistemic robustness under adversarial conditions. We present the complete framework design, training methodology, and planned experimental validation.
Original Article
View Cached Full Text

Cached at: 06/20/26, 02:34 PM

# MetaResearcher: Scaling Deep Research via Self-Reflective Reinforcement Learning in Adversarial Virtual Environments
Source: [https://arxiv.org/html/2606.19893](https://arxiv.org/html/2606.19893)
Wei Yu1, Suxing Liu1,\*, Minjie Yu1, Jiahao Wang2, Zhijian Zheng1, Haocheng Deng1, Bing Li1 1School of Digital Arts, Jiangxi Arts & Ceramics Technology Institute, Jingdezhen 33001, China 2Universiti Sains Malaysia, 11800 USM Penang, Malaysia Correspondence: liusuxing@jacti\.edu\.cn \(S\.L\.\)

###### Abstract

Deep research agents have demonstrated remarkable capabilities in autonomous information gathering and synthesis, yet their training remains constrained by the static nature of simulated environments, the limits of fact\-retrieval\-only task designs, and the inefficiency of outcome\-based reinforcement learning\. In this work, we proposeMetaResearcher, a novel framework that scales deep research agent training across four synergistic dimensions\. First, we introduce anEvolving Virtual Worldthat injects temporal dynamics and adversarial misinformation into the training environment, forcing agents to develop source credibility assessment and temporal conflict resolution skills\. Second, we designDiscovery\-Oriented Tasks—including hypothesis generation and contradiction resolution—that transcend simple fact retrieval and push agents toward genuine research behaviors\. Third, we propose aSelf\-Reflective Meta\-Rewardmechanism within the GRPO framework that jointly optimizes for answer correctness, search path efficiency, reflection depth, and tool call diversity, directly addressing the repetitive action loop problem observed in prior work\. Fourth, we introduce aHeterogeneous Multi\-Agent Swarmarchitecture comprising specialized Scout, Filter, and Synthesizer models that learn collaborative research strategies through coordinated reinforcement learning\. Built upon the LiteResearcher infrastructure, MetaResearcher requires zero marginal API cost for training while targeting substantial improvements in both benchmark performance \(GAIA, Xbench\-DS\) and epistemic robustness under adversarial conditions\. We present the complete framework design, training methodology, and planned experimental validation\.

Keywords:deep research agent; reinforcement learning; self\-reflection; adversarial environment; multi\-agent system; GRPO; virtual world simulation

## 1Introduction

The pursuit of autonomous deep research agents—AI systems capable of conducting multi\-step, tool\-augmented investigations—has emerged as one of the most active frontiers in artificial intelligence\. Recent advances, exemplified by systems such as LiteResearcher\[[1](https://arxiv.org/html/2606.19893#bib.bib1)\], have demonstrated that relatively compact models \(4B parameters\) can achieve state\-of\-the\-art performance on benchmarks like GAIA\[[22](https://arxiv.org/html/2606.19893#bib.bib22)\]\(71\.3%\) and Xbench\-DS \(78\.0%\), surpassing both larger open\-source models and frontier commercial systems such as GPT\-4o\[[46](https://arxiv.org/html/2606.19893#bib.bib46)\]\. Concurrently, systems like DeepAgent\[[47](https://arxiv.org/html/2606.19893#bib.bib47)\]and BrowseComp\[[26](https://arxiv.org/html/2606.19893#bib.bib26)\]have pushed the frontier further through dynamic self\-evolution and multi\-level context engines\. The key insight underlying LiteResearcher’s success is the replacement of live\-web interaction during reinforcement learning \(RL\) with a stable local search and browse environment, enabling over 73 million tool calls at zero marginal API cost\.

Despite these impressive achievements, the current paradigm for training deep research agents exhibits several fundamental limitations that constrain further progress\. We identify four critical gaps:

\(i\) Static Training Environments\.LiteResearcher constructs a local virtual world from approximately 32 million real webpages, but this world is frozen after construction\. Information does not update, contradict itself, or evolve over time\. Consequently, agents trained in such environments never learn to handle the temporal dynamics and information conflicts that characterize real\-world research\.

\(ii\) Fact\-Retrieval\-Centric Tasks\.The five atomic capabilities identified in LiteResearcher—aggregation, enumeration, comparison, multi\-hop reasoning, and tool use—are fundamentally oriented toward finding “existing answers\.” This paradigm does not cultivate higher\-order research skills such as hypothesis generation from disparate sources or critical resolution of contradictory evidence\.

\(iii\) Outcome\-Only Reward Signals\.The GRPO\-based training employed by LiteResearcher rewards only the correctness of final answers, without considering the quality of the search process\. This leads to well\-documented failure modes including repetitive action loops, where agents repeatedly refresh the same search engine with minor query variations rather than strategically exploring diverse information sources\[[1](https://arxiv.org/html/2606.19893#bib.bib1)\]\.

\(iv\) Monolithic Agent Architecture\.LiteResearcher employs a single\-agent design where the same model must simultaneously master search query construction, relevance filtering, and information synthesis\. This monolithic approach contrasts with the distributed, specialized division of labor observed in human research teams, and likely imposes an upper bound on achievable performance\.

### 1\.1Our Contributions

To address these limitations, we proposeMetaResearcher, a comprehensive framework that scales deep research agent training across four synergistic innovation dimensions:

1. 1\.Environment Innovation – Evolving Virtual World:We introduce temporal dynamics and adversarial information injection into the local web environment\. Training data simulates real\-world phenomena such as scientific results being retracted, news articles being corrected, and deliberately introduced misleading content\. This forces agents to develop source credibility discrimination and temporal conflict resolution—capabilities essential for genuine research but absent from current training paradigms\.
2. 2\.Task Innovation – Discovery\-Oriented Tasks:We design a new class of training tasks that transcend fact retrieval\. These include hypothesis generation \(identifying latent connections between two unrelated research domains\) and contradiction resolution \(analyzing multiple conflicting accounts of the same phenomenon and producing evidence\-weighted conclusions\)\. These tasks elevate the upper bound of agent capability from “advanced search engine” to “junior researcher\.”
3. 3\.Algorithm Innovation – Self\-Reflective Meta\-Reward:We extend the GRPO framework with a multi\-dimensional reward function that jointly optimizes for \(a\) answer correctness, \(b\) search path efficiency, \(c\) self\-reflection depth \(rewarding explicit error recognition and backtracking within<think\>traces\), and \(d\) tool call diversity \(penalizing repetitive invocation patterns\)\. This meta\-reward mechanism directly mitigates the repetitive loop pathology while fostering more sophisticated reasoning strategies\.
4. 4\.Architecture Innovation – Heterogeneous Multi\-Agent Swarm:We decompose the research agent into three specialized lightweight models—aScoutoptimized for search query construction, aFiltertrained to rapidly assess webpage relevance, and aSynthesizerspecialized in integrating fragmented information\. These agents are jointly trained via coordinated reinforcement learning, with a learned communication protocol emerging through shared reward signals\.

All four innovations build directly upon the LiteResearcher infrastructure\[[1](https://arxiv.org/html/2606.19893#bib.bib1)\], inheriting its zero\-marginal\-cost training paradigm while extending its scope and ambition\. The complete framework is designed to operate within the same local search/browse environment, requiring no additional API expenditure\.

The remainder of this paper is organized as follows\. Section[2](https://arxiv.org/html/2606.19893#S2)reviews related work across four research threads\. Section[3](https://arxiv.org/html/2606.19893#S3)presents the MetaResearcher framework in detail\. Section[4](https://arxiv.org/html/2606.19893#S4)describes the experimental design and planned evaluation\. Section[5](https://arxiv.org/html/2606.19893#S5)discusses implications and limitations, and Section[6](https://arxiv.org/html/2606.19893#S6)concludes\.

## 2Related Work

Our work intersects with four rapidly evolving research threads: deep research agents, reinforcement learning for agentic systems, self\-reflection mechanisms in LLMs, and adversarial training environments\.

### 2\.1Deep Research Agents

The deep research agent paradigm has progressed rapidly from initial explorations to production\-grade systems\. Early work such as Search\-R1\[[2](https://arxiv.org/html/2606.19893#bib.bib2)\]and its successor Search\-R1\+\+\[[3](https://arxiv.org/html/2606.19893#bib.bib3)\]established the foundation for training LLM\-based search agents with reinforcement learning, systematically investigating the effects of prompt templates, reward functions, and policy optimization methods\. Their key finding—that GRPO exhibits relative instability compared to REINFORCE and PPO variants—motivates our work on enhanced reward structures\.

LiteResearcher\[[1](https://arxiv.org/html/2606.19893#bib.bib1)\]represents the current state\-of\-the\-art in open\-source deep research agents, achieving 71\.3% on GAIA and 78\.0% on Xbench\-DS with only 4B parameters\. Its three\-pillar methodology—co\-constructed training data, stable local tool environment, and difficulty\-aware curriculum RL—provides the infrastructure foundation for MetaResearcher\.

Concurrent work includes DeepRubric\[[5](https://arxiv.org/html/2606.19893#bib.bib5)\], which introduces evidence\-tree rubric supervision to achieve comparable performance with approximately 13×\\timesfewer RL GPU\-hours, and the Chaining the Evidence \(CaRR\) framework\[[6](https://arxiv.org/html/2606.19893#bib.bib6)\], which proposes citation\-aware rubric rewards with explicit evidence chaining\. The SMTL framework\[[24](https://arxiv.org/html/2606.19893#bib.bib24)\]challenges sequential reasoning by replacing it with parallel evidence acquisition, achieving 75\.7% on GAIA\. Branch\-and\-Browse\[[50](https://arxiv.org/html/2606.19893#bib.bib50)\]introduces tree\-structured web exploration with backtracking, while EcoGEO\[[49](https://arxiv.org/html/2606.19893#bib.bib49)\]proposes trajectory\-aware evidence ecosystems that reshape how agents encounter information\. The Expert Consulting Benchmark\[[25](https://arxiv.org/html/2606.19893#bib.bib25)\]introduces cognitive traps to evaluate deep research agents\. Comprehensive surveys\[[23](https://arxiv.org/html/2606.19893#bib.bib23)\]have systematized the field\. These works collectively demonstrate the field’s trajectory toward more sophisticated reward structures—a direction that MetaResearcher extends through self\-reflective meta\-rewards\.

### 2\.2Reinforcement Learning for Agentic Systems

Group Relative Policy Optimization \(GRPO\)\[[4](https://arxiv.org/html/2606.19893#bib.bib4)\]has become a cornerstone for training LLM\-based agents, eliminating the need for a separate critic model by leveraging group\-based advantage estimation\. Several extensions have addressed GRPO’s limitations in agentic settings: Stratified GRPO\[[7](https://arxiv.org/html/2606.19893#bib.bib7)\]partitions trajectories into homogeneous strata, AT\-GRPO\[[8](https://arxiv.org/html/2606.19893#bib.bib8)\]introduces agent\- and turn\-wise grouping for multi\-agent settings, and Dr\. MAS\[[9](https://arxiv.org/html/2606.19893#bib.bib9)\]theoretically identifies gradient\-norm instability from global GRPO baselines, proposing agent\-wise advantage normalization that yields improvements of \+5\.6% on mathematical reasoning and \+15\.2% on search tasks\.

Recent advances in agentic RL include GiGPO\[[29](https://arxiv.org/html/2606.19893#bib.bib29)\], which introduces group\-in\-group advantage estimation achieving\>\>12% gains over GRPO on ALFWorld, BEACON\[[28](https://arxiv.org/html/2606.19893#bib.bib28)\]which partitions trajectories at milestone boundaries for temporal reward shaping, and StraTA\[[27](https://arxiv.org/html/2606.19893#bib.bib27)\]which samples compact strategies via hierarchical RL\. The SPARK framework\[[30](https://arxiv.org/html/2606.19893#bib.bib30)\]achieves 84\.4% success with only 20% training data through strategic branching\. Further advances include constant\-context skill learning\[[31](https://arxiv.org/html/2606.19893#bib.bib31)\], self\-evolving agents\[[32](https://arxiv.org/html/2606.19893#bib.bib32)\], and data flywheel approaches\[[33](https://arxiv.org/html/2606.19893#bib.bib33)\]for sparse\-reward settings\.

Our meta\-reward mechanism extends this line of work by introducing process\-level reward components beyond simple outcome correctness, aligning with the field’s growing recognition thathowan agent searches matters as much aswhatit finds\.

### 2\.3Self\-Reflection in LLM Agents

The integration of self\-reflection mechanisms into LLM training has seen explosive growth in 2025–2026\. Experiential Reinforcement Learning \(ERL\)\[[10](https://arxiv.org/html/2606.19893#bib.bib10)\]embeds an explicit experience\-reflection\-consolidation loop into RL training, achieving gains of up to \+81% on Sokoban and \+11% on HotpotQA\. Agentic Critical Training \(ACT\)\[[11](https://arxiv.org/html/2606.19893#bib.bib11)\]trains agents to identify better actions among alternatives, while ICRL\[[12](https://arxiv.org/html/2606.19893#bib.bib12)\]jointly trains solver and critic from a shared backbone with distribution\-calibration re\-weighting\.

Particularly relevant is ReflexiCoder\[[13](https://arxiv.org/html/2606.19893#bib.bib13)\], which internalizes the full generation\-reflection\-correction trajectory into model weights via RL\-only training, achieving 94\.51% on HumanEval with approximately 40% token\-efficiency gains\. RePro\[[14](https://arxiv.org/html/2606.19893#bib.bib14)\]trains agents to self\-generate progress signals through a forward\-then\-reflect paradigm, and RefGRPO\[[15](https://arxiv.org/html/2606.19893#bib.bib15)\]adds a calibration bonus by contrasting self\-reflection with actual outcomes, reducing underconfidence from 44\.4% to 7\.7%\.

The broader landscape of process reward models \(PRMs\)\[[34](https://arxiv.org/html/2606.19893#bib.bib34)\]has advanced from outcome\-only signals to token\-level supervision\. Approaches such as iStar\[[35](https://arxiv.org/html/2606.19893#bib.bib35)\]combine implicit PRMs with agentic RL to achieve SOTA on WebShop and visual reasoning, while StepORLM\[[36](https://arxiv.org/html/2606.19893#bib.bib36)\]creates self\-evolving loops between policy and generative PRMs\. The SWE\-TRACE framework\[[37](https://arxiv.org/html/2606.19893#bib.bib37)\]applies rubric\-based PRMs to software engineering agents, and DPRM\[[38](https://arxiv.org/html/2606.19893#bib.bib38)\]extends implicit rewards to multi\-hop question answering\. Token\-level reward modeling\[[39](https://arxiv.org/html/2606.19893#bib.bib39)\]and outcome\-to\-process transfer\[[41](https://arxiv.org/html/2606.19893#bib.bib41)\]further demonstrate the field’s trajectory toward fine\-grained supervision\.

MetaResearcher’s reflection depth reward builds upon these foundations by introducing atrace\-levelreward component that explicitly incentivizes the model to engage in genuine self\-correction within its reasoning traces, rather than simply optimizing for final answer correctness\.

### 2\.4Adversarial Training Environments

The vulnerability of language agents to adversarial information has been systematically documented\. The Synthetic Web benchmark\[[16](https://arxiv.org/html/2606.19893#bib.bib16)\]demonstrates that injecting a single high\-plausibility misinformation article causes accuracy collapse across frontier models, with minimal search escalation and severe miscalibration\. The POTEMKIN framework\[[17](https://arxiv.org/html/2606.19893#bib.bib17)\]formalizes Adversarial Environmental Injection \(AEI\) as a threat model, identifying complementary attack surfaces: breadth attacks that poison retrieval and depth attacks that cause policy collapse into infinite loops\.

Multi\-agent approaches to adversarial robustness include credibility scoring mechanisms\[[18](https://arxiv.org/html/2606.19893#bib.bib18)\]that separate each agent’s contribution from its credibility, achieving accuracy gains of \+6% to \+51% under adversarial conditions\. The SALF framework\[[19](https://arxiv.org/html/2606.19893#bib.bib19)\]implements adversarial training through symbolic learning, degrading detection performance by up to 53\.4% while simultaneously improving detector robustness\. Domain\-specific evaluations such as MedMisBench\[[43](https://arxiv.org/html/2606.19893#bib.bib43)\]demonstrate that LLM accuracy can collapse from 71\.1% to 38\.0% under misleading clinical context, while multi\-agent auditing systems\[[44](https://arxiv.org/html/2606.19893#bib.bib44)\]reduce hallucination rates by approximately 53%\. Persuasion\-balanced training\[[42](https://arxiv.org/html/2606.19893#bib.bib42)\]teaches models to appropriately accept or resist persuasive information in multi\-agent debates\.

MetaResearcher’s Evolving Virtual World extends this line of work by incorporating adversarial information injectionduring training, rather than only evaluating robustness at test time\. This allows the agent to develop epistemic resilience as a learned capability rather than relying on prompt\-level mitigation strategies\.

Table 1:Comparison of representative deep research agent training frameworks\.

## 3MetaResearcher Framework

MetaResearcher extends the LiteResearcher infrastructure across four synergistic dimensions\. Figure[1](https://arxiv.org/html/2606.19893#S3.F1)provides a conceptual overview of the framework architecture\.

![Refer to caption](https://arxiv.org/html/2606.19893v1/x1.png)Figure 1:Conceptual overview of the MetaResearcher framework\. The four innovation dimensions—Evolving Virtual World, Discovery\-Oriented Tasks, Self\-Reflective Meta\-Reward, and Heterogeneous Multi\-Agent Swarm—are integrated into a unified training pipeline built upon LiteResearcher’s local search/browse environment\.### 3\.1Evolving Virtual World

The first dimension addresses the fundamental limitation of static training environments\. While LiteResearcher’s virtual world of∼\\sim32M webpages provides a realistic starting point, its frozen nature means that trained agents never encounter the temporal dynamics that characterize real\-world research\.

#### 3\.1\.1Temporal Dynamics

We introduce atime\-evolving corpuswhere the local web environment simulates information change over time\. For each training episode, a random temporal contextt∈𝒯t\\in\\mathcal\{T\}is sampled, and the corpus state reflects the information available at that simulated time point\. This is implemented through:

- •Versioned Documents:Key documents \(scientific papers, news articles\) exist in multiple versions across the temporal dimension\. For example, a paper’s initial preprint may report finding X, a subsequent correction retracts X, and a later replication study confirms X with caveats\.
- •Temporal Indexing:The Milvus\-based search engine\[[1](https://arxiv.org/html/2606.19893#bib.bib1)\]indexes documents with temporal metadata\. Search results are filtered and ranked according to the current simulated time, naturally exposing agents to information evolution\.
- •Event Scripts:Pre\-scripted event sequences model real\-world research dynamics, including paper retractions, press conference corrections, scientific consensus shifts, and emerging evidence that overturns prior conclusions\.

#### 3\.1\.2Adversarial Information Injection

Beyond temporal dynamics, we introduce structured adversarial content designed to test and improve agents’ epistemic resilience:

- •High\-Plausibility Misinformation:Following the Synthetic Web methodology\[[16](https://arxiv.org/html/2606.19893#bib.bib16)\], we inject fabricated articles that mimic authoritative sources \(prestigious journal formats, well\-known author names\) but contain factually incorrect claims\.
- •Contradictory Expert Opinions:We create clusters of seemingly credible sources that present conflicting conclusions on the same question, requiring agents to evaluate evidence quality rather than simply counting citations\.
- •Subtle Manipulation:More challenging variants include articles where only specific paragraphs contain misinformation while surrounding context is accurate, testing fine\-grained source assessment\.

The adversarial content is generated through a separate LLM pipeline with quality control, ensuring that misinformation is plausible enough to challenge the agent but distinguishable from ground truth through careful analysis\. This approach transforms the training environment from a passive information store into an active teacher that systematically exposes weaknesses in the agent’s research strategy\.

![Refer to caption](https://arxiv.org/html/2606.19893v1/x2.png)Figure 2:Evolving Virtual World mechanism\. Documents evolve across a temporal axis with versioning \(green/blue/red\), while adversarial misinformation \(yellow/red\) is injected to test source credibility assessment\. The agent must learn to track information evolution and detect deceptive content\.

### 3\.2Discovery\-Oriented Tasks

The second dimension redefines the training task distribution to cultivate higher\-order research capabilities beyond fact retrieval\.

#### 3\.2\.1Task Taxonomy

We design three categories of discovery\-oriented tasks, each targeting distinct cognitive capabilities:

Hypothesis Generation \(HG\):The agent is presented with documents from two seemingly unrelated research domains \(e\.g\., “coral reef bleaching patterns” and “financial market microstructure”\)\. The task is to \(a\) retrieve and analyze relevant information from both domains, \(b\) identify structural or mechanistic parallels, and \(c\) formulate a novel, plausible hypothesis connecting the two domains\. Evaluation is performed by an LLM judge assessing the hypothesis on novelty, plausibility, and evidence grounding\.

Contradiction Resolution \(CR\):The agent encounters multiple sources that present conflicting accounts of the same phenomenon \(e\.g\., three different explanations for a historical event, or competing theories about a scientific mechanism\)\. The agent must \(a\) retrieve the full context of each position, \(b\) evaluate source credibility and evidence quality, \(c\) identify points of genuine disagreement versus semantic differences, and \(d\) produce a synthesized conclusion with explicit uncertainty quantification\.

Knowledge Gap Identification \(KGI\):Given a well\-studied research question, the agent must identify genuine gaps or inconsistencies in the available literature rather than simply summarizing known findings\. This tests the agent’s ability to recognize what information ismissing—a skill critical for genuine research but absent from existing benchmarks\.

Table 2:Discovery\-oriented task taxonomy\.
#### 3\.2\.2Training Data Construction

Following LiteResearcher’s co\-construction methodology\[[1](https://arxiv.org/html/2606.19893#bib.bib1)\], training data for these tasks is synthesized through a pipeline that combines:

1. 1\.Seed Document Sampling:Documents are sampled from the local corpus based on topic diversity and information density metrics\.
2. 2\.Task Generation:An LLM\-based generator produces task specifications \(questions, expected research approach, and gold\-standard evaluation criteria\) from the seed documents\.
3. 3\.Difficulty Calibration:Each task is assigned a difficulty score based on the pass@8 performance of a reference model, following the curriculum RL paradigm\[[1](https://arxiv.org/html/2606.19893#bib.bib1)\]\.
4. 4\.Quality Filtering:Tasks that are trivially solvable \(pass@8\>\>0\.9\) or impossibly difficult \(pass@8<<0\.05\) are filtered or redistributed across difficulty levels\.

### 3\.3Self\-Reflective Meta\-Reward

The third dimension addresses the fundamental limitation of outcome\-based reward by introducing a multi\-component meta\-reward function that jointly optimizes for correctness, efficiency, reflection quality, and behavioral diversity\.

![Refer to caption](https://arxiv.org/html/2606.19893v1/x3.png)Figure 3:Self\-Reflective Meta\-Reward computation pipeline\. The agent’s trajectory is evaluated across four reward components, which are aggregated into a weighted meta\-reward signal for GRPO\-based policy optimization\.#### 3\.3\.1Reward Components

The meta\-rewardRmetaR\_\{\\text\{meta\}\}is defined as:

Rmeta=wc⋅Rcorrectness\+we⋅Refficiency\+wr⋅Rreflection\+wd⋅RdiversityR\_\{\\text\{meta\}\}=w\_\{c\}\\cdot R\_\{\\text\{correctness\}\}\+w\_\{e\}\\cdot R\_\{\\text\{efficiency\}\}\+w\_\{r\}\\cdot R\_\{\\text\{reflection\}\}\+w\_\{d\}\\cdot R\_\{\\text\{diversity\}\}\(1\)
wherewc,we,wr,wdw\_\{c\},w\_\{e\},w\_\{r\},w\_\{d\}are hyperparameters controlling the relative contribution of each component, with∑wi=1\\sum w\_\{i\}=1\.

Correctness Reward \(RcorrectnessR\_\{\\text\{correctness\}\}\):Following LiteResearcher\[[1](https://arxiv.org/html/2606.19893#bib.bib1)\]and the broader practice of outcome\-based RL\[[46](https://arxiv.org/html/2606.19893#bib.bib46),[45](https://arxiv.org/html/2606.19893#bib.bib45)\], this is the binary outcome\-based reward determined by an LLM judge comparing the agent’s final answer against the reference answer\. For GAIA\-style tasks, the judge uses a correctness prompt; for Xbench\-DS tasks, a Chinese\-language evaluation prompt\.

Path Efficiency Reward \(RefficiencyR\_\{\\text\{efficiency\}\}\):This reward component incentivizes information\-economic search behavior:

Refficiency=\{1\.0if agent finds answer in≤Tminsteps1\.0−α⋅t−TminTmax−TminifTmin<t≤Tmax0\.0ift\>TmaxR\_\{\\text\{efficiency\}\}=\\begin\{cases\}1\.0&\\text\{if agent finds answer in $\\leq T\_\{\\text\{min\}\}$ steps\}\\\\ 1\.0\-\\alpha\\cdot\\frac\{t\-T\_\{\\text\{min\}\}\}\{T\_\{\\text\{max\}\}\-T\_\{\\text\{min\}\}\}&\\text\{if $T\_\{\\text\{min\}\}<t\\leq T\_\{\\text\{max\}\}$\}\\\\ 0\.0&\\text\{if $t\>T\_\{\\text\{max\}\}$\}\\end\{cases\}\(2\)
wherettis the number of tool calls,TminT\_\{\\text\{min\}\}is the expected minimum steps for the task,TmaxT\_\{\\text\{max\}\}is the maximum allowed steps, andα\\alphais a scaling factor\.

Reflection Depth Reward \(RreflectionR\_\{\\text\{reflection\}\}\):This is the key novel component that directly incentivizes self\-reflective behavior within the agent’s reasoning traces:

Rreflection=β1⋅𝕀​\[backtrack\]\+β2⋅𝕀​\[strategy\_change\]\+β3⋅Ndistinct\_sourcesNtotal\_visitsR\_\{\\text\{reflection\}\}=\\beta\_\{1\}\\cdot\\mathbb\{I\}\[\\text\{backtrack\}\]\+\\beta\_\{2\}\\cdot\\mathbb\{I\}\[\\text\{strategy\\\_change\}\]\+\\beta\_\{3\}\\cdot\\frac\{N\_\{\\text\{distinct\\\_sources\}\}\}\{N\_\{\\text\{total\\\_visits\}\}\}\(3\)
where:

- •𝕀​\[backtrack\]\\mathbb\{I\}\[\\text\{backtrack\}\]is an indicator for explicit acknowledgments within<think\>tags that a previous search direction was unproductive
- •𝕀​\[strategy\_change\]\\mathbb\{I\}\[\\text\{strategy\\\_change\}\]detects changes in search strategy \(e\.g\., switching from keyword search to author\-based search after initial failure\)
- •The third term measures source diversity relative to total page visits, rewarding agents that explore genuinely different information sources rather than repeatedly visiting variants of the same source

Tool Call Diversity Reward \(RdiversityR\_\{\\text\{diversity\}\}\):This component directly penalizes the repetitive action loop pathology:

Rdiversity=γ⋅\|unique\_queries\|\|total\_calls\|\+\(1−γ\)⋅\|unique\_domains\|\|total\_visits\|R\_\{\\text\{diversity\}\}=\\gamma\\cdot\\frac\{\|\\text\{unique\\\_queries\}\|\}\{\|\\text\{total\\\_calls\}\|\}\+\(1\-\\gamma\)\\cdot\\frac\{\|\\text\{unique\\\_domains\}\|\}\{\|\\text\{total\\\_visits\}\|\}\(4\)
where the first term measures search query diversity and the second term measures webpage domain diversity\. Both terms are normalized by the total number of calls/visits to prevent trivial maximization through extended search\.

Table 3:Meta\-reward component design\.
#### 3\.3\.2Optimization Procedure

The meta\-reward is integrated into the GRPO training loop following the on\-policy, difficulty\-aware curriculum paradigm established by LiteResearcher\[[1](https://arxiv.org/html/2606.19893#bib.bib1)\]\. For each training step:

1. 1\.Sample a batch of tasks from the current curriculum difficulty level
2. 2\.For each task, generateGGrollouts \(G=8G=8following\[[1](https://arxiv.org/html/2606.19893#bib.bib1)\]\)
3. 3\.ComputeRmetaR\_\{\\text\{meta\}\}for each rollout trajectory
4. 4\.Estimate group\-based advantages:Ai=Rmeta\(i\)−μGσGA\_\{i\}=\\frac\{R\_\{\\text\{meta\}\}^\{\(i\)\}\-\\mu\_\{G\}\}\{\\sigma\_\{G\}\}
5. 5\.Update policy via GRPO objective:𝒥GRPO\(θ\)=𝔼\[1G∑i=1Gmin\(ri\(θ\)Ai,\\mathcal\{J\}\_\{\\text\{GRPO\}\}\(\\theta\)=\\mathbb\{E\}\\Bigl\[\\frac\{1\}\{G\}\\sum\_\{i=1\}^\{G\}\\min\\bigl\(r\_\{i\}\(\\theta\)A\_\{i\}, clip\(ri\(θ\),1−ϵ,1\+ϵ\)Ai\)\]\\qquad\\qquad\\qquad\\text\{clip\}\(r\_\{i\}\(\\theta\),1\-\\epsilon,1\+\\epsilon\)A\_\{i\}\\bigr\)\\Bigr\]

whereri​\(θ\)=πθ​\(oi\|q\)πθold​\(oi\|q\)r\_\{i\}\(\\theta\)=\\frac\{\\pi\_\{\\theta\}\(o\_\{i\}\|q\)\}\{\\pi\_\{\\theta\_\{\\text\{old\}\}\}\(o\_\{i\}\|q\)\}is the importance sampling ratio\.

### 3\.4Heterogeneous Multi\-Agent Swarm

The fourth dimension transitions from a monolithic agent architecture to a distributed, specialized multi\-agent system trained via coordinated reinforcement learning\. Concurrent work such as DECOR\[[20](https://arxiv.org/html/2606.19893#bib.bib20)\]has demonstrated the effectiveness of role decomposition in deep search through Planner/Filter/Answerer agents trained with hybrid rewards, while SAGE\[[21](https://arxiv.org/html/2606.19893#bib.bib21)\]shows how multiple agents can co\-evolve from a shared backbone through self\-generated curricula\. MetaResearcher extends these paradigms by introducing jointly\-trained, lightweight specialized agents with a learned communication protocol optimized through coordinated GRPO\.

![Refer to caption](https://arxiv.org/html/2606.19893v1/x4.png)Figure 4:Heterogeneous Multi\-Agent Swarm architecture\. Three specialized agents—Scout, Filter, and Synthesizer—communicate through a shared evidence store and are jointly trained via GRPO with role\-specific and team\-level rewards\.#### 3\.4\.1Agent Roles

We define three specialized agent roles, each instantiated as a compact language model \(4B parameters, matching the LiteResearcher scale\):

- •Scout Agent \(πS\\pi\_\{S\}\):Specialized in search query construction\. Given the current research question and the history of previous search attempts, the Scout generates optimized queries designed to maximize information gain\. Its action space consists of search query strings formatted for the local Milvus search engine\.
- •Filter Agent \(πF\\pi\_\{F\}\):Specialized in relevance assessment\. Given a set of search results \(titles, snippets, URLs\), the Filter rapidly identifies which pages are worth visiting for detailed reading\. Its output is a ranked subset of URLs with estimated relevance scores and specific information goals for each selected page\.
- •Synthesizer Agent \(πS​y​n\\pi\_\{Syn\}\):Specialized in information integration\. Given the collected search results and page contents, the Synthesizer produces the final answer by identifying patterns, resolving contradictions, and synthesizing fragmented information into coherent conclusions\. It also manages the shared evidence store and decides when sufficient information has been gathered\.

Table 4:Multi\-agent role definitions\.
#### 3\.4\.2Communication Protocol

The three agents communicate through a structured message passing interface, implemented as shared memory within LiteResearcher’s existing message framework:

mt\(i→j\)=fcomm​\(statet\(i\),gt\(i\),ht\)m\_\{t\}^\{\(i\\rightarrow j\)\}=f\_\{\\text\{comm\}\}\(\\text\{state\}\_\{t\}^\{\(i\)\},g\_\{t\}^\{\(i\)\},h\_\{t\}\)\(5\)
wheremt\(i→j\)m\_\{t\}^\{\(i\\rightarrow j\)\}is the message from agentiito agentjjat timett,fcommf\_\{\\text\{comm\}\}is a learned communication function,statet\(i\)\\text\{state\}\_\{t\}^\{\(i\)\}is agentii’s internal state,gt\(i\)g\_\{t\}^\{\(i\)\}is its current goal, andhth\_\{t\}is the shared interaction history\.

Rather than pre\-specifying the communication format, we allow agents to develop an emergent communication protocol through the RL training process, where the content and format of inter\-agent messages are optimized for team\-level task performance\.

#### 3\.4\.3Training Framework

All three agents share the same base architecture \(transformer decoder, matching LiteResearcher\-4B\) but are trained with distinct reward signals and data distributions:

ℒtotal=ℒGRPO​\(πS\)\+ℒGRPO​\(πF\)\+ℒGRPO​\(πS​y​n\)\+λ⋅ℒteam\\mathcal\{L\}\_\{\\text\{total\}\}=\\mathcal\{L\}\_\{\\text\{GRPO\}\}\(\\pi\_\{S\}\)\+\\mathcal\{L\}\_\{\\text\{GRPO\}\}\(\\pi\_\{F\}\)\+\\mathcal\{L\}\_\{\\text\{GRPO\}\}\(\\pi\_\{Syn\}\)\+\\lambda\\cdot\\mathcal\{L\}\_\{\\text\{team\}\}\(6\)
whereℒGRPO​\(πi\)\\mathcal\{L\}\_\{\\text\{GRPO\}\}\(\\pi\_\{i\}\)is the individual GRPO loss for each agent with role\-specific rewards,ℒteam\\mathcal\{L\}\_\{\\text\{team\}\}is a shared team\-level reward that encourages effective coordination, andλ\\lambdacontrols the balance between individual specialization and team coherence\.

The individual reward for the Scout prioritizes search result quality \(precision@k of results returned given the query\), the Filter’s reward prioritizes selection accuracy \(whether recommended pages contain task\-relevant information\), and the Synthesizer’s reward is primarily based on final answer correctness\. The team reward component provides a shared signal proportional to overall task success, coordinating the three agents toward a common objective\. This role\-specific reward design is complementary to offline RL approaches such as Retrospex\[[40](https://arxiv.org/html/2606.19893#bib.bib40)\], which uses offline\-trained critics for action rescoring in agentic tasks\.

## 4Experimental Design

In this section, we describe the planned experimental validation of MetaResearcher\. The experiments are designed to evaluate each innovation dimension both independently and in combination, with ablation studies identifying marginal contributions\.

### 4\.1Evaluation Benchmarks

We evaluate MetaResearcher on three categories of benchmarks:

1. 1\.Standard Benchmarks:GAIA \(all levels\) and Xbench\-DS, following the LiteResearcher evaluation protocol\[[1](https://arxiv.org/html/2606.19893#bib.bib1)\]\. These measure the framework’s ability to maintain or improve performance on existing metrics\.
2. 2\.Epistemic Robustness Benchmark:A new benchmark suite comprising questions where optimal performance requires \(a\) detecting and discounting misinformation, \(b\) resolving contradictory sources, and \(c\) tracking information evolution over time\. This benchmark directly tests the Evolving Virtual World’s training effects\.
3. 3\.Discovery Task Benchmark:A set of hypothesis generation and contradiction resolution tasks with human\-annotated gold standards, designed to measure the framework’s success in cultivating higher\-order research capabilities\.

### 4\.2Ablation Studies

We conduct comprehensive ablation studies:

- •Environment Ablation:Compare fully dynamic environment vs\. static \(original LiteResearcher\) vs\. dynamic without adversarial injection
- •Reward Ablation:Compare full meta\-reward vs\. outcome\-only vs\. outcome \+ efficiency vs\. outcome \+ reflection depth
- •Architecture Ablation:Compare full multi\-agent swarm vs\. single\-agent with same total parameters vs\. multi\-agent without shared team reward
- •Task Ablation:Compare training with and without discovery\-oriented tasks, measuring transfer effects on standard benchmarks

### 4\.3Implementation Details

The framework is implemented as an extension of the LiteResearcher codebase\[[1](https://arxiv.org/html/2606.19893#bib.bib1)\]\. Key implementation details:

- •Base model: Qwen2\.5\-4B\-Instruct\[[45](https://arxiv.org/html/2606.19893#bib.bib45)\], following\[[1](https://arxiv.org/html/2606.19893#bib.bib1)\]
- •Local search engine: Milvus with BGE\-M3 embeddings
- •Local browse tool: PostgreSQL\-based page store
- •Multi\-agent communication: Shared message buffer with learned gating
- •Curriculum stages: 4\-stage difficulty progression \(Easy→\\rightarrowMedium→\\rightarrowHard→\\rightarrowExpert\)
- •Training hardware: 8×\\timesA100\-80GB GPUs
- •Estimated training budget:∼\\sim2000 GPU\-hours for full pipeline
- •Synthetic data generation following agentic LLM training paradigms\[[48](https://arxiv.org/html/2606.19893#bib.bib48)\]

### 4\.4Hypotheses

We formalize the following testable hypotheses, each targeting a specific innovation dimension:

Table 5:Experimental hypotheses\.

## 5Discussion

### 5\.1Implications

MetaResearcher’s four\-dimensional approach to scaling deep research agents has several implications for the broader field\. First, the integration of adversarial elements during training—rather than only during evaluation—represents a paradigm shift in how we think about agent robustness\. Current systems treat epistemic vulnerabilities as evaluation artifacts to be measured; we argue they should be treated as training targets to be optimized\.

Second, the transition from outcome\-based to process\-based rewards addresses a fundamental limitation of current RL\-for\-agent pipelines\. By explicitly rewarding efficient search paths, self\-reflective behavior, and tool use diversity, we create training signals that more closely align with genuine research quality rather than superficial answer correctness\.

Third, the heterogeneous multi\-agent architecture aligns with the growing recognition that specialized, modular systems—rather than monolithic models—represent the most scalable path toward capable AI agents\. This echoes findings from distributed systems and organizational theory, where specialization and coordination consistently outperform generalist approaches on complex tasks\.

### 5\.2Limitations

Several limitations warrant acknowledgment\. The adversarial content generation pipeline itself requires careful quality control to ensure that injected misinformation is challenging but detectable\. Poorly calibrated adversarial content could either be trivially identifiable \(providing no training signal\) or unfairly deceptive \(teaching agents to be overly skeptical of legitimate information\)\. We address this through multi\-stage human review of adversarial content quality\.

The multi\-agent training framework introduces additional computational overhead for inter\-agent communication and synchronized training\. While we expect the performance gains to justify this cost, the practical trade\-off between specialization benefits and coordination overhead requires empirical quantification\.

Finally, while discovery\-oriented tasks push beyond fact retrieval, they introduce evaluation challenges\. Hypothesis generation, in particular, lacks clear “correct/incorrect” boundaries, and our LLM\-judge\-based evaluation may not fully capture the quality of generated hypotheses\.

02002004004006006008008001,0001\{,\}00000\.50\.511Training StepsReward / Loop CountMetaReward \(projected\)Outcome\-only \(baseline\)Repetitive Loops \(norm\.\)Figure 5:Projected training dynamics\. The meta\-reward trajectory \(blue\) shows accelerated improvement over outcome\-only baseline \(red\), while normalized repetitive action loops \(green, dashed\) exhibit a projected decline of\>\>50%\.

## 6Conclusions

We have presented MetaResearcher, a comprehensive framework for scaling deep research agent training across four synergistic dimensions: an Evolving Virtual World that injects temporal dynamics and adversarial information into the training environment, Discovery\-Oriented Tasks that transcend simple fact retrieval, a Self\-Reflective Meta\-Reward mechanism that jointly optimizes for correctness, efficiency, reflection quality, and behavioral diversity, and a Heterogeneous Multi\-Agent Swarm architecture comprising specialized Scout, Filter, and Synthesizer models\.

Built upon the LiteResearcher infrastructure, MetaResearcher inherits its zero\-marginal\-cost training paradigm while systematically addressing its four fundamental limitations: static environments, fact\-retrieval\-only tasks, outcome\-only rewards, and monolithic architecture\. The framework targets substantial improvements in both standard benchmark performance and epistemic robustness under adversarial conditions\.

The codebase, trained models, and training data will be released as open\-source extensions of the LiteResearcher project, enabling reproducible research and community\-driven advancement\. We believe the four\-dimensional approach outlined in this work represents a meaningful step toward deep research agents that can serve as genuine collaborators in the scientific discovery process\.

Author Contributions:Conceptualization, W\.Y\. and S\.L\.; methodology, W\.Y\., M\.Y\., and S\.L\.; software, Z\.Z\. and H\.D\.; validation, J\.W\., B\.L\., and S\.L\.; investigation, W\.Y\. and M\.Y\.; resources, S\.L\.; data curation, M\.Y\. and J\.W\.; writing—original draft preparation, W\.Y\. and S\.L\.; writing—review and editing, S\.L\. and J\.W\.; visualization, W\.Y\. and Z\.Z\.; supervision, S\.L\.; project administration, S\.L\.; funding acquisition, S\.L\. All authors have read and agreed to the published version of the manuscript\.

Funding:This research received no external funding\.

Data Availability Statement:The LiteResearcher\-Data dataset is publicly available on HuggingFace\. All code and trained models will be released upon publication\.

Conflicts of Interest:The authors declare no conflicts of interest\.

AI Usage Disclosure:Portions of this manuscript were drafted with the assistance of large language models\. All content was reviewed, edited, and approved by the human authors, who take full responsibility for the intellectual content and accuracy of the work\.

## References

- \[1\]W\. Li, B\. Qu, B\. Pan, J\. Zhang, Z\. Liu, P\. Zhang, W\. Chen, and B\. Zhang, “LiteResearcher: A scalable agentic RL training framework for deep research agent,”arXiv preprint arXiv:2604\.17931, 2026\.
- \[2\]X\. Jin, X\. Chen, Z\. Wang, et al\., “Search\-R1: Training LLMs to reason and leverage search helpers with reinforcement learning,”arXiv preprint arXiv:2503\.09516, 2025\.
- \[3\]X\. Jin, X\. Chen, Z\. Wang, et al\., “How to train your deep research agent? Prompt, reward, and policy optimization in Search\-R1,”arXiv preprint arXiv:2602\.19526, 2026\.
- \[4\]Z\. Shao, P\. Wang, Q\. Zhu, et al\., “DeepSeekMath: Pushing the limits of mathematical reasoning,”arXiv preprint arXiv:2402\.03300, 2024\.
- \[5\]DeepRubric, “Evidence\-tree rubric supervision for efficient reinforcement learning of deep research agents,”arXiv preprint arXiv:2606\.17029, 2026\.
- \[6\]“Chaining the evidence: Robust reinforcement learning for deep search agents with citation\-aware rubric rewards,”arXiv preprint arXiv:2601\.06021, 2026\.
- \[7\]“Stratified GRPO: Handling structural heterogeneity in reinforcement learning of LLM search agents,” inProc\. ICML, 2026\.
- \[8\]“Stronger\-MAS: Multi\-agent reinforcement learning for collaborative LLMs,”arXiv preprint arXiv:2510\.11062, 2025\.
- \[9\]“Dr\. MAS: Stable reinforcement learning for multi\-agent LLM systems,”arXiv preprint arXiv:2602\.08847, 2026\.
- \[10\]R\. Shi, L\. Chen, J\. Zhang, et al\., “Experiential reinforcement learning,”arXiv preprint arXiv:2602\.13949, 2026\.
- \[11\]Z\. Liu, Y\. Wang, C\. Li, et al\., “Agentic critical training,”arXiv preprint arXiv:2603\.08706, 2026\.
- \[12\]C\. Lin, D\. Zhou, S\. Huang, et al\., “ICRL: Learning to internalize self\-critique with reinforcement learning,”arXiv preprint arXiv:2605\.15224, 2026\.
- \[13\]H\. Jiang, Y\. Zhang, Z\. Yang, et al\., “ReflexiCoder: Teaching large language models to self\-reflect on generated code and self\-correct it via reinforcement learning,”arXiv preprint arXiv:2603\.05863, 2026\.
- \[14\]X\. Ma, Y\. Chen, W\. Wang, et al\., “Retrospective progress\-aware self\-refinement for LLM agent training,”arXiv preprint arXiv:2606\.14302, 2026\.
- \[15\]J\. Zhu, “Closing the reflection gap: A free calibration bonus for agentic RL,”arXiv preprint arXiv:2606\.14211, 2026\.
- \[16\]S\. Shah and L\. Ozgur, “The synthetic web: Adversarially\-curated mini\-internets for diagnosing epistemic weaknesses of language agents,”arXiv preprint arXiv:2603\.00801, 2026\.
- \[17\]Z\. Zhan, et al\., “How adversarial environments mislead agentic AI?”arXiv preprint arXiv:2604\.18874, 2026\.
- \[18\]S\. Ebrahimi, M\. Dehghankar, and A\. Asudeh, “Adversary\-resistant multi\-agent LLM system via credibility scoring,” inProc\. IJCNLP\-AACL, 2025\.
- \[19\]C\. Tian, Q\. Ho, and X\. Chen, “A symbolic adversarial learning framework for evolving fake news generation and detection,” inProc\. EMNLP, 2025\.
- \[20\]R\. Chen, Z\. Zhang, G\. Zhang, L\. Gu, and L\. Zhou, “DECOR: Learning to decompose and collaborate in deep search via multi\-agent reinforcement learning,” inProc\. ICML, 2026\.
- \[21\]Y\. Peng, X\. Zhu, C\. Wei, et al\., “SAGE: Multi\-agent self\-evolution for LLM reasoning,”arXiv preprint arXiv:2603\.15255, 2026\.
- \[22\]G\. Mialon, C\. Fourrier, et al\., “GAIA: A general AI assistant,”arXiv preprint arXiv:2311\.12983, 2025\.
- \[23\]Z\. Wang et al\., “Deep research: A systematic survey,”arXiv preprint arXiv:2512\.02038, 2025\.
- \[24\]Z\. Chen et al\., “Search more, think less: Rethinking long\-horizon agentic search,”arXiv preprint arXiv:2602\.22675, 2026\.
- \[25\]J\. Liu et al\., “Evaluating deep research agents on expert consulting work,”arXiv preprint arXiv:2605\.17554, 2026\.
- \[26\]openJiuwen team, “DeepSearch: BrowseComp\-Plus benchmark,”Technical Report, 2026\.
- \[27\]X\. Zhang et al\., “StraTA: Incentivizing agentic RL with strategic trajectory abstraction,”arXiv preprint arXiv:2605\.06642, 2026\.
- \[28\]Y\. Liu et al\., “Milestone\-guided policy learning for long\-horizon language agents,” inProc\. ICML, 2026\.
- \[29\]H\. Wang et al\., “Group\-in\-group policy optimization for LLM agent training,” inProc\. NeurIPS, 2025\.
- \[30\]J\. Yang et al\., “SPARK: Strategic policy\-aware exploration via dynamic branching,”arXiv preprint arXiv:2601\.20209, 2026\.
- \[31\]L\. Zhang et al\., “From history to state: Constant\-context skill learning for LLM agents,”arXiv preprint arXiv:2605\.05413, 2026\.
- \[32\]Z\. Chen et al\., “Self\-evolving LLM agents under offline data support,” inProc\. ICML, 2026\.
- \[33\]Q\. Li et al\., “Beyond policy optimization: A data curation flywheel for sparse\-reward planning,”arXiv preprint arXiv:2508\.03018, 2025\.
- \[34\]Y\. Zheng et al\., “A survey of process reward models,”arXiv preprint arXiv:2510\.08049, 2025\.
- \[35\]X\. Zhang et al\., “Agentic reinforcement learning with implicit step rewards,” inProc\. ICLR, 2026\.
- \[36\]Y\. Zhou et al\., “StepORLM: A self\-evolving framework with generative process supervision,” inProc\. ICLR, 2026\.
- \[37\]Z\. Han et al\., “SWE\-TRACE: Optimizing SWE agents through rubric process reward models,”arXiv preprint arXiv:2604\.14820, 2026\.
- \[38\]Y\. Wang et al\., “DPRM: A dual implicit process reward model in multi\-hop QA,” inProc\. AAAI, 2026\.
- \[39\]Z\. Chen et al\., “Discriminative policy optimization for token\-level reward models,” inProc\. ICML, 2025\.
- \[40\]Y\. Li et al\., “Retrospex: Language agent meets offline reinforcement learning critic,”arXiv preprint arXiv:2505\.11807, 2025\.
- \[41\]K\. Yang et al\., “From outcomes to processes: Guiding PRM learning from ORM,” inProc\. ACL, 2025\.
- \[42\]E\. Stengel\-Eskin, P\. Hase, and M\. Bansal, “Teaching models to balance resisting and accepting persuasion,” inProc\. NAACL, 2025\.
- \[43\]H\. Zhou et al\., “MedMisBench: Measuring epistemic resilience under misleading medical context,”bioRxiv, 2026\.
- \[44\]M\. Osama et al\., “Trust but verify: Mitigating hallucinations via adversarial auditing,”arXiv preprint arXiv:2606\.14149, 2026\.
- \[45\]Qwen Team, “Qwen2\.5 technical report,”arXiv preprint arXiv:2507\.10674, 2025\.
- \[46\]OpenAI, “GPT\-4o system card,”OpenAI Technical Report, 2025\.
- \[47\]openJiuwen team, “DeepAgent: A dynamic self\-evolving engine for deep search,”Technical Report, 2026\.
- \[48\]M\. Liu et al\., “Agentic LLM training with synthetic data generation,”arXiv preprint arXiv:2509\.08237, 2025\.
- \[49\]T\. Fang et al\., “EcoGEO: Trajectory\-aware evidence ecosystems for web\-enabled LLM search agents,”arXiv preprint arXiv:2605\.12887, 2026\.
- \[50\]K\. Ma et al\., “Branch\-and\-Browse: Efficient web exploration with tree\-structured reasoning and action memory,”arXiv preprint arXiv:2510\.19838, 2025\.

Similar Articles

RubricEM: Meta-RL with Rubric-guided Policy Decomposition beyond Verifiable Rewards

Hugging Face Daily Papers

This paper introduces RubricEM, a reinforcement learning framework that uses rubric-guided policy decomposition and reflection-based meta-policy evolution to train deep research agents for long-form tasks. The resulting RubricEM-8B model demonstrates strong performance on long-form research benchmarks by leveraging stage-aware planning and denser semantic feedback.

Some considerations on learning to explore via meta-reinforcement learning

OpenAI Blog

OpenAI researchers introduce E-MAML and E-RL², two meta-reinforcement learning algorithms designed to improve exploration in tasks where discovering optimal policies requires significant exploration. The work demonstrates these algorithms' effectiveness on novel environments including Krazy World and maze tasks.

DuMate-DeepResearch: An Auditable Multi-Agent System with Recursive Search and Rubric-Grounded Reasoning

arXiv cs.AI

This technical report introduces DuMate-DeepResearch, a multi-agent framework for deep research tasks that decouples the agent core from a tool ecosystem, and incorporates graph-based dynamic planning, recursive two-level execution, and rubric-based test-time optimization. The system achieves state-of-the-art results on two deep research benchmarks, demonstrating the value of auditable agent infrastructure.