Back to internscience-agents-a1
Research PreviewAgentictextUpdated July 15, 2026

Agents A1: 35B MoE Long-Horizon Agentic Model

Agents A1 is a 35-billion parameter Mixture-of-Experts (MoE) agentic model developed by the InternScience group at the Shanghai Artificial Intelligence Laboratory. Built upon the Qwen3.5-35B-A3B base architecture, Agents A1 is designed to scale horizon capability—the length, depth, and coherence of multi-step task execution—activating only ~3 billion parameters per token for ultra-fast local inference.


🔬 Architecture & Training

  • Mixture-of-Experts (MoE): 35B total parameters with ~3B active parameters per token, providing high computational efficiency.
  • 256K Context Window: Supports up to 262,144 tokens, allowing the model to analyze large code repositories, extensive scientific literature, and long multi-turn interactions.
  • Three-Stage Training Recipe:
    1. Full-Domain SFT: Foundation alignment for generic agentic behavior and tool calling.
    2. Domain-Level Teacher Training: Deep domain specialization across 6 distinct fields.
    3. Multi-Teacher Domain-Routed On-Policy Distillation: Distills knowledge from domain experts into a unified MoE routing structure.
  • Long-Horizon Trajectory Execution: Optimized for generating and maintaining long-horizon knowledge-action trajectories averaging 45,000 tokens in length.
bash
Full-Domain SFT ───► Domain-Level Teacher Training ───► Multi-Teacher Domain-Routed On-Policy Distillation ───► Agents A1 MoE

📊 Benchmarks & Performance

Specification Table
BenchmarkScoreDescriptionStatus
GAIA96.0General AI assistant tool use & planningVerified
IFEval94.8Strict multi-constraint instruction followingVerified
FrontierScience (Olympiad)79.0Complex scientific reasoning & problem solvingVerified
SEAL-056.4Search-augmented reasoning on noisy web dataVerified
HLE (with tools)47.6Humanity's Last Exam complex reasoningVerified
HiPhO46.4Scientific agentic reasoning & tool orchestrationVerified

🚀 Quickstart & Serving with vLLM

bash
vllm serve InternScience/Agents-A1 \
 --port 8000 \
 --tensor-parallel-size 1 \
 --max-model-len 262144 \
 --reasoning-parser qwen3 \
 --enable-auto-tool-choice \
 --tool-call-parser qwen3_coder
python
from openai import OpenAI

client = OpenAI(
    base_url="http://localhost:8000/v1",
    api_key="none"
)

response = client.chat.completions.create(
    model="InternScience/Agents-A1",
    messages=[
        {"role": "user", "content": "Analyze the codebase and construct a long-horizon plan for refactoring."}
    ],
    temperature=0.7,
)

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

🔗 Official Paper & Resources

Key Features

35B Mixture-of-Experts (MoE) architecture with ~3B active parameters per token for efficient local inference

Feature 01

256K token context window supporting extended agentic reasoning trajectories averaging 45K tokens

Feature 02

Three-stage training framework: Full-Domain SFT, Domain-Level Teacher Training, and Multi-Teacher Domain-Routed On-Policy Distillation

Feature 03

Autonomous tool integration (web search, code interpreter, data analysis) with built-in execution feedback and verification loops

Feature 04

State-of-the-art benchmark performance rivaling 1T+ parameter models on SEAL-0, IFEval, HiPhO, GAIA, and FrontierScience

Feature 05

You might also want to compare

Verified Sources

Tags

research-previewagenticmoe

Model Specs

research-preview

Parameters

35B (3B active)

Context Window

256K tokens

License

Apache 2.0

Deployment

self-hostable

Resources & Links

Lineage

Model Family

Part of the internscience-agents-a1 family

Only release in this line currently tracked.

Curator Notes

Verified academic research lab model from Shanghai AI Laboratory (InternScience).

Compare Specs

Compare parameters, context windows, modalities, and benchmark scores of this model side-by-side with others.

Compare Model