diff --git a/tutorial/examples/wordle.py b/tutorial/examples/wordle.py index 5cb231204..c505e9877 100644 --- a/tutorial/examples/wordle.py +++ b/tutorial/examples/wordle.py @@ -44,7 +44,10 @@ # Spin up vLLM server (Terminal 1) ```sh -CUDA_VISIBLE_DEVICES=0 trl vllm-serve --model Qwen/Qwen3-1.7B --host 0.0.0.0 --port 8000 +CUDA_VISIBLE_DEVICES=0 VLLM_SERVER_DEV_MODE=1 vllm serve Qwen/Qwen3-1.7B --host 0.0.0.0 --port 8000 \ + --weight-transfer-config '{"backend": "nccl"}' \ + --logprobs-mode processed_logprobs \ + --max-logprobs -1 ``` # Run training (Terminal 2)