Skip to content

Expanding the Capability Frontier of LLM Agents with ZPD-Guided Data Synthesis

๐Ÿ•’ Published (v1): 2026-01-01 ยท Source: ICLR ยท Venue: ICLR 2026 ยท link

Why this paper was selected

ZPD-guided data synthesis pushes agent capability frontier beyond training distribution

Ask a follow-up

Open an assistant pre-loaded with this paper's context.

๐Ÿ’ฌ Ask ChatGPTโœฆ Ask Claude

TL;DR

This paper introduces the AgentFrontier Data Engine, a data synthesis pipeline grounded in Vygotsky's Zone of Proximal Development (ZPD) theory, which identifies and generates training tasks that a base LLM cannot solve alone but a tool-augmented agent can. Training Qwen3-30B-A3B on 50B tokens of knowledge-intensive data and 12,000 frontier-level trajectories yields AgentFrontier-30B-A3B, achieving 28.6% on Humanity's Last Exam and state-of-the-art results on multiple multi-disciplinary benchmarks. A companion self-evolving benchmark, ZPD Exam, is co-introduced to continuously probe the agent capability frontier.

Problem

Existing data synthesis approaches for LLM agents fall into query-centric or document-centric paradigms that assess localized comprehension rather than cross-domain knowledge fusion. The resulting training corpora are bounded by the model's own expressive ceiling, preventing systematic difficulty progression toward frontier-level reasoning. Additionally, current benchmarks (e.g., Humanity's Last Exam) are static and prohibitively expensive to extend, causing them to saturate as models improve.

Method

The AgentFrontier Engine is a three-stage pipeline that transforms a raw 1M-document corpus \(C_{raw}\) into a calibrated dataset \(D_{ZPD}\):

Stage I โ€” Seed QA Generation: A chunking model (Qwen3-235B-A22B) preprocesses documents into dense chunks \(C_{chunk}\). Thematically coherent triplets \((c_i, c_j, c_k)\) satisfying \(\text{Sim}(c_x, c_y) > \tau_{theme}\) form composite units fed to a generator (DeepSeek-R1-0528) to produce seed QA pairs \(D_{seed}\) that inherently require multi-document knowledge fusion.

Stage II โ€” Complexity Escalation: A refinement agent \(A_{refine}\) (DeepSeek-R1 + tool suite \(T = \{T_{search}, T_{scholar}, T_{browser}, T_{code}\}\)) iteratively applies an escalation operator \(\Psi_{escalate}\) along four axes: knowledge expansion, conceptual abstraction, factual grounding, and computational formulation.

Stage III โ€” ZPD-Based Calibration: Two agents are instantiated โ€” LKP \(A_{LKP}\) (DeepSeek-R1, no tools) and MKO \(A_{MKO}\) (DeepSeek-V3.1 + tools). A QA pair \((q, a)\) is allocated as: (a) too easy (\(\rightarrow D_{pretrain}\)) if \(\text{IsSolvableBy}(A_{LKP}, q, a)=1\); (b) ZPD data (\(\rightarrow D_{ZPD}\)) if the LKP fails but the MKO succeeds in Best-of-\(N=3\) attempts; or (c) flagged for human review if both fail. Semantic deduplication with a reranker discards pairs where \(\max_{(q,a)\in D_{ZPD}} \text{Sim}(q', q) \geq \epsilon = 0.7\).

Training uses continued pre-training on 50B tokens (\(D_{pretrain}\)) followed by rejection-sampling fine-tuning (RFT) on 12,000 trajectories (\(D_{ZPD}\)) structured as ReAct-style multi-round reasoning reports.

Key Contributions

  • AgentFrontier Engine: A scalable, automated, three-stage data synthesis pipeline that operationalizes the ZPD principle via LKPโ€“MKO adversarial calibration to produce both knowledge-intensive CPT data and frontier-level reasoning trajectories.
  • ZPD Exam: A self-evolving benchmark grounded in 30,000 recent scientific papers (2023โ€“2025); ZPD Exam-v1 contains 1,024 public questions requiring tool-augmented deep research; it can be regenerated as models improve.
  • AgentFrontier-30B-A3B: A trained model achieving 28.6% on HLE (text-only) and state-of-the-art on ZPD Exam-v1, R-Bench-T, and xBench-ScienceQA, outperforming several leading proprietary agents.
  • ZPD capability stratification: An empirical analysis of the ZPD Exam reveals three diagnostic zones โ€” Intrinsic Competence (<20), Reasoning Bottleneck (20โ€“60), and Emergent Mastery (>60) โ€” pinpointing that meta-cognitive orchestration (not tool access alone) is the primary bottleneck.

Results

  • AgentFrontier-30B-A3B on HLE (text-only): 25.67%, representing a 178% relative improvement over the base Qwen3-30B-A3B without tools (9.2%) and 152% over the base with tools (10.2%).
  • Qwen3-30B-A3B backbone on HLE: AgentFrontier (25.7%) vs. MiroVerse (19.6%), MegaScience (20.2%), TaskCraft (19.9%).
  • Qwen3-32B backbone on HLE: AgentFrontier (23.8%) vs. next-best MiroVerse (19.9%), a margin of +3.9 points.
  • Qwen3-8B backbone on HLE: AgentFrontier (18.8%) vs. next-best MiroVerse (15.0%), a margin of +3.8 points.
  • ZPD Exam-v1: AgentFrontier-30B-A3B scores 93.4 (vs. GPT-5+tools 93.1, DeepSeek-V3.1+tools 86.6, Claude-Sonnet-4+tools 77.6).
  • xBench-ScienceQA (Qwen3-32B): AgentFrontier 51.0 vs. MiroVerse 43.0, MegaScience 40.0, TaskCraft 40.0.
  • Subject breadth on HLE: AgentFrontier secures top performance in 6/8 subjects (8B), 7/8 (32B), and 8/8 (30B-A3B) vs. all baseline datasets.
  • LKP/MKO ablation: Wider gap (weaker LKP) increases data yield by 44.1% but reduces avg. rounds by 44.3% and tool calls by 63.4%, yielding simpler, less effective data.

Limitations

  • The calibration relies on GPT-4o as an automated judge, introducing potential bias and errors in the IsSolvableBy function.
  • LKP and MKO are fixed to specific model pairs (DeepSeek-R1 / DeepSeek-V3.1); adapting the engine to new base models requires re-running the full calibration pipeline.
  • ZPD Exam construction is tied to the frontier of the calibration model (DeepSeek-R1-0528 at time of writing); as models advance, the benchmark must be regenerated to remain challenging.
  • Human review protocol for \(D_{human}\) (cases where MKO also fails) is described only briefly; quality control at this stage is not fully characterized.
  • Evaluation is restricted to text-only subsets of HLE; multimodal reasoning is not addressed.

Relevance to Agentic AI / LLM Agents

This work directly advances agent training by providing a principled, automated pipeline for generating the scarce frontier-level trajectories that teach multi-step tool orchestration, iterative planning, and cross-domain knowledge fusion โ€” the core capabilities of capable LLM agents. The LKP-MKO adversarial calibration framework formalizes what "agent-level difficulty" means, moving beyond heuristic difficulty annotation and enabling a continuously adaptive curriculum as agents themselves improve. The ZPD Exam's diagnostic stratification (Intrinsic / Bottleneck / Mastery) offers a new evaluative lens for the field, revealing that the key bottleneck is not tool access but meta-cognitive orchestration. For researchers tracking agentic AI, this paper establishes a replicable recipe for scaling agent capability through synthetic data rather than costly human annotation.