From cec102e54e480101cbf5146078ec564f243d172f Mon Sep 17 00:00:00 2001 From: Juergen Kunz Date: Tue, 21 Apr 2026 08:23:10 +0000 Subject: [PATCH] docs(readme): fix vLLM config example fence to jsonc Switch the vLLM config example from a bash code fence to jsonc and convert its inline `#` comments to `//` so the snippet is valid JSONC. --- readme.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/readme.md b/readme.md index f6c155d..1cb36e6 100644 --- a/readme.md +++ b/readme.md @@ -318,15 +318,15 @@ modelgrid cluster activate NODE # Mark a node active again High-performance inference with PagedAttention and continuous batching. -```bash +```jsonc { "id": "vllm-1", "type": "vllm", "name": "vLLM Server", - "gpuIds": ["nvidia-0", "nvidia-1"], # Tensor parallelism + "gpuIds": ["nvidia-0", "nvidia-1"], // Tensor parallelism "port": 8000, "env": { - "HF_TOKEN": "your-huggingface-token" # For gated models + "HF_TOKEN": "your-huggingface-token" // For gated models } } ```