From c4f2b7e69ca929b78f63318a5436b69e0145825c Mon Sep 17 00:00:00 2001 From: Yuan Tang Date: Mon, 20 Jan 2025 01:59:00 -0500 Subject: [PATCH] [DOC] Add missing docstring in LLMEngine.add_request() (#12195) Signed-off-by: Yuan Tang --- vllm/engine/llm_engine.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vllm/engine/llm_engine.py b/vllm/engine/llm_engine.py index 88c21f9a6d31b..b6bba1d67b408 100644 --- a/vllm/engine/llm_engine.py +++ b/vllm/engine/llm_engine.py @@ -689,7 +689,9 @@ def add_request( :class:`~vllm.PoolingParams` for pooling. arrival_time: The arrival time of the request. If None, we use the current monotonic time. + lora_request: The LoRA request to add. trace_headers: OpenTelemetry trace headers. + prompt_adapter_request: The prompt adapter request to add. priority: The priority of the request. Only applicable with priority scheduling.