Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions tensorrt_llm/_torch/models/modeling_minimaxm3_vl.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Loading