[Docs] Correct and clarify notes in Engine docstring (#9313)

Signed-off-by: JiangJiaWei1103 <waynechuang97@gmail.com>
This commit is contained in:
江家瑋
2025-08-19 04:24:19 +08:00
committed by GitHub
parent 886454e8e7
commit ca533580f2

View File

@@ -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):