Key takeaways

  • In a new paper, Chinese lab AllSpark describes two search agents of different sizes.
  • Starting from a seed page and its outgoing links, it constructs a graph of terms and relationships.
  • Only questions that a reference model can't solve without tools but can solve with the right sources make it into the dataset.

What happened

In a new paper, Chinese lab AllSpark describes two search agents of different sizes. Iris-mini has 35 billion parameters, and Iris-pro has 397 billion. 5-397B-A17B), work with a 256,000-token context window, and deliver the strongest results among open-weight search agents in their respective size class, according to the team. The training pipeline builds tasks backward from the link structure of web pages.

4 points, though it trails on DeepSearchQA. Iris-pro leads or ties in the larger class and sometimes approaches systems that need far more compute, according to the authors. 2 points. The reason isn't a smaller token budget but faster consumption, according to the paper. Iris-mini needs more steps for the same tasks and hits the context limit more often.

On Humanity's Last Exam, the gains are smaller because the benchmark leans more on domain knowledge and academic reasoning, where web search plays a supporting role. The best scores come from combining history discarding with a second attempt. If the first try fails, the system condenses it into a short note that records what was already checked and ruled out.

That note gets appended to the task for the next run. In the paper's appendix, the team describes a case where its agent was marked wrong even though the answer was backed by the source material. " The character in question, Sansa Stark, actually marries Ramsay Bolton in her second marriage. The agent's answer was correct.

The team says contradictions like these between ground truth and source material motivate them to build better benchmarks. Beyond search, the authors report an unexpected side effect. Both the generated training data and the specialized models improved performance on tasks they were never trained for, including general tool use and office work.

Why it matters

Starting from a seed page and its outgoing links, it constructs a graph of terms and relationships. From that graph, it generates a multi-step question whose answer requires chaining several connected steps together. Every term except the final answer gets replaced with a paraphrase, so no clue can be resolved through a simple text search. The agent has to reason, not just look things up.

Only questions that a reference model can't solve without tools but can solve with the right sources make it into the dataset. That keeps the tasks both hard and clearly verifiable. A stronger teacher model generates solution paths made up of reasoning, search queries, and results. These paths go through two rounds of filtering. The first checks the full path for correctness, repetition loops, and search depth.

The second is a step-by-step review by a judge model whose criteria were derived from the data itself rather than set by hand, according to the paper. After that, the model is improved through reinforcement learning against a live web search. The judge model and result summaries run inside the training cluster, powered by the team's own large Qwen model so training doesn't depend on external services.

" The hardest solved tasks and the most efficient solution paths from each round feed back into the next training cycle. The team argues that runtime context management on common benchmarks often makes a bigger difference than the reported gaps between systems. During long research sessions, the context can fill up before the agent has resolved all sub-questions.

Tricks like discarding the conversation history extend the research artificially but say little about the model's actual quality. To isolate the effect, the team tests every benchmark with and without context management while keeping tools, context limits, and the judge model constant. Results reported only with management turned on can't be cleanly split into what comes from the model and what comes from the scaffolding around it.

The Iris scores also come from a single agent, with no helper agents and no extra verification steps at the end. Testing covered BrowseComp, which tests the ability to find rare facts from indirect clues, its Chinese counterpart BrowseComp-ZH, DeepSearchQA, which evaluates the completeness of retrieved evidence, and Humanity's Last Exam, which poses academic questions at expert level. 3 according to the paper. 4.

What to watch

The team suggests that search may function more as a foundational skill than a narrow specialty, since the learned behavior helps wherever an agent has to work with incomplete information. The model weights for Iris-mini and Iris-pro are available in a collection on Hugging Face, and the code is on GitHub.

The release so far includes the Iris Harness with the agent loop, tools, context management strategies, and all four benchmarks with evaluation. The harness runs against any OpenAI-compatible endpoint. The team plans to release the data construction and training pipelines later.