Merge pull request #1 from zhyncs/main

docs: serving DeepSeek-R1-Distill models with SGLang
This commit is contained in:
stack-heap-overflow 2025-01-20 20:58:26 +08:00 committed by GitHub
commit e91babdecf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -191,6 +191,12 @@ For instance, you can easily start a service using [vLLM](https://github.com/vll
vllm serve deepseek-ai/DeepSeek-R1-Distill-Qwen-32B --tensor-parallel-size 2 --max-model-len 32768 --enforce-eager
```
You can also easily start a service using [SGLang](https://github.com/sgl-project/sglang)
```bash
python3 -m sglang.launch_server --model deepseek-ai/DeepSeek-R1-Distill-Qwen-32B --trust-remote-code --tp 2
```
**NOTE: We recommend setting an appropriate temperature (between 0.5 and 0.7) when running these models, otherwise you may encounter issues with endless repetition or incoherent output.**
## 7. License