From d2643128f7741b937435b00fecde7d6b2e351d0c 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 88c21f9a6d31..b6bba1d67b40 100644 --- a/vllm/engine/llm_engine.py +++ b/vllm/engine/llm_engine.py @@ -689,7 +689,9 @@ class LLMEngine: :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.