From 0252ca8255f2a09099e7d6bf747b0bd32a62da9f Mon Sep 17 00:00:00 2001 From: xdtbynd <231153518+xdtbynd@users.noreply.github.com> Date: Fri, 6 Mar 2026 16:21:50 +0800 Subject: [PATCH] [Bugfix] Fix the bug blocking the startup of Llama-3.2-11b-Vision-Instruct (#19638) Co-authored-by: sglang-npu-bot --- python/sglang/srt/configs/model_config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python/sglang/srt/configs/model_config.py b/python/sglang/srt/configs/model_config.py index fc0942ecc..41ad51ce0 100644 --- a/python/sglang/srt/configs/model_config.py +++ b/python/sglang/srt/configs/model_config.py @@ -1360,6 +1360,7 @@ def is_audio_model(model_architectures: List[str]): def is_encoder_decoder_model(model_architectures: List[str]): models = [ "WhisperForConditionalGeneration", + "MllamaForConditionalGeneration", ] return any(model in model_architectures for model in models)