Patrick Gawron
Date 2026-07-27 Read 2 min

Agents-A1: a 35B-A3B agentic model that fits a 24GB card

Agents-A1 is an agentic post-train of Qwen3.5-35B-A3B by InternScience, released 26 June 2026 under Apache 2.0 - no acceptable-use policy, no user cap, no pass-through duty. It is aimed at long-horizon search, engineering, scientific research, instruction following and tool calling, and it is small enough to run on one consumer GPU.

The stack: 35B total / 3B active MoE · 256 experts, 8 active per token · vision-capable · 262,144-token context · Agents-A1-Q4_K_M.gguf 21.2 GB + mmproj 0.9 GB.

It is a Qwen3.5 post-train, and says so

config.json reports model_type: qwen3_5_moe and Qwen3_5MoeForConditionalGeneration, with 40 layers, 256 experts, 8 active per token and a 2048 hidden size. InternScience’s own comparison table lists Qwen3.5-35B-A3B and Qwen3.6-35B-A3B as the “comparable models” it is measured against.

That is not a criticism. It is the useful fact: if you already run Qwen3.5-35B-A3B locally, this is the same shape, the same VRAM budget, and the same tooling - with agent behaviour trained in. The training recipe is full-domain SFT, then domain-level teacher models, then multi-teacher on-policy distillation back into one model.

Where it lands

Against frontier models several times its size:

BenchmarkAgents-A1
IFEval94.8
GAIA96.0
XBench-DS-251086.0
IFBench80.6
FrontierScience-Olympiad79.0
BrowseComp75.5
Seal-056.4
HLE (with tools)47.6
HiPhO46.4
SciCode44.3
FrontierScience-Research40.0

InternScience claims overall SOTA on Seal-0, HiPhO, both FrontierScience splits, IFBench and IFEval, and best-in-class at ~35B on the rest. Self-reported, as always - but the comparison set is GPT-5.5, DeepSeek-V4-pro and Kimi-K2.6, not a friendly field.

Settings

The model card is unusually specific, and these are not the greedy defaults you would guess for an agent:

temperature       0.85
top_p             0.95
top_k             20
presence_penalty  1.1

The presence penalty is the interesting one - it exists to stop long-horizon agent loops from re-issuing the same tool call forever.

What fits

BuildSize
Agents-A1-Q4_K_M.gguf21.2 GB
Agents-A1-mmproj.gguf0.9 GB
Agents-A1-4B-Q4_K_M.gguf2.7 GB
Agents-A1-4B-mmproj.gguf0.7 GB

22.1 GB for the 35B with vision is tight on a 24GB card once you want context, and comfortable on 32GB. The 4B variant landed 14 July and at 3.4 GB total it is the one to put on a laptop or a second card as a cheap tool-calling worker. FP8 and NVFP4 builds exist for vLLM, and mlx-community has Mac quants.

Worth noting: Apache 2.0 on an agentic model with vision and 262K context is rarer than it should be - most agent-tuned releases in this class ship under custom terms. See the license roundup for why that matters before you build on one.