# PARSER：并行读取深度推理的长上下文智能体

- 来源：elvis (@omarsar0)
- 发布时间：2026-09-11 04:05
- AIHOT 分数：46
- AIHOT 链接：https://aihot.news/items/cmtvyp2lz04boro7esnsib3v6
- 原文链接：https://x.com/omarsar0/status/2098140712504332411

## AI 摘要

PARSER 将长上下文智能体的读取与推理解耦：一批轻量级子智能体各自绑定单个 chunk 并行读取全文，主智能体通过迭代 scatter-gather 轮次广播查询、聚合证据并生成更深追问，仅主智能体用 RL 训练，子智能体保持冻结。

## 正文

This is a brilliant paper.

It's of the cleanest long-context agent designs I have seen in the past couple of months.

Sequential memory agents read chunks one after another while maintaining a compact memory state.

This behavior ties reasoning depth to document traversal and makes accuracy sensitive to where the evidence sits. It also makes latency grow linearly with document length.

PARSER decouples the two.

A bank of lightweight subagents, each bound to a single chunk, reads the whole document in parallel.

A lead agent reasons through iterative scatter-gather rounds, broadcasting a query to all subagents, aggregating the returned evidence, and forming a deeper follow-up query conditioned on what it has found.

All the learnable behavior is build into the lead agent, which is trained with RL. The subagents stay frozen off-the-shelf models.

On multi-hop QA from 7K to 896K tokens, a 4B PARSER beats the strongest sequential memory baseline by 5.7 points on average and 12.0 points at 896K. At 9B it passes DeepSeek-V4-Pro by 6.3 points.

Controlled experiments show it holds up under perturbations to evidence position, order and distance, which cause large accuracy swings in sequential methods, while cutting inference latency by up to 11x.

Paper: https://academy.dair.ai/papers/parser-read-in-parallel-reason-in-depth-for-long-context-llm-agents-2609.06702
