TLDR: SCoRe is a novel framework for distilling Large Language Model (LLM) agents, allowing smaller student models to achieve performance comparable to much larger teacher models. It addresses limitations of traditional distillation by having the student actively generate problem-solving trajectories, with the teacher intervening only to correct the first critical error. This creates ability-matched training data. The framework then uses correction-based supervised fine-tuning and a reinforcement learning phase with short-horizon rollouts and targeted key-step rewards to foster genuine problem-solving. Experiments show a 7B-parameter student model distilled with SCoRe can match the agentic performance of a 72B-parameter teacher on various challenging benchmarks, significantly reducing operational costs.
Large Language Models (LLMs) have become incredibly powerful, enabling the creation of sophisticated “agents” that can tackle complex problems. Unlike simple text generation, these agents engage in an iterative cycle of reasoning, taking actions (like using tools or code interpreters), and observing the results. This allows them to break down tasks, execute sub-goals, and refine their plans based on feedback, effectively mitigating common LLM flaws like hallucinations or outdated knowledge.
However, there’s a catch: the most capable LLM agents typically rely on massive, ultra-large models such as GPT-4. While powerful, these models come with significant drawbacks, including high operational costs and increased latency, especially for tasks requiring many interactions.
To address this, researchers have explored “agent distillation,” a process where a smaller, more efficient “student” model is trained to mimic the behavior of a larger, more powerful “teacher” model. The goal is to transfer the teacher’s capabilities to the student, reducing deployment costs. But traditional distillation methods face their own set of challenges. When a smaller student model tries to imitate a large teacher’s entire problem-solving process, it often encounters “reasoning ability gaps” and “knowledge capability gaps.” These differences can lead to compounding errors, where a small mistake early on can snowball into significant failures later in the task.
Introducing SCoRe: A Student-Centered Approach
A new framework called SCoRe (Student-Centered one-step Reinforcement) offers an innovative solution to these problems. Instead of the student passively cloning the teacher’s every move, SCoRe puts the student in the driver’s seat. The student model actively generates its own problem-solving steps, and the teacher intervenes only when a critical error is made. Crucially, the teacher provides just a one-step correction at the *first* mistake, allowing the student to resume its reasoning from that corrected point.
This student-centric interaction offers two major advantages:
-
Capability Matching: The training data generated is perfectly aligned with the student’s current abilities, making the learning process more effective and manageable.
-
Deficiency Localization: By correcting only the first error, the framework explicitly highlights the student’s specific weaknesses, allowing for targeted improvement.
How SCoRe Works: From Correction to Mastery
The SCoRe framework involves several key phases:
1. Initial Distillation (Cold Start): Before the student can explore, it needs basic reasoning and action skills. This is achieved through a “cold-start” phase using Behavior Cloning (BC), where the student is fine-tuned on a small set of high-quality, teacher-generated problem-solving examples. This gives the student a foundational understanding of the “Thought-Action-Observation” loop.
2. Mentored Problem-Solving: This is the core of SCoRe. The initialized student attempts new tasks independently. If it makes a mistake, the teacher identifies the first incorrect step and provides a minimal, one-step correction. The student then continues from this corrected point. If the student successfully completes the task, the corrected trajectory is saved as valuable training data. This approach significantly reduces the compounding errors seen in traditional BC, transforming error growth from a quadratic (O(H^2)) to a linear (O(H)) relationship with task length.
3. Reinforcement Learning (RL) Refinement: While correction-based training is effective, it still keeps the student in an imitation mode. To foster genuine problem-solving and exploration, SCoRe introduces an RL phase with two key innovations:
-
Short-Horizon Rollouts: Instead of starting RL training from the very beginning of a task, rollouts begin from the “correct prefix” – the sequence of steps leading up to the student’s original error. This shortens the learning horizon, making RL updates more stable and efficient by reducing the variability in gradient estimation.
-
Key-Step Rewards: To combat the problem of sparse rewards (where feedback only comes at the very end of a task), SCoRe provides targeted bonuses at the specific step where the teacher intervened. A larger reward is given if the student reproduces the teacher’s correction, and a smaller one for simply avoiding the original error. This guides the student beyond mere imitation towards true problem-solving.
Also Read:
- Capturing Behavioral Shifts: How Delta-KD Enhances Knowledge Distillation for LLMs
- PDDL-INSTRUCT: Enhancing LLMs for Precise Symbolic Planning
Impressive Results
Extensive experiments across 12 challenging benchmarks – including mathematical reasoning, factual reasoning, and complex deep search tasks – demonstrate the effectiveness of SCoRe. A student model with just 7 billion parameters (Qwen2.5-7B) distilled using SCoRe achieved agentic performance comparable to a much larger 72-billion-parameter teacher model. In some deep search benchmarks, it even surpassed the performance of 72B models using standard tool-integrated prompting.
The research highlights that this ability-matched correction, combined with short-horizon, key-step reinforcement learning, can effectively bridge the performance gap between small and large language models, making advanced LLM agents more accessible and cost-efficient. You can read the full research paper here.


