[Bugfix] Fix the bug blocking the startup of Llama-3.2-11b-Vision-Instruct (#19638)

Co-authored-by: sglang-npu-bot <sglangnpu@163.com>
This commit is contained in:
xdtbynd
2026-03-06 16:21:50 +08:00
committed by GitHub
parent 23eb24ddfe
commit 0252ca8255

View File

@@ -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)