[Docs] Fix warnings in mkdocs build (#23649)

Signed-off-by: Zerohertz <ohg3417@gmail.com>
Signed-off-by: Hyogeun Oh (오효근) <ohg3417@gmail.com>
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
Co-authored-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
This commit is contained in:
Hyogeun Oh (오효근)
2025-08-27 03:19:23 +09:00
committed by GitHub
parent 9b0187003e
commit 730d0ac8b9
14 changed files with 66 additions and 58 deletions

View File

@@ -486,10 +486,10 @@ class AsyncLLMEngine(EngineClient):
_engine_class: Type[_AsyncLLMEngine] = _AsyncLLMEngine
def __init__(self,
*args,
*args: Any,
log_requests: bool = True,
start_engine_loop: bool = True,
**kwargs) -> None:
**kwargs: Any) -> None:
if envs.VLLM_USE_V1:
raise ValueError(
"Using V0 AsyncLLMEngine, but envs.VLLM_USE_V1=True. "