AllSpark-Research/Iris-pro

Model

<h1 align="center">Iris-pro</h1>

5

stars

1

commits

1

linked in READMEs

Sep 2, 2026

updated

agentic
conversational
deep-research
endpoints_compatible
image-text-to-text
moe
qwen3.5
qwen3_5_moe
safetensors
search-agent
text-generation
transformers

README

Iris-pro

Climbing to the Search Frontier.

🤗 Collection  |  💻 GitHub  |  🔬 Evaluation Harness

Introduction

Iris-pro is an open-weight search agent post-trained from Qwen3.5-397B-A17B. A capable search agent has to decide what to search, how to read what comes back, when to keep going, and when the evidence it has gathered is enough. Iris is trained for exactly that loop, through alternating rounds of supervised fine-tuning and reinforcement learning.

Its smaller sibling is Iris-mini (35B-A3B).

BaseQwen3.5-397B-A17B
Parameters397B total / 17B active (512 experts, 10 active)
Layers / hidden60 / 4096
Context256K
Precisionbfloat16

Performance

Open-weight systems around 400B:

ModelSizeBrowseCompBrowseComp-ZHDeepSearchQAHLE
MiroThinker-1.7397B74.075.342.9
Apodex-1.0397B75.582.684.649.0
Nex-N2-Pro397B83.779.6r92.3r50.0r
XYZ-Aquila-pro397B84.885.192.553.3
Iris-pro397B88.685.192.956.4

DeepSearchQA is scored with F1, the rest with accuracy; HLE uses the 2,158-question text-only subset. Iris numbers use the discard-all context-management setting; baselines come from their public reports, each under its own context management. r reproduced by the XYZ-Aquila team.

Context management

Long-horizon search runs out of context before a hard question is resolved, so a published number belongs to the agent and its harness. We report every benchmark in both regimes, under one tool set, one context limit and one judge.

SettingBrowseCompBrowseComp-ZHDeepSearchQAHLE
w/o72.676.886.450.8
retry84.192.356.6
discard-all88.685.192.956.4
discard-all + retry90.385.193.456.6

discard-all resets the conversation to the opening question once the prompt crosses a threshold. retry restarts an episode that ended without a parseable answer, carrying forward a short summary of what was already ruled out. We report discard-all as the headline setting even where adding retry scores higher.

Quickstart

Serve with SGLang. At 397B this needs multiple nodes or a large single node; scale --tp-size to the hardware you have:

python -m sglang.launch_server \
  --model-path AllSpark-Research/Iris-pro \
  --served-model-name Iris-pro \
  --port 21234 --tp-size 8 --ep-size 8 \
  --context-length 262144 \
  --reasoning-parser qwen3 \
  --tool-call-parser qwen3_coder

Then evaluate with Iris-Harness, which reproduces the numbers above:

bash scripts/run_eval.sh \
  --base-url http://127.0.0.1:21234/v1 \
  --llm-config iris-pro \
  --benchmarks "browsecomp:0:1" \
  --context-discard-threshold 131072

The model is trained to call tools through the OpenAI function-calling interface and to wrap its final answer in \boxed{}. Prior reasoning is carried back into the conversation on each turn; the harness's iris-pro config sets this up for you.

License

Apache 2.0.

Contributors

circleLZY

1 commits

AllSpark-Research/Iris-pro

Model

<h1 align="center">Iris-pro</h1>

5

stars

1

commits

1

linked in READMEs

Sep 2, 2026

updated

agentic
conversational
deep-research
endpoints_compatible
image-text-to-text
moe
qwen3.5
qwen3_5_moe
safetensors
search-agent
text-generation
transformers

README

Iris-pro

Climbing to the Search Frontier.

🤗 Collection  |  💻 GitHub  |  🔬 Evaluation Harness

Introduction

Iris-pro is an open-weight search agent post-trained from Qwen3.5-397B-A17B. A capable search agent has to decide what to search, how to read what comes back, when to keep going, and when the evidence it has gathered is enough. Iris is trained for exactly that loop, through alternating rounds of supervised fine-tuning and reinforcement learning.

Its smaller sibling is Iris-mini (35B-A3B).

BaseQwen3.5-397B-A17B
Parameters397B total / 17B active (512 experts, 10 active)
Layers / hidden60 / 4096
Context256K
Precisionbfloat16

Performance

Open-weight systems around 400B:

ModelSizeBrowseCompBrowseComp-ZHDeepSearchQAHLE
MiroThinker-1.7397B74.075.342.9
Apodex-1.0397B75.582.684.649.0
Nex-N2-Pro397B83.779.6r92.3r50.0r
XYZ-Aquila-pro397B84.885.192.553.3
Iris-pro397B88.685.192.956.4

DeepSearchQA is scored with F1, the rest with accuracy; HLE uses the 2,158-question text-only subset. Iris numbers use the discard-all context-management setting; baselines come from their public reports, each under its own context management. r reproduced by the XYZ-Aquila team.

Context management

Long-horizon search runs out of context before a hard question is resolved, so a published number belongs to the agent and its harness. We report every benchmark in both regimes, under one tool set, one context limit and one judge.

SettingBrowseCompBrowseComp-ZHDeepSearchQAHLE
w/o72.676.886.450.8
retry84.192.356.6
discard-all88.685.192.956.4
discard-all + retry90.385.193.456.6

discard-all resets the conversation to the opening question once the prompt crosses a threshold. retry restarts an episode that ended without a parseable answer, carrying forward a short summary of what was already ruled out. We report discard-all as the headline setting even where adding retry scores higher.

Quickstart

Serve with SGLang. At 397B this needs multiple nodes or a large single node; scale --tp-size to the hardware you have:

python -m sglang.launch_server \
  --model-path AllSpark-Research/Iris-pro \
  --served-model-name Iris-pro \
  --port 21234 --tp-size 8 --ep-size 8 \
  --context-length 262144 \
  --reasoning-parser qwen3 \
  --tool-call-parser qwen3_coder

Then evaluate with Iris-Harness, which reproduces the numbers above:

bash scripts/run_eval.sh \
  --base-url http://127.0.0.1:21234/v1 \
  --llm-config iris-pro \
  --benchmarks "browsecomp:0:1" \
  --context-discard-threshold 131072

The model is trained to call tools through the OpenAI function-calling interface and to wrap its final answer in \boxed{}. Prior reasoning is carried back into the conversation on each turn; the harness's iris-pro config sets this up for you.

License

Apache 2.0.

Contributors

circleLZY

1 commits