Super tiny remove unneeded policy flag (#14608)

This commit is contained in:
fzyzcjy
2025-12-08 11:35:07 +08:00
committed by GitHub
parent 85d0ccfac0
commit 1915a1f8a7

View File

@@ -133,14 +133,13 @@ python -m sglang_router.launch_router \
> gRPC router supports both single-stage and PD serving. Provide `--tokenizer-path` or `--model-path` (HF repo or local directory) plus optional `--chat-template`.
### Prefill/Decode Disaggregation
Split prefill and decode workers for PD-aware caching and balancing.
Split prefill and decode workers for PD-aware caching and balancing. Specifying `--policy A` is equivalent to `--prefill-policy A --decode-policy A`.
```bash
python -m sglang_router.launch_router \
--pd-disaggregation \
--prefill http://prefill1:30001 9001 \
--decode http://decode1:30011 \
--policy cache_aware \
--prefill-policy cache_aware \
--decode-policy power_of_two
```