Commit ·
bc8e704
1
Parent(s): 2b2b88e
Update SGLang deployment guide: point to K2.6 cookbook and use stable release (#6)
Browse files- Update SGLang deployment guide: point to K2.6 cookbook and use stable release (b5632fb78a0f133882b5d4ecfe53913221f3a039)
- Use sglang>=0.5.10.post1 (drop [all] extra) (8a5354a4c1cde1ee18cebf4d61a6ae02f8916887)
- Use uv (preferred) with --prerelease=allow for sglang install (06b359a11c97ad794eafbf128e3836ed03cfcfc5)
Co-authored-by: Xinyuan Tong <JustinTong@users.noreply.huggingface.co>
- docs/deploy_guidance.md +4 -5
docs/deploy_guidance.md
CHANGED
|
@@ -28,16 +28,15 @@ vllm serve $MODEL_PATH -tp 8 --mm-encoder-tp-mode data --trust-remote-code --too
|
|
| 28 |
|
| 29 |
## SGLang Deployment
|
| 30 |
|
| 31 |
-
You can refer to https://cookbook.sglang.io/autoregressive/Moonshotai/Kimi-K2.
|
| 32 |
|
| 33 |
-
This model is
|
| 34 |
|
| 35 |
```
|
| 36 |
-
pip install "sglang
|
| 37 |
-
pip install nvidia-cudnn-cu12==9.16.0.29
|
| 38 |
```
|
| 39 |
|
| 40 |
-
|
| 41 |
``` bash
|
| 42 |
sglang serve --model-path $MODEL_PATH --tp 8 --trust-remote-code --tool-call-parser kimi_k2 --reasoning-parser kimi_k2
|
| 43 |
```
|
|
|
|
| 28 |
|
| 29 |
## SGLang Deployment
|
| 30 |
|
| 31 |
+
You can refer to https://cookbook.sglang.io/autoregressive/Moonshotai/Kimi-K2.6 for the newest deployment guide.
|
| 32 |
|
| 33 |
+
This model is supported in SGLang v0.5.10 and later stable releases (no nightly / main build required). `uv` is preferred:
|
| 34 |
|
| 35 |
```
|
| 36 |
+
uv pip install "sglang>=0.5.10.post1" --prerelease=allow
|
|
|
|
| 37 |
```
|
| 38 |
|
| 39 |
+
Here is the example for it to run with TP8 on H200 in a single node via SGLang:
|
| 40 |
``` bash
|
| 41 |
sglang serve --model-path $MODEL_PATH --tp 8 --trust-remote-code --tool-call-parser kimi_k2 --reasoning-parser kimi_k2
|
| 42 |
```
|