From ca533580f28b9a988dddb9686f08ef8ef041f226 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=B1=9F=E5=AE=B6=E7=91=8B?= <36886416+JiangJiaWei1103@users.noreply.github.com> Date: Tue, 19 Aug 2025 04:24:19 +0800 Subject: [PATCH] [Docs] Correct and clarify notes in Engine docstring (#9313) Signed-off-by: JiangJiaWei1103 --- python/sglang/srt/entrypoints/engine.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/sglang/srt/entrypoints/engine.py b/python/sglang/srt/entrypoints/engine.py index 854d146a4..246cfc643 100644 --- a/python/sglang/srt/entrypoints/engine.py +++ b/python/sglang/srt/entrypoints/engine.py @@ -94,8 +94,8 @@ class Engine(EngineBase): 3. DetokenizerManager (subprocess): Detokenizes the output tokens and sends the result back to the Tokenizer Manager. Note: - 1. The HTTP server, Engine, and TokenizerManager both run in the main process. - 2. Inter-process communication is done through ICP (each process uses a different port) via the ZMQ library. + 1. The HTTP server, Engine, and TokenizerManager all run in the main process. + 2. Inter-process communication (IPC) is handled via the ZMQ library, with each process using a different port. """ def __init__(self, **kwargs):