32GB VRAM Serving Options for Agents-A1
Collection
Curated collection of text-only quantizations of Agents-A1 (35B MoE) optimized for 32GB VRAM dual-GPU serving with high KV Cache capacity. • 2 items • Updated
This is an optimized, text-only 4-bit INT4 AWQ quantization of InternScience/Agents-A1 (a 35B parameter Mixture-of-Experts agentic model with hybrid Mamba-Attention layers and 2M context length) with pruned vocabulary and group size 128.
This optimized checkpoint was created by pruning the multimodal vision encoder and excluding the grafted Multi-Token Prediction (MTP) weights to drastically reduce the VRAM footprint, and then slicing the vocabulary size from 248,320 down to 152,064 tokens (mapping away unused visual/coordinate tokens).
It is designed to be served natively under vLLM V1 with FP8 KV cache support.
model.visual.) and skipped the MTP heads (model_mtp.safetensors), saving 2.0 GB of VRAM during execution.152,064 (standard Qwen-2.5-Text vocab scale) by mapping away 96,256 unused vision/coordinate tokens. This saved ~370 MiB of weight VRAM per GPU.--max-num-batched-tokens 2048, freeing significant activation memory during execution.vllm serve Cadododoom/Agents-A1-TextOnly-AWQ-INT4 \
--tensor-parallel-size 2 \
--quantization compressed-tensors \
--moe-backend marlin \
--attention-backend flashinfer \
--kv-cache-dtype fp8 \
--max-model-len 32768 \
--max-num-seqs 32 \
--max-num-batched-tokens 2096 \
--mamba-cache-mode align \
--gpu-memory-utilization 0.95 \
--trust-remote-code
Base model
InternScience/Agents-A1