mirror of
https://git.datalinker.icu/vllm-project/vllm.git
synced 2026-01-15 12:54:30 +08:00
24 lines
646 B
Python
24 lines
646 B
Python
from .base import (BatchedTensors, MultiModalDataBuiltins, MultiModalDataDict,
|
|
MultiModalInputs, MultiModalPlugin, NestedTensors)
|
|
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`
|
|
"""
|
|
|
|
__all__ = [
|
|
"BatchedTensors",
|
|
"MultiModalDataBuiltins",
|
|
"MultiModalDataDict",
|
|
"MultiModalInputs",
|
|
"MultiModalPlugin",
|
|
"NestedTensors",
|
|
"MULTIMODAL_REGISTRY",
|
|
"MultiModalRegistry",
|
|
]
|