From e64011f29a63ef9c4fc67bad1fd42af4f3cfad35 Mon Sep 17 00:00:00 2001 From: Wentao Ye <44945378+yewentao256@users.noreply.github.com> Date: Thu, 13 Nov 2025 17:19:35 -0500 Subject: [PATCH] [CI] Bug: Fix ci entrypoint pooling (#28684) Signed-off-by: yewentao256 --- vllm/v1/engine/processor.py | 1 + 1 file changed, 1 insertion(+) diff --git a/vllm/v1/engine/processor.py b/vllm/v1/engine/processor.py index 69509d5d4712a..0404f6ff2771c 100644 --- a/vllm/v1/engine/processor.py +++ b/vllm/v1/engine/processor.py @@ -579,6 +579,7 @@ class Processor: prompt_len == max_prompt_len and prompt_type == "decoder" and not model_config.is_multimodal_model + and self.model_config.runner_type != "pooling" ): suggestion = ( "Make sure that `max_model_len` is no smaller than the "