Views
No views yet

| Architecture | Hybrid-linear MoE |
|---|---|
| Parameter Scale | Total 124B, Activated 5.1B |
| Transformer Layers | 35 KDA + 7 Gated MLA (5:1) |
| Number of Dense Layers | 2 |
| Number of Routed Experts | 512 |
| Number of Shared Experts | 1 |
| Number of Activated Experts | 8 |
| Attention Heads | 32 |
| Hidden Size | 2560 |
| Expert Intermediate Size | 768 |
| Dense Intermediate Size | 6144 |
| Vocabulary Size | 157184 |
| Context Training Schedule | 8K -> 32K -> 256K |


- Thinking mode is enabled by default. Unless otherwise specified, the default parameters for Ling-3.0-flash are as follows:
temperature=0.6, top_p=0.95, top_k=20.- SWE-Bench Series: Evaluated using OpenHands as the agent harness with tailored prompts. Decoding uses
temperature=0.6, top_p=0.95, max_new_tokens=32K, with a 256K context window.- Terminal-Bench 2.1: Evaluated under the Artificial Analysis (AA) protocol using the default Terminus 2 harness, a unified 2-hour timeout, the provided JSON parser in preserve-thinking mode, and 3 runs per task (mean). Decoding uses
temperature=0.6, top_p=1.0, max_new_tokens=32K, with a 256K context window.- MiniAppBench: A 500-task coding benchmark evaluating whether models can turn a single user request into complete, usable interactive HTML apps in real-world application-generation scenarios. Evaluated with
temperature=1.0, top_p=1.0, max_tokens=128K.- AntSWEBench: AntSWEBench is an internally used software engineering benchmark that covers mainstream programming languages such as Java, JavaScript, and Python, including various development scenarios like new feature, bug fix, and code refactoring.
- Tau3-banking-AA: Aligned with the AA leaderboard, utilizing GPT-5.4-mini (medium reasoning) for both the user simulator and the natural-language assertion judge.
- MCP-Atlas: Evaluated on the 500-task public set using the official v1 harness with a 20-turn limit and Gemini-2.5-Pro as the claim-coverage judger.
- SkillsBench: Evaluated via kilo-code on 87 tasks (excluding external API-dependent tasks), averaged over 3 runs.
- GDPval v2-AA: Evaluated on the public 220-task benchmark using the official Stirrup harness, with a 250-turn limit and a 5-hour timeout.
- Search-agent: For all search‑agent tasks, evaluations are performed using an internal harness. The basic ReAct paradigm is adopted for single-agent evaluation, while a multi-agent setup is employed for BrowseComp. The reported metric is the average pass@1.
- WideSearch: Evaluated using the official prompt and the official judge model GPT-4.1 on the corrected version of the dataset.
- Draco: Scored based on official rubrics per question, with the final score calculated as the average across all questions using Claude Opus 4.6 as the scoring model.
- BrowseComp (Single-Agent): Evaluated using a resume strategy for context management: once the context reaches a 64K-token threshold, the trajectory is summarized, the original history is discarded, and execution is resumed from the summary.
- BrowseComp (Multi-Agent): Evaluated using an internal multi-agent search harness based on SearchSwarm/Tongyi DeepResearch, configured with
temperature=0.85, top_p=0.95, max_tokens=8K, and main/sub-agent context windows of 128K and 64K, respectively.
docker pull lmsysorg/sglang:dev-Ling-3.0-flash1docker run --rm --gpus all --ipc=host --shm-size 32g \
2 -p 30000:30000 \
3 -e HF_TOKEN=<your-hf-token> \
4 lmsysorg/sglang:dev-Ling-3.0-flash \
5 env SGLANG_ALLOW_OVERWRITE_LONGER_CONTEXT_LEN=1 \
6 python3 -m sglang.launch_server \
7 --model-path inclusionAI/Ling-3.0-flash \
8 --tp 4 \
9 --context-length 262144 \
10 --speculative-algorithm NEXTN \
11 --mem-fraction-static 0.8 \
12 --host 0.0.0.0 \
13 --port 30000--tp 8 with the same flags; see the cookbook cell for your hardware.ling3 reasoning parser. Disable it per request with "chat_template_kwargs": {"enable_thinking": false}. We recommend the sampling parameters temperature=0.6, top_p=0.95, and top_k=20.1curl -s http://localhost:30000/v1/chat/completions \
2 -H "Content-Type: application/json" \
3 -d '{"model": "inclusionAI/Ling-3.0-flash",
4 "messages": [{"role": "user", "content": "hello!"}],
5 "stream": true,
6 "temperature": 0.6,
7 "top_k": 20,
8 "top_p": 0.95
9 }'--reasoning-parser ling3 / --tool-call-parser ling3, the HiCache + Mooncake L3 setup, and GSM8K / bench_serving reproduction commands, see the cookbook page linked above.1pip install uv
2
3uv venv ~/my_ling_env
4
5source ~/my_ling_env/bin/activate
6
7git clone -b ling_3_0 https://github.com/inclusionAI/vllm-ling-v3.git
8
9cd vllm-ling-v3
10
11VLLM_USE_PRECOMPILED=1 uv pip install --editable . --torch-backend=auto${PORT}:1vllm serve "$MODEL_PATH" \
2 --port "$PORT" \
3 --trust-remote-code \
4 --served-model-name auto \
5 --tensor-parallel-size 4 \
6 --gpu-memory-utilization 0.85 \
7 --enable-prefix-caching \
8 --mamba-cache-mode align \
9 --enable-auto-tool-choice \
10 --tool-call-parser ling3 \
11 --reasoning-parser ling3 \
12 --speculative-config '{"method":"mtp","num_speculative_tokens":3}'temperature=0.6, top_p=0.95, and top_k=20, and enabling enable_thinking for better performance.1curl -s http://${MASTER_IP}:${PORT}/v1/chat/completions \
2 -H "Content-Type: application/json" \
3 -d '{"model": "auto",
4 "messages": [{"role": "user", "content": "hello!"}],
5 "chat_template_kwargs": {"enable_thinking": true},
6 "stream": true,
7 "temperature": 0.6,
8 "top_k": 20,
9 "top_p": 0.95
10 }'