Skip to content

Commit b44feff

Browse files
authored
Merge pull request #7 from NLPJCL/codex-readme-intro-news
Refine README intro and news
2 parents 5fbbe47 + 15919ef commit b44feff

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
[中文文档](README_zh.md)
44

5-
SearchAgent-Zero is a reinforcement learning framework for Search Agents. It supports short-horizon search in the style of Search-R1 and extends to long-horizon, multi-turn search in the style of ASearch.
5+
SearchAgent-Zero is a verl-based reinforcement learning framework for training search agents, covering both short-horizon Search-R1-style QA and long-horizon ASearch-style multi-turn search.
66

7-
Built on [verl](https://github.com/verl-project/verl), this project aims to provide a stable, low-cost, reproducible, and extensible Search Agent RL recipe. It integrates multi-turn tool calling, retrieval services, abnormal trajectory handling, summary compression, and synchronous/asynchronous RL training into one training workflow, making it easier for researchers and engineers to reproduce Search-R1-style tasks and further explore long-horizon Agent Search capabilities.
7+
It provides a reproducible training recipe with multi-turn tool calling, retrieval services, abnormal trajectory handling, summary compression, and synchronous/asynchronous RL training. The goal is to make Search Agent RL easier to reproduce, scale, and extend.
88

99
## News
1010

11-
- **[2026/05/24] SearchAgent-Zero releases Search-R1 and ASearch recipes**: The Search-R1 recipe targets short-horizon QA training with 2-3 search turns. With Qwen2.5-3B-Instruct, it improves the average score on the full Search-R1 evaluation suite from `0.325` to `0.407`, a relative gain of about `25.3%` over the original Search-R1 result. The ASearch recipe targets long-horizon multi-turn search training with 10-20 turns or longer trajectories. SearchAgent-Zero (Qwen3-8B, 300 step) reaches `37.95%` Accuracy and `50.87%` Recall on BrowseComp-Plus, achieving SOTA among models below 14B parameters and surpassing larger models such as GPT-OSS-20B (`35.1%`). For implementation details, see `examples/search_agent_rl/`, `verl/experimental/agent_loop/`, and `verl/tools/search_tool.py`.
11+
- **[2026/05/24] SearchAgent-Zero releases Search-R1 and ASearch recipes.** The Search-R1 recipe improves the average score on the full Search-R1 evaluation suite from `0.325` to `0.407` with Qwen2.5-3B-Instruct. The ASearch recipe scales to long-horizon search: SearchAgent-Zero (Qwen3-8B, 300 steps) reaches `37.95%` Accuracy and `50.87%` Recall on BrowseComp-Plus, achieving SOTA among models below 14B parameters. See `examples/search_agent_rl/`, `verl/experimental/agent_loop/`, and `verl/tools/search_tool.py` for implementation details.
1212

1313
## Key Features
1414

README_zh.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# SearchAgent-Zero: 基于 verl 的可扩展多轮 Search Agent RL 训练框架
22

3-
SearchAgent-Zero 是一个面向 Search Agent 的强化学习训练框架,支持从 Search-R1 式短程搜索扩展到 ASearch 式长程多轮搜索。
3+
SearchAgent-Zero 是一个基于 verl 的 Search Agent 强化学习训练框架,覆盖 Search-R1 式短程问答搜索,也支持 ASearch 式长程多轮搜索。
44

5-
本项目基于 [verl](https://github.com/verl-project/verl) 构建,目标是提供一套稳定、低成本、可复现、可扩展的 Search Agent RL recipe。它将多轮工具调用、检索服务、异常轨迹处理、summary 压缩与同步/异步 RL 训练整合到同一套训练流程中,便于研究者和工程师复现 Search-R1 类任务,并继续探索更长程的 Agent Search 能力
5+
项目提供一套可复现、可扩展的训练 recipe,整合了多轮工具调用、检索服务、异常轨迹处理、summary 压缩,以及同步/异步 RL 训练流程,方便研究者和工程师复现并扩展 Search Agent RL
66

77
## News
88

9-
- **[2026/05/24] SearchAgent-Zero 发布 Search-R1 与 ASearch recipe**Search-R1 recipe 面向 2-3 轮搜索的短程问答训练,在 Qwen2.5-3B-Instruct 设置下将完整 Search-R1 评测集合平均分从 `0.325` 提升到 `0.407`,相对原 Search-R1 提升约 `25.3%`;ASearch recipe 面向 10-20 轮甚至更长轨迹的多轮搜索训练,其中 SearchAgent-Zero (Qwen3-8B, 300 step) 在 BrowseComp-Plus 达到 `37.95%` Accuracy`50.87%` Recall,在 14B 以下模型中达到 SOTA,并超过 GPT-OSS-20B (`35.1%`) 等更大模型。更多实现细节可参考 `examples/search_agent_rl/``verl/experimental/agent_loop/` `verl/tools/search_tool.py`
9+
- **[2026/05/24] SearchAgent-Zero 发布 Search-R1 与 ASearch recipes。** Search-R1 recipe 在 Qwen2.5-3B-Instruct 上将完整 Search-R1 评测平均分从 `0.325` 提升到 `0.407`;ASearch recipe 支持长程多轮搜索训练,SearchAgent-Zero (Qwen3-8B, 300 steps) 在 BrowseComp-Plus 达到 `37.95%` Accuracy`50.87%` Recall,在 14B 以下模型中达到 SOTA。实现细节见 `examples/search_agent_rl/``verl/experimental/agent_loop/` `verl/tools/search_tool.py`
1010

1111
## 主要功能
1212

0 commit comments

Comments
 (0)