AIAny
Icon for item

SearchOS-V1: Towards Robust Open-Domain Information-Seeking Agent Collaboration

Turns fragile, implicit search progress into explicit, persistent, shared state for multi-agent information seeking — externalizes progress as Frontier Task, Evidence Graph, Coverage Map and Failure Memory, and uses pipeline-parallel scheduling plus a middleware harness to avoid repeated failed searches and improve utilization and throughput.

Introduction

Why this matters

As information-seeking agents scale their interactions with web tools, latent progress tracking and repeating failed searches become the dominant bottlenecks: agents waste budget on loops and fail to assemble complete, grounded answers. SearchOS reframes open-domain search as relational schema completion with grounded citations and shifts progress from ephemeral chat history into a structured, reusable state that agents can jointly read and update.

Key Findings
  • Externalized state: Search-Oriented Context Management (SOCM) stores ongoing work in four persistent artifacts — Frontier Task (next search intents), Evidence Graph (sourced facts and links), Coverage Map (which schema cells are filled) and Failure Memory (recorded dead-ends). This converts transient signals into actionable, shared memory so different sub-agents don’t re-explore the same failures.
  • Scheduling and throughput: a pipeline-parallel scheduler overlaps sub-agent execution and refills freed slots with tasks targeting unresolved coverage gaps, increasing utilization and reducing idle tool/query slots compared to naive multi-agent runs.
  • Middleware and skills: a Search Tool Middleware Harness intercepts model-tool interactions to ground evidence and detect stalls or budget exhaustion; a hierarchical skill system (strategy + access skills) guides agents to avoid repeating failed patterns across runs.
  • Empirical gains: on WideSearch and GISA benchmarks, SearchOS outperforms evaluated single- and multi-agent baselines across coverage and grounded-evidence metrics, showing the architecture improves both completeness and evidence quality.
Who it's for & trade-offs

Great fit if you build or evaluate LLM-based information-seeking agents that must assemble grounded answers from heterogeneous web evidence and need durable cross-agent state to avoid wasted queries. The design is particularly useful for systems where search budgets and tool-call latency matter, and where producing source-linked relational outputs is a requirement.

Look elsewhere if your use case is a single-turn retrieval task, extremely low-latency queries where any external state persistence is unacceptable, or you cannot afford the extra engineering to manage persistent evidence graphs and middleware: SearchOS adds orchestration complexity in exchange for coverage and reuse.

Where it fits

SearchOS sits above individual LLM agents and search tools as a coordination and context layer: think orchestration + persistent state for multi-agent retrieval-augmented workflows. It complements RAG-style pipelines by making coverage and failure history first-class, rather than implicit in prompt/context.

Core mechanism (brief)

The paper formalizes open-domain seeking as filling relational tables with values linked to sources, and implements SOCM plus a pipeline scheduler and middleware harness to record grounded evidence and dynamically reassign tasks. The combination reduces redundant searches and improves the chance of closing coverage gaps across long, multi-step information tasks.

Information

  • Websitearxiv.org
  • AuthorsYuyao Zhang, Junjie Gao, Zhengxian Wu, Jiaming Fan, Jin Zhang, Shihan Ma, Yao Yao, Weiran Qi, Chuyan Jin, Guiyu Ma
  • Published date2026/07/16

More Items

Proposes treating game development as a recursive data engine and introduces RLHEV (Reinforcement Learning with Human-Engine Verification) to combine dense engine checks (collision, physics, navigability) with human acceptance feedback, producing trajectory data and rewards for post-training world models.

Hugging Face
AI Model2026

Open-weights LLM fine-tuned for phone-based voice agents that prioritizes low latency and reliable tool/function calling. Based on NVIDIA Nemotron 3 Nano (30B total, 3.5B active), supports very long contexts (262,144 tokens) and recommends temperature=0 with thinking disabled for deployment.

Provides a real-scale 3D Hong Kong sandbox to evaluate whether multimodal LLM agents can turn local street-view perception into sustained spatial action, supporting closed-loop first-person interaction, an interactive map, and controlled tests of grounding, long-range navigation, and robustness.