Agnes AI logo

Agnes AI website Agnes API docs Artificial Analysis model page

Agnes 2.5 Pro Alpha

Hello! 👋 Today we are introducing Agnes 2.5 Pro Alpha, our most capable reasoning model for advanced coding, scientific problem solving, long-context analysis, multimodal understanding, and agentic workflows.

Highlights:

  • Competitive benchmark performance: Agnes outperforms Qwen3.5-397B on six of the eight evaluations visualized below, with particularly clear gains on Terminal-Bench v2.1, CritPt, and AA-Omniscience Accuracy.
  • Built for demanding work: a 1M-token context window, up to 65,536 output tokens, extended reasoning, tool calling, and text, image understanding.
LLM benchmark evaluation comparing Agnes 2.5 Pro Alpha with flagship-scale models

Agnes 2.5 Pro Alpha

A multimodal reasoning model available through the Agnes AI API. The model combines long-context understanding with strong coding and scientific reasoning, while retaining the throughput and pricing needed for production workloads.

Benchmarks

Agnes 2.5 Pro Alpha is evaluated against the same comparison set selected for Ornith-1.0-397B: Qwen3.5-397B, Qwen3.7-Max, GLM-5.2-744B, MiniMax-M3-428B, DeepSeek-V4-Pro-1.6T, Claude Opus 4.7, and Claude Opus 4.8. Every result below is an independent Artificial Analysis benchmark measurement.

Benchmark Agnes 2.5
Pro Alpha
Qwen3.5
397B
Qwen3.7
Max
GLM-5.2
744B
MiniMax-M3
428B
DeepSeek-V4-Pro
1.6T
Claude Opus
4.7
Claude Opus
4.8
Agentic Work & Coding
GDPval-AA v2 33.823.238.650.344.354.549.554.2
τ³-Banking12.413.411.834.615.339.634.634.2
Terminal-Bench v2.167.051.374.577.965.278.783.184.6
SciCode42.242.048.850.545.449.254.553.5
Long Context & Scientific Reasoning
AA-LCR73.072.774.776.780.375.375.373.0
Humanity's Last Exam33.629.040.541.139.041.042.348.7
GPQA Diamond87.689.392.389.592.992.891.492.0
CritPt10.91.713.420.93.718.012.020.9
Knowledge Reliability
AA-Omniscience Accuracy33.530.831.124.316.749.148.948.8
Non-Hallucination Rate11.911.174.473.781.65.257.760.7

† GDPval-AA v2 uses Artificial Analysis' normalized score, (Elo − 500) / 2000. Non-Hallucination Rate is 1 − hallucination rate. Higher is better for every benchmark. Snapshot checked August 18, 2026; values may change as evaluations are updated.

Model Information

Property Value
Developed by Agnes AI
Model name Agnes 2.5 Pro Alpha
Model type Multimodal reasoning model
License Apache License 2.0
Languages English, Chinese
Context window 1,048,576 tokens
Maximum output 65,536 tokens
Input modalities Text, image
Output modality Text
Precision BF16
Tool calling Yes
Streaming Yes
Release date July 2026

License

This repository is licensed under the Apache License 2.0.

Agnes 2.5 Pro Alpha is a post-trained derivative of Qwen/Qwen3.5-397B-A17B, which is also licensed under Apache License 2.0. Original copyright notices are retained. Additional post-training was performed by Agnes AI.

See the LICENSE file in this repository for the full terms.

Hardware Requirements

The Quickstart launch command uses 8-GPU tensor parallelism. The checkpoint is a large multi-shard BF16 package; a single GPU is not sufficient.

Resource Recommendation
GPUs 8× NVIDIA H200 (141 GB) or equivalent
Tensor parallel --tp 8
Host memory / disk Fast NVMe with about 1 TB free for weights, tokenizer files, and download cache
Context length The sample command sets --context-length 1024000. If you hit out-of-memory errors, lower this value
Network Optional. The same model is also served at https://apihub.agnes-ai.com/v1 without local GPUs

Quickstart

REASONING MODEL

Agnes 2.5 Pro Alpha uses extended reasoning for complex tasks and is available through OpenAI-compatible Chat Completions and Responses APIs. Keep API keys in environment variables and use publicly accessible URLs for image inputs.

SGLang

python -m sglang.launch_server \
    --model-path Agnes-AI/Agnes-2.5-Pro-Alpha \
    --served-model-name agnes-2.5-pro-alpha \
    --tp 8 \
    --host 0.0.0.0 --port 8000 \
    --context-length 1024000 \
    --mem-fraction-static 0.85 \
    --tool-call-parser qwen3_coder \
    --reasoning-parser qwen3

Chat Completions

export AGNES_API_KEY="your-api-key"

curl https://apihub.agnes-ai.com/v1/chat/completions \
  -H "Authorization: Bearer ${AGNES_API_KEY}" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "agnes-2.5-pro-alpha",
    "messages": [
      {
        "role": "user",
        "content": "Review this API handler for security issues and provide a corrected version."
      }
    ],
    "temperature": 1.0,
    "max_tokens": 2000
  }'

Python

pip install openai
import os
from openai import OpenAI

client = OpenAI(
    api_key=os.environ["AGNES_API_KEY"],
    base_url="https://apihub.agnes-ai.com/v1",
)

response = client.chat.completions.create(
    model="agnes-2.5-pro-alpha",
    messages=[
        {
            "role": "user",
            "content": "Design a fault-tolerant event processing architecture.",
        }
    ],
    temperature=1.0,
    max_tokens=2000,
)

print(response.choices[0].message.content)

Image Understanding

response = client.chat.completions.create(
    model="agnes-2.5-pro-alpha",
    messages=[
        {
            "role": "user",
            "content": [
                {"type": "text", "text": "Explain this chart and call out anomalies."},
                {
                    "type": "image_url",
                    "image_url": {"url": "https://example.com/chart.png"},
                },
            ],
        }
    ],
)

Responses API

curl https://apihub.agnes-ai.com/v1/responses \
  -H "Authorization: Bearer ${AGNES_API_KEY}" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "agnes-2.5-pro-alpha",
    "input": "Create a step-by-step migration plan from a monolith to services.",
    "max_output_tokens": 2000
  }'

Recommended Inference Settings

Use sampling rather than greedy decoding. Leave enough max_tokens / max_output_tokens for extended reasoning.

Setting Recommended
temperature 1.0
top_p 0.95
top_k 20
repetition_penalty 1.05
max_tokens 2000 or higher

Raise max_tokens if a response stops early.

Model Capabilities

Capability Support
Advanced reasoning Yes
Coding and debugging Yes
Long-context analysis 1M tokens
Maximum output 65,536 tokens
Image understanding Yes, via public image URL
Tool calling Yes
Streaming Yes
OpenAI-compatible APIs Chat Completions and Responses

Agnes 2.5 Pro Alpha is especially well suited to repository-level coding, technical research, document synthesis, visual analysis, and tool-enabled agents that need to reason across long and complex contexts.

Responsible Use

Model outputs can contain errors. Validate high-impact decisions and tool actions in the application layer, and review the applicable Agnes AI service terms before sending sensitive or regulated data.

Citation

@misc{agnes25proalpha2026,
  title        = {Agnes 2.5 Pro Alpha},
  author       = {{Agnes AI}},
  year         = {2026},
  month        = jul,
  howpublished = {API model},
  url          = {https://wiki.agnes-ai.com/en/docs/agnes-25-pro-alpha}
}
Downloads last month
88
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 Agnes-AI/Agnes-2.5-Pro-Alpha

Finetuned
(38)
this model