"vllm/model_executor/models/voxtral_realtime.py" did not exist on "9ea07b41da169f727a2eb7302adec4c724319522"
__init__.py 556 Bytes
Newer Older
1
2
from .base import (BatchedTensors, MultiModalDataDict, MultiModalInputs,
                   MultiModalPlugin)
3
4
5
6
7
8
9
10
11
12
from .registry import MultiModalRegistry

MULTIMODAL_REGISTRY = MultiModalRegistry()
"""
The global :class:`~MultiModalRegistry` is used by model runners to
dispatch data processing according to its modality and the target model.

See also:
    :ref:`input_processing_pipeline`
"""
13
14

__all__ = [
15
16
17
    "BatchedTensors",
    "MultiModalDataDict",
    "MultiModalInputs",
18
19
20
    "MultiModalPlugin",
    "MULTIMODAL_REGISTRY",
    "MultiModalRegistry",
21
]