From 7e78825d5af5b55f90b3c9f99d5d89aea533c003 Mon Sep 17 00:00:00 2001 From: Baizhou Zhang Date: Wed, 3 Dec 2025 11:35:40 -0800 Subject: [PATCH] [Tiny]Small fixes in deepseek v32 doc (#14372) Co-authored-by: Xinyuan Tong <115166877+JustinTong0323@users.noreply.github.com> --- docs/basic_usage/deepseek_v32.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/basic_usage/deepseek_v32.md b/docs/basic_usage/deepseek_v32.md index fb7e67c46..abaaaf741 100644 --- a/docs/basic_usage/deepseek_v32.md +++ b/docs/basic_usage/deepseek_v32.md @@ -76,13 +76,15 @@ python -m sglang.launch_server --model deepseek-ai/DeepSeek-V3.2-Exp --tp 8 --dp The usage of function calling and reasoning parser is the same as DeepSeek V3.1. Please refer to [Reasoning Parser](https://docs.sglang.io/advanced_features/separate_reasoning.html) and [Tool Parser](https://docs.sglang.io/advanced_features/tool_parser.html) documents. To launch `DeepSeek-V3.2-Exp` with function calling and reasoning parser: +> Note: It is recommended to specify the chat-template, ensuring that you are within the sglang's root directory. ```bash python3 -m sglang.launch_server \ - --model-path deepseek-ai/DeepSeek-V3.2 \ + --model-path deepseek-ai/DeepSeek-V3.2-Exp \ --trust-remote-code \ --tp-size 8 --dp-size 8 --enable-dp-attention \ --tool-call-parser deepseekv31 \ - --reasoning-parser deepseek-v3 + --reasoning-parser deepseek-v3 \ + --chat-template ./examples/chat_template/tool_chat_template_deepseekv32.jinja ``` To launch `DeepSeek-V3.2` with function calling and reasoning parser: