vLLM x VastAI/Recipes
Qwen

Qwen/Tongyi-DeepResearch-30B-A3B

Qwen3-based MoE agentic model (30B total, 3B activated) for autonomous deep research and multi-step information seeking tasks.

Compact Qwen3 MoE with 3B active parameters

moe30B / 3B131,072 ctxvLLM 0.17.0text
Guide

Overview

Tongyi-DeepResearch-30B-A3B is the Qwen3-based MoE agentic model (30B total, 3B activated) for autonomous deep research and multi-step information seeking tasks. inputs.

Prerequisites

  • vLLM version: 0.17.0
  • Config: GPUs = 1x VA16, Precision = FP8, TP = 4, max-model-len = 128K

Example config only. Refer to above for others.

Start Docker Container

docker run \
  --privileged=true \
  --name vllm_service \
  --shm-size=256g \
  --ipc=host \
  -p 8000:8000 \
  -it \
  -v ~/.cache/huggingface:/root/.cache/huggingface \
  harbor.vastaitech.com/ai_deliver/vllm_vacc:latest \
  bash

Launching the Server

vllm serve lancew/Tongyi-DeepResearch-30B-A3B-FP8 \
  --trust-remote-code \
  --tensor-parallel-size 4 \
  --max-model-len 131072 \
  --enable-auto-tool-choice --tool-call-parser hermes \
  --reasoning-parser deepseek_r1 \
  --enforce-eager

Client Usage

from openai import OpenAI

client = OpenAI(api_key="EMPTY", base_url="http://localhost:8000/v1")
resp = client.chat.completions.create(
    model="lancew/Tongyi-DeepResearch-30B-A3B-FP8",
    messages=[{"role": "user", "content": "Explain gated delta networks in one paragraph."}],
    max_tokens=512,
)
print(resp.choices[0].message.content)

References

Qwen/Tongyi-DeepResearch-30B-A3B | vLLM Recipes