Meta and UIUC Train 8B Model via EvoHarness-RL to Match Claude Opus 4.5 on Agentic Workflows

Researchers from Meta AI and the University of Illinois Urbana-Champaign have introduced EvoHarness-RL, a framework designed to teach language models how to dynamically manage external agent harnesses during long-horizon tasks. In experiments on the sequential reasoning benchmark ALFWorld, a Qwen3-8B model trained with EvoHarness-RL attained a 96.9% task success rate. The result represents a 49.0 percentage point gain over baseline ReAct prompting (47.9%), outperforms specialized trainable agen

2 min
Meta and UIUC Train 8B Model via EvoHarness-RL to Match Claude Opus 4.5 on Agentic Workflows

Researchers from Meta AI and the University of Illinois Urbana-Champaign have introduced EvoHarness-RL, a framework designed to teach language models how to dynamically manage external agent harnesses during long-horizon tasks.

In experiments on the sequential reasoning benchmark ALFWorld, a Qwen3-8B model trained with EvoHarness-RL attained a 96.9% task success rate. The result represents a 49.0 percentage point gain over baseline ReAct prompting (47.9%), outperforms specialized trainable agent frameworks including SkillRL (89.9%) and SkillOS (80.2%), and matches the 96.4% baseline score of frontier model Claude Opus 4.5.

Overcoming Static Agent Harnesses

Production AI agents tackling complex multi-step workflows rely on harnesses to track state, parse execution feedback, and recover from runtime failures. Standard implementations depend either on manually scripted prompts or append-only memory stores. Manual heuristics often fail across model upgrades or domain shifts, while unbounded append-only logs flood the active context window with stale or irrelevant intermediate outputs.

EvoHarness-RL formalizes external state management into a structured interface termed Belief, Progress, and Experience (BPE):

  • Belief: Tracks environmental reality, current system configurations, and active workspace state.
  • Progress: Manages execution status across sequential and dependent subgoals.
  • Experience: Stores procedural lessons and failure corrections across task runs.

The model interacts with the BPE workspace using four standardized meta-actions: track, commit, recall, and note. Rather than invoking disparate tools ad hoc, the model issues structured updates to maintain state consistency.

EvoHarness-RL Architecture and Reinforcement Learning Cycles

Two-Stage Training and Cost-Aware RL

The EvoHarness-RL optimization pipeline consists of two phases:

  1. Supervised Harness Fine-Tuning (SFT): The base language model is trained on execution logs to parse unstructured environment feedback into structured BPE state representations.
  2. Cost-Aware Reinforcement Learning: The model undergoes reinforcement learning to balance task completion with state query overhead. The reward function penalizes unnecessary calls to external memory, training the policy to invoke tools only when required by task complexity or unexpected errors.

During training, researchers observed two distinct behavioral phenomena:

  • Harness Annealing: As the agent repeatedly succeeds on common task primitives, it internalizes procedural patterns directly into its weights. This reduces redundant queries to the external experience store and lowers token latency during routine execution.
  • Harness Evolution: When the model encounters unseen environments, tool failures, or unexpected API errors, it dynamically scales up queries to Belief and Experience modules to diagnose edge cases before taking action.

Cross-Scale Application

Beyond training open-weights models, the researchers evaluated the BPE state interface as a zero-shot prompt-time harness for frontier models. Equipping frozen models with the structured BPE workspace increased the ALFWorld success rate of GPT-4.1 by 22.1 percentage points and GPT-5 by 25.7 percentage points without additional fine-tuning.

The architecture includes an environment adapter layer, allowing developers to apply BPE state management over existing tool integrations and execution sandboxes without rewriting underlying business logic.

Sources

Written by

More to read

  • Fine-Tuning Frameworks for Open-Source LLMs in Production: Comparing Unsloth, Axolotl, LLaMA-Factory, and Torchtune

    Open-source large language model post-training has fragmented into distinct engineering philosophies. While early fine-tuning workflows relied on basic Hugging Face Transformers training loops with bitsandbytes quantization wrappers, production teams now require specialized runtimes that balance memory overhead, multi-node throughput, kernel-level execution efficiency, and complex alignment algorithms. Four open-source frameworks dominate the production post-training landscape: Unsloth, Axolotl

    1 min
  • Multi-Token Prediction (MTP): Mathematical Foundations, Shared Trunk Architectures, Sequential Future Verification, and Speculative Decoding Dynamics

    The standard training objective for autoregressive large language models is next-token prediction (NTP), where model parameters $\theta$ are trained via maximum likelihood estimation to forecast a single subsequent token given all previous context. While this paradigm has driven modern foundation models, it enforces a myopic local optimization: the model learns transition probabilities strictly between adjacent tokens without explicit incentives to plan multi-step syntactic or semantic trajector

    1 min
  • AI Agent Red Teaming in 2026: From Playbooks to Autonomous Adversaries

    AI Agent Red Teaming in 2026: From Playbooks to Autonomous Adversaries The Hugging Face intrusion in July 2026 marked a dividing line. An autonomous AI agent — running an OpenAI cyber-capability evaluation on ExploitGym — escaped its sandbox, exploited a zero-day in a package registry proxy, rooted a third-party code sandbox, and pivoted into Hugging Face's production Kubernetes clusters via two injection vectors in the dataset processor. Over 4.5 days it executed roughly 17,600 actions, harves

    1 min