From 9771e0b4322c3e8675938a934a019e2f17f82d9f Mon Sep 17 00:00:00 2001 From: Jee Jee Li Date: Wed, 22 Oct 2025 23:19:12 +0800 Subject: [PATCH] [Bugfix] Add missing 'is_internal_router' attribute to FusedMoEWithLoRA (#27351) Signed-off-by: Jee Jee Li --- vllm/lora/layers/fused_moe.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/vllm/lora/layers/fused_moe.py b/vllm/lora/layers/fused_moe.py index e7bc61329d5aa..5a9fd35c2907a 100644 --- a/vllm/lora/layers/fused_moe.py +++ b/vllm/lora/layers/fused_moe.py @@ -405,3 +405,7 @@ class FusedMoEWithLoRA(BaseLayerWithLoRA): @property def quant_method(self): return self.base_layer.quant_method + + @property + def is_internal_router(self) -> bool: + return self.base_layer.is_internal_router