diff --git a/tensorrt_llm/_torch/models/modeling_minimaxm3_vl.py b/tensorrt_llm/_torch/models/modeling_minimaxm3_vl.py index fce64e1a561c..55ce331d176c 100644 --- a/tensorrt_llm/_torch/models/modeling_minimaxm3_vl.py +++ b/tensorrt_llm/_torch/models/modeling_minimaxm3_vl.py @@ -2071,9 +2071,14 @@ def get_minimax_m3_vl_input_processor_cls(): path. Re-type by dynamic subclassing here so the registered class inherits from the base. """ - from tensorrt_llm.inputs.registry import BaseMultimodalInputProcessor + from tensorrt_llm.inputs.registry import ( + BaseMultimodalDummyInputsBuilder, + BaseMultimodalInputProcessor, + ) - class _Registered(MiniMaxM3VLInputProcessor, BaseMultimodalInputProcessor): + class _Registered( + MiniMaxM3VLInputProcessor, BaseMultimodalInputProcessor, BaseMultimodalDummyInputsBuilder + ): pass _Registered.__name__ = "MiniMaxM3VLInputProcessor"