Command A+ tackles the biggest bottlenecks enterprises face when deploying large‑scale agentic systems: prohibitive compute costs, latency spikes, and limited multilingual or multimodal coverage. By packing 218 B total parameters into a sparse Mixture‑of‑Experts (MoE) design that activates only 25 B per token, the model delivers frontier‑grade reasoning while keeping inference cheap enough to run on modest GPU clusters.
Real‑world problem: Running a traditional dense 200 B‑parameter LLM for agentic workflows often requires eight or more high‑end GPUs, inflating both capital expense and energy consumption. Latency suffers, hurting interactive applications like real‑time code generation or dynamic question answering over internal knowledge bases.
Solution: Deploy Command A+ in its W4A4 quantization (4‑bit weights/activations on MoE experts, full‑precision attention). This variant needs just two H100s (or a single B200) and still incurs virtually no quality loss thanks to Quantization‑Aware Distillation. Benchmarks show τ²‑Bench Telecom scores jumping from 37 % to 85 % and Terminal‑Bench Hard agentic coding rising from 3 % to 25 % versus the prior Command A Reasoning model. Throughput improves up to 63 % higher output tokens per second, and time‑to‑first token drops by as much as 17 %; speculative decoding adds another 1.5‑1.6× speedup for both text and multimodal inputs.
Practical steps for teams:
- Pull the W4A4 weights from Hugging Face: https://huggingface.co/CohereLabs/command-a-plus-05-2026-w4a4
- Install vLLM ≥ 0.21.0 and the Cohere Melody tool‑use wrapper (
cohere_melody>=0.9.0). - Use the provided chat template; enable reasoning to get
<|START_THINKING|>…<|END_THINKING|>traces before the final answer. - Set sampling to
temperature=0.9,top_p=0.95,repetition_penalty=1.04for balanced creativity and consistency. - Leverage the 128 K context window for long‑document RAG, the 48‑language support for global customer service, and the native image‑tool‑use flow for multimodal report generation.
By combining MoE efficiency, aggressive yet safe quantization, and strong multimodal reasoning, Command A+ lets enterprises run sophisticated agentic pipelines on affordable hardware without sacrificing accuracy or speed.

