From ae3f62613a257dc5eb7e83ba6d2468a8d2984c58 Mon Sep 17 00:00:00 2001 From: Douglas Yang Date: Fri, 17 Jul 2026 13:24:46 -0700 Subject: [PATCH] docs(cookbook): fix stale/pruned Docker image tags (#31508) Co-authored-by: Claude Opus 4.8 (1M context) --- .../autoregressive/NVIDIA/Nemotron3-Super.mdx | 2 +- .../autoregressive/StepFun/Step-3.7-Flash.mdx | 4 ++-- .../cookbook/autoregressive/Xiaomi/MiMo-V2-Flash.mdx | 2 +- docs_new/cookbook/autoregressive/Xiaomi/MiMo-V2.5.mdx | 11 +---------- 4 files changed, 5 insertions(+), 14 deletions(-) diff --git a/docs_new/cookbook/autoregressive/NVIDIA/Nemotron3-Super.mdx b/docs_new/cookbook/autoregressive/NVIDIA/Nemotron3-Super.mdx index 2adebe7a8..e3628971f 100644 --- a/docs_new/cookbook/autoregressive/NVIDIA/Nemotron3-Super.mdx +++ b/docs_new/cookbook/autoregressive/NVIDIA/Nemotron3-Super.mdx @@ -28,7 +28,7 @@ SGLang from the main branch is required for Nemotron3-Super. You can install fro uv pip install 'git+https://github.com/sgl-project/sglang.git#subdirectory=python' # Or use Docker -docker pull lmsysorg/sglang:nightly-dev-20260310-0fd9a57d +docker pull lmsysorg/sglang:latest ``` For the full Docker setup and other installation methods, please refer to the [official SGLang installation guide](../../../docs/get-started/install). diff --git a/docs_new/cookbook/autoregressive/StepFun/Step-3.7-Flash.mdx b/docs_new/cookbook/autoregressive/StepFun/Step-3.7-Flash.mdx index 75137e244..1c7dcc6ff 100644 --- a/docs_new/cookbook/autoregressive/StepFun/Step-3.7-Flash.mdx +++ b/docs_new/cookbook/autoregressive/StepFun/Step-3.7-Flash.mdx @@ -19,14 +19,14 @@ Step-3.7-Flash is currently available in SGLang via Docker image install. ### Docker (NVIDIA) ```bash Command # Pull the docker image -docker pull lmsysorg/sglang:dev-step-3.7-flash +docker pull lmsysorg/sglang:latest # Launch the container docker run -it --gpus all \ --shm-size=32g \ --ipc=host \ --network=host \ - lmsysorg/sglang:dev-step-3.7-flash bash + lmsysorg/sglang:latest bash ``` ## 3. Model Deployment diff --git a/docs_new/cookbook/autoregressive/Xiaomi/MiMo-V2-Flash.mdx b/docs_new/cookbook/autoregressive/Xiaomi/MiMo-V2-Flash.mdx index 3823ba0eb..ecd602190 100644 --- a/docs_new/cookbook/autoregressive/Xiaomi/MiMo-V2-Flash.mdx +++ b/docs_new/cookbook/autoregressive/Xiaomi/MiMo-V2-Flash.mdx @@ -42,7 +42,7 @@ docker run -it --gpus all \ --shm-size=32g \ --ipc=host \ --network=host \ - lmsysorg/sglang:nightly-dev-20251215-4449c170 bash + lmsysorg/sglang:latest bash # If you already have SGLang installed, uninstall the current SGLang version pip uninstall sglang -y diff --git a/docs_new/cookbook/autoregressive/Xiaomi/MiMo-V2.5.mdx b/docs_new/cookbook/autoregressive/Xiaomi/MiMo-V2.5.mdx index 18436e947..f55c36ff2 100644 --- a/docs_new/cookbook/autoregressive/Xiaomi/MiMo-V2.5.mdx +++ b/docs_new/cookbook/autoregressive/Xiaomi/MiMo-V2.5.mdx @@ -54,16 +54,7 @@ tag: NEW Refer to the [official SGLang installation guide](../../../docs/get-started/install). -**Docker Images by Variant × Hardware:** - -| Variant | Hardware | Docker Image | -| --- | --- | --- | -| **MiMo-V2.5 (310B)** | H100 / H200 (Hopper, CUDA 12.9) | `lmsysorg/sglang:nightly-dev-20260511-044bb88a` | -| **MiMo-V2.5 (310B)** | B200 / GB300 (Blackwell, CUDA 13.0) | `lmsysorg/sglang:nightly-dev-cu13-20260511-044bb88a` | -| **MiMo-V2.5-Pro (1.02T)** | H100 / H200 (Hopper, CUDA 12.9) | `lmsysorg/sglang:nightly-dev-20260511-044bb88a` | -| **MiMo-V2.5-Pro (1.02T)** | B200 / GB300 (Blackwell, CUDA 13.0) | `lmsysorg/sglang:nightly-dev-cu13-20260511-044bb88a` | - -> Pull the image matching your GPU's CUDA driver. `lmsysorg/sglang:latest` will not load either checkpoint. +**Docker Image:** All variants (MiMo-V2.5 310B and MiMo-V2.5-Pro 1.02T) use `lmsysorg/sglang:latest`, which ships CUDA 13.0 and runs on both Hopper (H100 / H200) and Blackwell (B200 / GB300). **TPU (sgl-jax):** MiMo-V2.5-Pro can also be served on TPU via the JAX-based [sgl-jax](https://github.com/sgl-project/sglang-jax) runtime. The container image and `pip install` steps are listed in [§3.3 TPU Deployment](#3-3-tpu-deployment-mimo-v2-5-pro-sgl-jax).