Views
No views yet

intermediate_size of 8192, moe_intermediate_size of 1024, top-6 routing, grouped KV heads (num_key_value_heads=4), and an extremely high rope_theta (8e6) for long-context stability without RoPE scaling. It has 128 experts with a shared expert, a routed scaling factor of 2.5, and auxiliary-loss-free router balancing. The 30B model focuses on throughput and memory efficiency through fewer layers, grouped KV attention, and smaller experts.1git clone https://github.com/sgl-project/sglang.git
2cd sglang
3pip install -e "python[all]"1sglang serve --model-path sarvamai/sov_30b_fp8 \
2 --port 3002 --host 0.0.0.0 \
3 --mem-fraction-static 0.70 \
4 --trust-remote-code \
5 --tp 2 \
6 --enable-dp-attention --dp 2 \
7 --prefill-attention-backend fa3 \
8 --decode-attention-backend fa3 \
9 --ep 2 \
10 --tool-call-parser glm45 \
11 --reasoning-parser glm45 \
12 --quantization modelopt_fp8 \
13 --kv-cache-dtype fp8_e4m3registry.pysarvam-105b and sarvam-30bImportant: You must setVLLM_USE_FLASHINFER_MOE_FP8=0as an environment variable, otherwise the server will get stuck during compilation and crash.
1VLLM_USE_FLASHINFER_MOE_FP8=0 vllm serve sarvamai/sarvam-30b-fp8 \
2 --trust-remote-code \
3 --tensor-parallel-size 2 \
4 --quantization modelopt \
5 --kv-cache-dtype fp8 \
6 --port 3002@misc{sarvam_sovereign_models,
title = {Introducing Sarvam's Sovereign Models},
author = {{Sarvam Foundation Models Team}},
year = {2026},
howpublished = {\url{https://www.sarvam.ai/blogs/sarvam-30b-105b}},
note = {Accessed: 2026-03-03}
}