Use uv (preferred) with --prerelease=allow for sglang install
Browse files- docs/deploy_guidance.md +2 -2
docs/deploy_guidance.md
CHANGED
|
@@ -30,10 +30,10 @@ vllm serve $MODEL_PATH -tp 8 --mm-encoder-tp-mode data --trust-remote-code --too
|
|
| 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):
|
| 34 |
|
| 35 |
```
|
| 36 |
-
pip install "sglang>=0.5.10.post1"
|
| 37 |
```
|
| 38 |
|
| 39 |
Here is the example for it to run with TP8 on H200 in a single node via SGLang:
|
|
|
|
| 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:
|