XYZ-Aquila-pro

An open-weight thinking model for Deep Search.

Homepage Demo AI4AI Demo Search Agent

GitHub Data Technical Report

Introduction

XYZ-Aquila is a family of open-weight Deep Search agents developed by XYZ AI Lab. XYZ-Aquila-pro is post-trained from Qwen3.5-397B-A17B through a bounded-exploration AI4AI pipeline: humans define the target capability, development evidence, constraints, risk boundaries, and acceptance policy, while AI agents diagnose failures and propose scoped interventions across data, post-training, runtime, context management, tools, evaluation, and infrastructure.

The released checkpoint is a thinking model with Qwen-compatible reasoning and tool-call formats. It is optimized for agentic search, including long-horizon planning, English and Chinese web browsing, multi-source evidence aggregation, source verification, and recovery from failed environment interactions. The open-source AxisAgentic harness provides the concrete search / scrape / python tool implementations, fixed tool contract, replayable context management, and benchmark evaluation workflow; these capabilities are supplied by the surrounding harness rather than by the checkpoint alone.

Benchmark Results

The external benchmark suite was held out from routine AI4AI optimization. Following the technical report, evaluation uses a ReAct-style search harness with web search, webpage extraction, stateful Python execution, and a maximum 256K context. XYZ-Aquila-pro obtains the highest reported score in every column of the evaluated sub-400B open-weight comparison.

XYZ-Aquila benchmark results across six agentic search benchmarks

The figure provides a visual overview across six agentic search benchmarks. The tables below transpose the comparison: each row is a benchmark and each column is a model within the group.

Small-scale open-weight (<40B)

Open-weight systems with fewer than 40B parameters, including XYZ-Aquila-mini.

Benchmark XYZ-Aquila-mini Agents-A1 Nex-N2-mini apodex-mini MiroThinker 1.7 mini
BrowseComp 78.8 75.5 74.1 71.5 67.9
BrowseComp-ZH 82.9 -- 79.6† 80.6 --
DeepSearchQA 89.5 -- 87.2† 82.2 --
GAIA 97.1 96.0 -- -- 80.3
LiveBrowseComp 48.7 29.6† 41.4† 32.8† 34.9†
HLE 51.1 47.6 37.1† 46.8 36.4
WideSearch 80.8 -- 62.0 -- 73.3†

Large-scale open-weight (<400B)

Open-weight systems with fewer than 400B parameters, including XYZ-Aquila-pro.

Benchmark XYZ-Aquila-pro Nex-N2-Pro MiroThinker 1.7 apodex-1.0
BrowseComp 84.8 83.7† 74.0 75.5
BrowseComp-ZH 85.1 79.6† 75.3 82.6
DeepSearchQA 92.5 92.3† -- 84.6
LiveBrowseComp 53.7 50.4† 34.1† --
HLE 53.3 50.0† 42.9 49.0
WideSearch 81.2 75.6 -- --

XYZ-Aquila-pro vs. Larger-Scale and Closed-Source Models

XYZ-Aquila-pro compared with larger-scale open-weight and closed-source models.

Benchmark XYZ-Aquila-pro apodex-h1 DeepSeek-V4-
Pro-Max
Kimi-K2.6 Claude
Opus 4.7
GPT-5.5
xhigh
BrowseComp 84.8 90.3 83.4 83.2 79.3 84.4
BrowseComp-ZH 85.1 84.1 -- -- -- --
DeepSearchQA 92.5 94.4 -- 92.5 89.1 --
LiveBrowseComp 53.7 -- 38.3 31.7 -- --
HLE 53.3 60.8 -- 55.5 54.7 52.2
WideSearch 81.2 -- -- 80.8 -- --

All values are percentages. HLE denotes Humanity's Last Exam. DeepSearchQA uses F1, WideSearch uses Item F1 Max@4, and the remaining benchmarks use accuracy. Rows with no reported result across an entire group are omitted; -- indicates an unreported result within an otherwise populated row. † marks results reproduced under the common evaluation setup; other baseline values come from public reports or benchmark submissions. See the technical report for full provenance and analysis.

Quickstart

SGLang Deployment

Use a recent SGLang release (sglang>=0.5.10). The example below launches an OpenAI-compatible endpoint with Qwen reasoning and tool-call parsers. It uses tensor parallelism across eight GPUs; reduce the context length if the deployment does not have enough memory.

uv pip install "sglang[all]>=0.5.10"

MODEL_PATH=XYZAILab/XYZ-Aquila-pro
SERVED_MODEL=XYZ-Aquila-pro

python -m sglang.launch_server \
  --model-path "${MODEL_PATH}" \
  --served-model-name "${SERVED_MODEL}" \
  --port 8000 \
  --tp-size 8 \
  --mem-fraction-static 0.8 \
  --context-length 262144 \
  --reasoning-parser qwen3 \
  --tool-call-parser qwen3_coder

For XYZ-Aquila-mini, replace MODEL_PATH and SERVED_MODEL with the mini repository and use the tensor-parallel configuration appropriate for your hardware.

Recommended Sampling Config

These are recommended starting values for thinking-mode agentic search. Tune them for the target task and harness.

temperature: 1.0
top_p: 0.95
repetition_penalty: 1.05
chat_template_kwargs:
  enable_thinking: true
  preserve_thinking: true

Keep the input and generated response within the 262,144-token context window.

Citation

@techreport{xyz_aquila_2026,
  title       = {AI4AI at Scale: A Full-Pipeline System for Enhancing LLM Agentic Capabilities},
  author      = {{XYZ Agentic Team}},
  institution = {XYZ AI Lab},
  year        = {2026},
  url         = {https://xyz-lab.ai/blogs/ai4ai-at-scale/assets/bounded-exploration-ai4ai-system-optimization.pdf}
}
Downloads last month
739
Safetensors
Model size
397B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for XYZAILab/XYZ-Aquila-pro

Finetuned
(37)
this model

Collection including XYZAILab/XYZ-Aquila-pro