[Bugfix] Add missing 'is_internal_router' attribute to FusedMoEWithLoRA (#27351)

Signed-off-by: Jee Jee Li <pandaleefree@gmail.com>
This commit is contained in:
Jee Jee Li 2025-10-22 23:19:12 +08:00 committed by GitHub
parent 980de31ca0
commit 9771e0b432
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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