From a3839dd4115084acd548b8304360be563f27bf85 Mon Sep 17 00:00:00 2001 From: project6 Date: Mon, 10 Aug 2026 09:29:39 +0000 Subject: [PATCH] =?UTF-8?q?fix(CRITICAL):=20add=20--limit-mm-per-prompt=20?= =?UTF-8?q?image=3D5=20=E2=80=94=20multimodal=20request=20kills=20engine?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Engine crash: ValueError: You set image=0 (or defaulted to 1) in --limit-mm-per-prompt, but found 1 items in the same prompt. This kills the entire vLLM engine (AsyncEngineDeadError), making all subsequent requests return 503. Competition sends image requests in functional tests (d08/d09 multimodal). Fix: --limit-mm-per-prompt image=5 allows up to 5 images per prompt. --- computility-run.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/computility-run.yaml b/computility-run.yaml index 4d583086..4b6a3a11 100644 --- a/computility-run.yaml +++ b/computility-run.yaml @@ -33,7 +33,7 @@ command: - --dtype - half - --limit-mm-per-prompt - - image=1 + - image=5 env: - name: VLLM_ENGINE_ITERATION_TIMEOUT_S value: '3600'