Skip to content

vllm.multimodal.parse

Classes:

Functions:

Attributes:

EmbeddingFieldRole = Literal['values', 'metadata'] module-attribute

What a field of a pre-computed-embedding input carries.

"values" is the embedding tensor itself; "metadata" is a key that sizes the prompt's placeholder range. The distinction is what lets one declaration serve both an ordinary request (everything present) and an EC consumer (embeddings arrive through the connector, metadata still in the request).

MultiModalUUIDItems = dict[str, Sequence[str | None]] module-attribute

A normalized MultiModalUUIDDict such that each entry corresponds to a list.

DictEmbeddingItems

Bases: ModalityDataItems[Mapping[str, Tensor], Mapping[str, Tensor]]

Base class for data items that are expressed as a dictionary of tensors.

Usually, the dictionary keys correspond to the outputs of HF processor.

Methods:

Source code in vllm/multimodal/parse.py
class DictEmbeddingItems(
    ModalityDataItems[Mapping[str, torch.Tensor], Mapping[str, torch.Tensor]]
):
    """
    Base class for data items that are expressed as a dictionary of tensors.

    Usually, the dictionary keys correspond to the outputs of HF processor.
    """

    def __init__(
        self,
        data: Mapping[str, torch.Tensor],
        modality: str,
        required_fields: Set[str],
        fields_factory: Callable[
            [Mapping[str, torch.Tensor]],
            Mapping[str, MultiModalFieldConfig],
        ],
        optional_fields: Set[str] = frozenset(),
    ) -> None:
        """
        Args:
            data: The dictionary of tensors for this modality.
            modality: The modality these items belong to.
            required_fields: Fields `data` must contain.
            fields_factory: Builds the field config from the data.
            optional_fields: Fields `data` may omit. Which fields these are is
                the caller's decision -- see
                `MultiModalDataParser.embedding_field_sets`, where a deployment
                that receives embeddings through an EC connector makes the
                embeddings optional. They still need a field config, since they
                are used whenever they *are* supplied.
        """
        from transformers.feature_extraction_utils import BatchFeature

        super().__init__(data, modality)

        # Nothing required would leave nothing to size the placeholder range
        # from, so the item would parse into zero entries and silently produce a
        # wrong prompt instead of failing here.
        if not required_fields:
            raise ValueError(
                f"Cannot parse {modality!r} embeddings: every declared field is "
                f"optional ({sorted(optional_fields)}), so nothing is left to "
                "size the placeholder range."
            )

        declared_fields = set(required_fields) | set(optional_fields)

        missing_required_data_keys = set(required_fields) - data.keys()
        if missing_required_data_keys:
            data_keys = set(data.keys())
            msg = (
                f"The data should contain the fields: {set(required_fields)}, "
                f"but only found the following keys: {data_keys}"
            )
            raise ValueError(msg)

        fields_config = fields_factory(data)
        # Check every declared field, not just the required ones: an optional
        # field still needs a config for when it is supplied.
        missing_required_fields = declared_fields - fields_config.keys()
        if missing_required_fields:
            fields = set(fields_config.keys())
            msg = f"{declared_fields=} should be a subset of {fields=}"
            raise ValueError(msg)

        self.fields_config = fields_config
        self.required_fields = set(required_fields)

        self._kwargs = MultiModalKwargsItems.from_hf_inputs(
            BatchFeature(dict(data)),
            fields_config,
        )

    def get_count(self) -> int:
        return len(self._kwargs[self.modality])

    def get(self, index: int) -> Mapping[str, torch.Tensor]:
        return self._kwargs[self.modality][index].get_data()

    def get_processor_data(self) -> Mapping[str, object]:
        return {}

    def get_passthrough_data(self) -> Mapping[str, object]:
        return self.data

__init__(data, modality, required_fields, fields_factory, optional_fields=frozenset())

Parameters:

  • data

    (Mapping[str, Tensor]) –

    The dictionary of tensors for this modality.

  • modality

    (str) –

    The modality these items belong to.

  • required_fields

    (Set[str]) –

    Fields data must contain.

  • fields_factory

    (Callable[[Mapping[str, Tensor]], Mapping[str, MultiModalFieldConfig]]) –

    Builds the field config from the data.

  • optional_fields

    (Set[str], default: frozenset() ) –

    Fields data may omit. Which fields these are is the caller's decision -- see MultiModalDataParser.embedding_field_sets, where a deployment that receives embeddings through an EC connector makes the embeddings optional. They still need a field config, since they are used whenever they are supplied.

Source code in vllm/multimodal/parse.py
def __init__(
    self,
    data: Mapping[str, torch.Tensor],
    modality: str,
    required_fields: Set[str],
    fields_factory: Callable[
        [Mapping[str, torch.Tensor]],
        Mapping[str, MultiModalFieldConfig],
    ],
    optional_fields: Set[str] = frozenset(),
) -> None:
    """
    Args:
        data: The dictionary of tensors for this modality.
        modality: The modality these items belong to.
        required_fields: Fields `data` must contain.
        fields_factory: Builds the field config from the data.
        optional_fields: Fields `data` may omit. Which fields these are is
            the caller's decision -- see
            `MultiModalDataParser.embedding_field_sets`, where a deployment
            that receives embeddings through an EC connector makes the
            embeddings optional. They still need a field config, since they
            are used whenever they *are* supplied.
    """
    from transformers.feature_extraction_utils import BatchFeature

    super().__init__(data, modality)

    # Nothing required would leave nothing to size the placeholder range
    # from, so the item would parse into zero entries and silently produce a
    # wrong prompt instead of failing here.
    if not required_fields:
        raise ValueError(
            f"Cannot parse {modality!r} embeddings: every declared field is "
            f"optional ({sorted(optional_fields)}), so nothing is left to "
            "size the placeholder range."
        )

    declared_fields = set(required_fields) | set(optional_fields)

    missing_required_data_keys = set(required_fields) - data.keys()
    if missing_required_data_keys:
        data_keys = set(data.keys())
        msg = (
            f"The data should contain the fields: {set(required_fields)}, "
            f"but only found the following keys: {data_keys}"
        )
        raise ValueError(msg)

    fields_config = fields_factory(data)
    # Check every declared field, not just the required ones: an optional
    # field still needs a config for when it is supplied.
    missing_required_fields = declared_fields - fields_config.keys()
    if missing_required_fields:
        fields = set(fields_config.keys())
        msg = f"{declared_fields=} should be a subset of {fields=}"
        raise ValueError(msg)

    self.fields_config = fields_config
    self.required_fields = set(required_fields)

    self._kwargs = MultiModalKwargsItems.from_hf_inputs(
        BatchFeature(dict(data)),
        fields_config,
    )

EmbeddingItems

Bases: ModalityDataItems[Tensor | list[Tensor], Tensor]

Base class for data items that are expressed as a batched embedding tensor, or a list of embedding tensors (one per item).

Source code in vllm/multimodal/parse.py
class EmbeddingItems(
    ModalityDataItems[torch.Tensor | list[torch.Tensor], torch.Tensor]
):
    """
    Base class for data items that are expressed as a batched embedding tensor,
    or a list of embedding tensors (one per item).
    """

    def __init__(
        self,
        data: torch.Tensor | list[torch.Tensor],
        modality: str,
        expected_hidden_size: int | None = None,
    ) -> None:
        super().__init__(data, modality)

        # Validate ndim first (before hidden_size which depends on correct ndim)
        self._validate_ndim()

        # Validate hidden dimension if expected size is provided
        if expected_hidden_size is not None:
            self._validate_hidden_size(expected_hidden_size)

    def _validate_ndim(self) -> None:
        """Validate that embedding tensors have correct ndim (2D or 3D)."""
        if isinstance(self.data, torch.Tensor):
            validate_embedding_ndim(self.data, self.modality)
        else:
            # List of tensors: each should be 2D (seq_len, hidden_size)
            for idx, tensor in enumerate(self.data):
                if tensor.ndim != 2:
                    raise ValueError(
                        f"{self.modality.capitalize()} embedding [{idx}] must be "
                        f"2D (seq_len, hidden_size), got {tensor.ndim}D tensor "
                        f"with shape {tuple(tensor.shape)}"
                    )

    def _validate_hidden_size(self, expected_hidden_size: int) -> None:
        """Validate that embedding hidden dimension matches expected size.

        This validates hidden dimensions to prevent vulnerabilities: Embeddings
        with correct ndim but wrong hidden dimension could bypass initial
        checks and cause crashes during model inference when dimensions don't match.
        """
        if isinstance(self.data, torch.Tensor):
            # Batched tensor: shape is (batch, seq_len, hidden_size)
            actual_hidden_size = self.data.shape[-1]
            if actual_hidden_size != expected_hidden_size:
                raise ValueError(
                    f"{self.modality.capitalize()} embedding hidden dimension "
                    f"mismatch: got {actual_hidden_size}, but model expects "
                    f"{expected_hidden_size}. Embedding shape: {tuple(self.data.shape)}"
                )
        else:
            # List of tensors: each has shape (seq_len, hidden_size)
            for idx, tensor in enumerate(self.data):
                actual_hidden_size = tensor.shape[-1]
                if actual_hidden_size != expected_hidden_size:
                    raise ValueError(
                        f"{self.modality.capitalize()} embedding [{idx}] hidden "
                        f"dimension mismatch: got {actual_hidden_size}, but model "
                        f"expects {expected_hidden_size}. "
                        f"Embedding shape: {tuple(tensor.shape)}"
                    )

    def _unwrap(
        self, item: torch.Tensor | MediaWithBytes[torch.Tensor]
    ) -> torch.Tensor:
        """Extract media from wrapper if present."""
        return item.media if isinstance(item, MediaWithBytes) else item

    def get_count(self) -> int:
        return len(self.data)

    def get(self, index: int) -> torch.Tensor:
        return self._unwrap(self.data[index])

    def get_processor_data(self) -> Mapping[str, object]:
        return {}

    def get_passthrough_data(self) -> Mapping[str, object]:
        return {f"{self.modality}_embeds": self.data}

    def get_feature_size(self, item_idx: int) -> int:
        return len(self.get(item_idx))

_unwrap(item)

Extract media from wrapper if present.

Source code in vllm/multimodal/parse.py
def _unwrap(
    self, item: torch.Tensor | MediaWithBytes[torch.Tensor]
) -> torch.Tensor:
    """Extract media from wrapper if present."""
    return item.media if isinstance(item, MediaWithBytes) else item

_validate_hidden_size(expected_hidden_size)

Validate that embedding hidden dimension matches expected size.

This validates hidden dimensions to prevent vulnerabilities: Embeddings with correct ndim but wrong hidden dimension could bypass initial checks and cause crashes during model inference when dimensions don't match.

Source code in vllm/multimodal/parse.py
def _validate_hidden_size(self, expected_hidden_size: int) -> None:
    """Validate that embedding hidden dimension matches expected size.

    This validates hidden dimensions to prevent vulnerabilities: Embeddings
    with correct ndim but wrong hidden dimension could bypass initial
    checks and cause crashes during model inference when dimensions don't match.
    """
    if isinstance(self.data, torch.Tensor):
        # Batched tensor: shape is (batch, seq_len, hidden_size)
        actual_hidden_size = self.data.shape[-1]
        if actual_hidden_size != expected_hidden_size:
            raise ValueError(
                f"{self.modality.capitalize()} embedding hidden dimension "
                f"mismatch: got {actual_hidden_size}, but model expects "
                f"{expected_hidden_size}. Embedding shape: {tuple(self.data.shape)}"
            )
    else:
        # List of tensors: each has shape (seq_len, hidden_size)
        for idx, tensor in enumerate(self.data):
            actual_hidden_size = tensor.shape[-1]
            if actual_hidden_size != expected_hidden_size:
                raise ValueError(
                    f"{self.modality.capitalize()} embedding [{idx}] hidden "
                    f"dimension mismatch: got {actual_hidden_size}, but model "
                    f"expects {expected_hidden_size}. "
                    f"Embedding shape: {tuple(tensor.shape)}"
                )

_validate_ndim()

Validate that embedding tensors have correct ndim (2D or 3D).

Source code in vllm/multimodal/parse.py
def _validate_ndim(self) -> None:
    """Validate that embedding tensors have correct ndim (2D or 3D)."""
    if isinstance(self.data, torch.Tensor):
        validate_embedding_ndim(self.data, self.modality)
    else:
        # List of tensors: each should be 2D (seq_len, hidden_size)
        for idx, tensor in enumerate(self.data):
            if tensor.ndim != 2:
                raise ValueError(
                    f"{self.modality.capitalize()} embedding [{idx}] must be "
                    f"2D (seq_len, hidden_size), got {tensor.ndim}D tensor "
                    f"with shape {tuple(tensor.shape)}"
                )

ModalityDataItems

Bases: ABC, Generic[_T, _I]

Represents data items for a modality in MultiModalDataItems.

Methods:

Source code in vllm/multimodal/parse.py
class ModalityDataItems(ABC, Generic[_T, _I]):
    """
    Represents data items for a modality in
    [`MultiModalDataItems`][vllm.multimodal.parse.MultiModalDataItems].
    """

    def __init__(self, data: _T, modality: str) -> None:
        super().__init__()

        self.data: _T = data
        self.modality = modality

    def __repr__(self) -> str:
        return f"{type(self).__name__}(modality={self.modality!r}, len={len(self)})"

    def __len__(self) -> int:
        return self.get_count()

    def __getitem__(self, index: int) -> _I:
        return self.get(index)

    if TYPE_CHECKING:
        # Auto-generated
        def __iter__(self) -> Iterator[_I]: ...

    @abstractmethod
    def get_count(self) -> int:
        """Get the number of data items."""
        raise NotImplementedError

    @abstractmethod
    def get(self, index: int) -> _I:
        """Get a data item by its index."""
        raise NotImplementedError

    def get_all(self) -> list[_I]:
        """Get all data items."""
        return [self.get(idx) for idx in range(self.get_count())]

    def get_item_for_hash(self, index: int) -> object:
        return self.get(index)

    def get_all_items_for_hash(self) -> list[object]:
        return [self.get_item_for_hash(idx) for idx in range(self.get_count())]

    @abstractmethod
    def get_processor_data(self) -> Mapping[str, object]:
        """Get the data to pass to the HF processor."""
        raise NotImplementedError

    @abstractmethod
    def get_passthrough_data(self) -> Mapping[str, object]:
        """Get the data to pass directly to the model."""
        raise NotImplementedError

get(index) abstractmethod

Get a data item by its index.

Source code in vllm/multimodal/parse.py
@abstractmethod
def get(self, index: int) -> _I:
    """Get a data item by its index."""
    raise NotImplementedError

get_all()

Get all data items.

Source code in vllm/multimodal/parse.py
def get_all(self) -> list[_I]:
    """Get all data items."""
    return [self.get(idx) for idx in range(self.get_count())]

get_count() abstractmethod

Get the number of data items.

Source code in vllm/multimodal/parse.py
@abstractmethod
def get_count(self) -> int:
    """Get the number of data items."""
    raise NotImplementedError

get_passthrough_data() abstractmethod

Get the data to pass directly to the model.

Source code in vllm/multimodal/parse.py
@abstractmethod
def get_passthrough_data(self) -> Mapping[str, object]:
    """Get the data to pass directly to the model."""
    raise NotImplementedError

get_processor_data() abstractmethod

Get the data to pass to the HF processor.

Source code in vllm/multimodal/parse.py
@abstractmethod
def get_processor_data(self) -> Mapping[str, object]:
    """Get the data to pass to the HF processor."""
    raise NotImplementedError

MultiModalDataItems

Bases: UserDict[str, ModalityDataItems[Any, Any]]

A normalized MultiModalDataDict such that each entry corresponds to a list.

Methods:

  • get_all_counts

    Get the number of items belonging to each modality.

  • get_count

    Get the number of data items belonging to a modality.

  • get_items

    Get the data items belonging to a modality,

  • select

    Construct a new MultiModalDataItems instance containing only the

Source code in vllm/multimodal/parse.py
class MultiModalDataItems(UserDict[str, ModalityDataItems[Any, Any]]):
    """
    A normalized [`MultiModalDataDict`][vllm.inputs.MultiModalDataDict]
    such that each entry corresponds to a list.
    """

    def select(self, modalities: Set[str]):
        """
        Construct a new `MultiModalDataItems` instance containing only the
        selected modalities.
        """
        return MultiModalDataItems(
            {modality: self[modality] for modality in modalities}
        )

    def get_count(self, modality: str, *, strict: bool = True) -> int:
        """
        Get the number of data items belonging to a modality.

        If `strict=False`, return `0` instead of raising [`KeyError`][]
        even if the modality is not found.
        """
        if modality not in self:
            if strict:
                available_modalities = set(self.keys())
                raise KeyError(
                    f"Modality {modality!r} not found. "
                    f"Available modalities: {available_modalities}"
                )

            return 0

        return self[modality].get_count()

    def get_all_counts(self) -> Mapping[str, int]:
        """Get the number of items belonging to each modality."""
        return {m: items.get_count() for m, items in self.items()}

    def get_items(
        self,
        modality: str,
        typ: type[_D] | tuple[type[_D], ...],
    ) -> _D:
        """
        Get the data items belonging to a modality,
        requiring that they belong to a certain type.
        """
        if modality not in self:
            available_modalities = set(self.keys())
            raise KeyError(
                f"Modality {modality!r} not found. "
                f"Available modalities: {available_modalities}"
            )

        items = self[modality]
        if not isinstance(items, typ):
            raise TypeError(
                f"Invalid type of data items for {modality=}. "
                f"Expected type: {typ}, but "
                f"found type: {type(items)}"
            )

        return items  # type: ignore[return-value]

get_all_counts()

Get the number of items belonging to each modality.

Source code in vllm/multimodal/parse.py
def get_all_counts(self) -> Mapping[str, int]:
    """Get the number of items belonging to each modality."""
    return {m: items.get_count() for m, items in self.items()}

get_count(modality, *, strict=True)

Get the number of data items belonging to a modality.

If strict=False, return 0 instead of raising KeyError even if the modality is not found.

Source code in vllm/multimodal/parse.py
def get_count(self, modality: str, *, strict: bool = True) -> int:
    """
    Get the number of data items belonging to a modality.

    If `strict=False`, return `0` instead of raising [`KeyError`][]
    even if the modality is not found.
    """
    if modality not in self:
        if strict:
            available_modalities = set(self.keys())
            raise KeyError(
                f"Modality {modality!r} not found. "
                f"Available modalities: {available_modalities}"
            )

        return 0

    return self[modality].get_count()

get_items(modality, typ)

Get the data items belonging to a modality, requiring that they belong to a certain type.

Source code in vllm/multimodal/parse.py
def get_items(
    self,
    modality: str,
    typ: type[_D] | tuple[type[_D], ...],
) -> _D:
    """
    Get the data items belonging to a modality,
    requiring that they belong to a certain type.
    """
    if modality not in self:
        available_modalities = set(self.keys())
        raise KeyError(
            f"Modality {modality!r} not found. "
            f"Available modalities: {available_modalities}"
        )

    items = self[modality]
    if not isinstance(items, typ):
        raise TypeError(
            f"Invalid type of data items for {modality=}. "
            f"Expected type: {typ}, but "
            f"found type: {type(items)}"
        )

    return items  # type: ignore[return-value]

select(modalities)

Construct a new MultiModalDataItems instance containing only the selected modalities.

Source code in vllm/multimodal/parse.py
def select(self, modalities: Set[str]):
    """
    Construct a new `MultiModalDataItems` instance containing only the
    selected modalities.
    """
    return MultiModalDataItems(
        {modality: self[modality] for modality in modalities}
    )

MultiModalDataParser

Parses MultiModalDataDict into MultiModalDataItems.

Parameters:

  • target_sr

    (float, default: None ) –

    Enables automatic resampling of audio items to the model's expected sampling rate.

  • target_channels

    (int, default: None ) –

    Target number of audio channels. If provided, normalizes audio to this many channels (e.g., 1 for mono). If None, audio channels are passed through unchanged.

  • expected_hidden_size

    (int, default: None ) –

    Expected hidden dimension for embedding inputs. If provided, validates that user-supplied embeddings have the correct hidden size to prevent crashes during model inference.

  • allow_missing_mm_embeddings

    (bool, default: False ) –

    Whether pre-computed embedding tensors may be absent from the request on a disaggregated consumer. Derived by BaseProcessingInfo.allow_missing_mm_embeddings.

Methods:

Attributes:

Source code in vllm/multimodal/parse.py
class MultiModalDataParser:
    """
    Parses [`MultiModalDataDict`][vllm.inputs.MultiModalDataDict]
    into [`MultiModalDataItems`][vllm.multimodal.parse.MultiModalDataItems].

    Args:
        target_sr (float, optional): Enables automatic resampling of audio
            items to the model's expected sampling rate.
        target_channels (int, optional): Target number of audio channels.
            If provided, normalizes audio to this many channels (e.g., 1 for mono).
            If None, audio channels are passed through unchanged.
        expected_hidden_size (int, optional): Expected hidden dimension for
            embedding inputs. If provided, validates that user-supplied
            embeddings have the correct hidden size to prevent crashes
            during model inference.
        allow_missing_mm_embeddings (bool): Whether pre-computed embedding
            tensors may be absent from the request on a disaggregated consumer.
            Derived by `BaseProcessingInfo.allow_missing_mm_embeddings`.
    """

    embedding_fields: Mapping[str, Mapping[str, EmbeddingFieldRole]] = {}
    """Per-modality field roles for pre-computed-embedding inputs.

    Declared here rather than inside `_parse_*_data` so an EC producer can read
    it too: on a producer the request carries real media, so the branch that
    builds `DictEmbeddingItems` never runs, yet the producer still has to know
    which processed keys to publish. One declaration, both sides, no drift.

    A modality absent from this mapping can only be sent whole in the request.
    """

    @classmethod
    def placeholder_metadata_fields(cls, modality: str) -> set[str]:
        """The keys that size `modality`'s placeholder range.

        What an EC producer publishes alongside the embedding, and what a
        consumer keeps requiring once the embedding itself is gone.
        """
        return {
            field
            for field, role in cls.embedding_fields.get(modality, {}).items()
            if role == "metadata"
        }

    def embedding_field_sets(self, modality: str) -> tuple[set[str], set[str]]:
        """`modality`'s (required, optional) fields for this deployment.

        Resolves the static roles in `embedding_fields` against where the
        embeddings actually come from: on an EC consumer they arrive through the
        connector, so the request may omit them; anywhere else a request that
        claims to carry pre-computed embeddings has to actually carry them.
        """
        metadata = self.placeholder_metadata_fields(modality)
        values = set(self.embedding_fields.get(modality, {})) - metadata
        if self.allow_missing_mm_embeddings:
            return metadata, values
        return metadata | values, set()

    def __init__(
        self,
        *,
        target_sr: float | None = None,
        target_channels: int | None = None,
        audio_resample_method: Literal["pyav", "scipy", "soxr"] = "pyav",
        video_needs_metadata: bool = False,
        expected_hidden_size: int | None = None,
        allow_missing_mm_embeddings: bool = False,
    ) -> None:
        super().__init__()

        self.allow_missing_mm_embeddings = allow_missing_mm_embeddings

        self.audio_resampler = AudioResampler(
            target_sr=target_sr,
            method=audio_resample_method,
        )
        self.target_channels = target_channels
        self.video_needs_metadata = video_needs_metadata
        self.expected_hidden_size = expected_hidden_size

    @classmethod
    def is_embeddings(
        cls, data: object
    ) -> TypeGuard[torch.Tensor | list[torch.Tensor]]:
        if isinstance(data, torch.Tensor):
            return data.ndim == 3
        if is_list_of(data, torch.Tensor) and len(data) > 0:
            return data[0].ndim == 2  # type: ignore[index]

        return False

    def _get_audio_with_sr(
        self,
        audio: AudioItem,
    ) -> tuple[np.ndarray, float | None]:
        if isinstance(audio, tuple):
            return audio
        if isinstance(audio, list):
            return np.array(audio), None
        if isinstance(audio, np.ndarray):
            return audio, None
        if isinstance(audio, torch.Tensor):
            return audio.numpy(), None

        assert_never(audio)

    def _get_video_with_metadata(
        self,
        video: VideoItem,
    ) -> tuple[np.ndarray | MediaWithBytes[np.ndarray], dict[str, Any] | None]:
        if isinstance(video, MediaWithBytes):
            new_video, metadata = self._get_video_with_metadata(video.media)
            return MediaWithBytes(new_video, video.original_bytes), metadata
        if isinstance(video, tuple):
            return video
        if isinstance(video, list):
            return np.array(video), None
        if isinstance(video, np.ndarray):
            return video, None
        if isinstance(video, torch.Tensor):
            return video.numpy(), None

        assert_never(video)

    def _parse_audio_data(
        self,
        data: ModalityData[AudioItem],
    ) -> ModalityDataItems[Any, Any] | None:
        if data is None:
            return None

        if self.is_embeddings(data):
            return AudioEmbeddingItems(data, self.expected_hidden_size)

        data_items: list[AudioItem]
        if (
            (is_list_of(data, float) and len(data) > 0)
            or (isinstance(data, (np.ndarray, torch.Tensor)) and data.ndim == 1)
            or isinstance(data, tuple)
        ):
            data_items = [data]
        elif isinstance(data, (np.ndarray, torch.Tensor)):
            data_items = [elem for elem in data]
        else:
            data_items = data  # type: ignore[assignment]

        new_audios = list[np.ndarray]()
        for data_item in data_items:
            audio, orig_sr = self._get_audio_with_sr(data_item)
            if orig_sr is None:
                new_audio = audio
            else:
                new_audio = self.audio_resampler.resample(audio, orig_sr=orig_sr)

            # Apply channel normalization if target_channels is set
            if self.target_channels is not None:
                spec = AudioSpec(target_channels=self.target_channels)
                new_audio = normalize_audio(new_audio, spec)

            new_audios.append(new_audio)

        return AudioProcessorItems(new_audios)

    def _parse_image_data(
        self,
        data: ModalityData[ImageItem],
    ) -> ModalityDataItems[Any, Any] | None:
        if data is None:
            return None

        if self.is_embeddings(data):
            return ImageEmbeddingItems(data, self.expected_hidden_size)

        if isinstance(data, (PILImage.Image, MediaWithBytes)) or (
            isinstance(data, (np.ndarray, torch.Tensor)) and data.ndim == 3
        ):
            data_items = [data]
        elif isinstance(data, (np.ndarray, torch.Tensor)):
            data_items = [elem for elem in data]
        else:
            data_items = data

        data_items = [
            convert_image_mode(normalize_image(item), "RGB")
            if isinstance(item, PILImage.Image)
            else item
            for item in data_items
        ]

        return ImageProcessorItems(data_items)

    def _parse_video_data(
        self,
        data: ModalityData[VideoItem],
    ) -> ModalityDataItems[Any, Any] | None:
        if data is None:
            return None

        if self.is_embeddings(data):
            return VideoEmbeddingItems(data, self.expected_hidden_size)

        data_items: list[VideoItem]
        if (is_list_of(data, PILImage.Image) and len(data) > 0) or (
            isinstance(data, (np.ndarray, torch.Tensor)) and data.ndim == 4
        ):
            data_items = [data]
        elif isinstance(data, (np.ndarray, torch.Tensor)):
            data_items = [elem for elem in data]
        elif isinstance(data, tuple) and len(data) == 2:
            data_items = [data]
        else:
            data_items = data  # type: ignore[assignment]

        new_videos = list[
            np.ndarray
            | MediaWithBytes[np.ndarray]
            | tuple[np.ndarray | MediaWithBytes[np.ndarray], dict[str, Any]]
        ]()
        metadata_lst: list[dict[str, Any] | None] = []
        for data_item in data_items:
            video, metadata = self._get_video_with_metadata(data_item)
            if self.video_needs_metadata:
                if metadata is None:
                    raise ValueError(
                        "Video metadata is required but not found in mm input. "
                        "Please check your video input in `multi_modal_data`"
                    )
                new_videos.append((video, metadata))
            else:
                new_videos.append(video)
            metadata_lst.append(metadata)

        return VideoProcessorItems(new_videos, metadata=metadata_lst)

    def _parse_vision_chunk_data(
        self,
        data: ModalityData[Any],
    ) -> ModalityDataItems[Any, Any] | None:
        """Parse vision chunk data (unified image and video chunks)."""
        if data is None:
            return None

        if self.is_embeddings(data):
            raise ValueError("Do not support embedding data for vision_chunk right now")

        if isinstance(data, dict):
            data = [data]

        return VisionChunkProcessorItems(data)

    def _get_subparsers(self) -> Mapping[str, ModalityDataParser]:
        return {
            "audio": self._parse_audio_data,
            "image": self._parse_image_data,
            "video": self._parse_video_data,
            "vision_chunk": self._parse_vision_chunk_data,
        }

    def parse_mm_data(self, mm_data: MultiModalDataDict) -> MultiModalDataItems:
        subparsers = self._get_subparsers()

        mm_items = MultiModalDataItems()
        for k, v in mm_data.items():
            if k not in subparsers:
                raise ValueError(f"Unsupported modality: {k}")

            # ignore empty embedding data
            if (parsed_data := subparsers[k](v)) is not None:
                mm_items[k] = parsed_data

        return mm_items

embedding_fields = {} class-attribute instance-attribute

Per-modality field roles for pre-computed-embedding inputs.

Declared here rather than inside _parse_*_data so an EC producer can read it too: on a producer the request carries real media, so the branch that builds DictEmbeddingItems never runs, yet the producer still has to know which processed keys to publish. One declaration, both sides, no drift.

A modality absent from this mapping can only be sent whole in the request.

_parse_vision_chunk_data(data)

Parse vision chunk data (unified image and video chunks).

Source code in vllm/multimodal/parse.py
def _parse_vision_chunk_data(
    self,
    data: ModalityData[Any],
) -> ModalityDataItems[Any, Any] | None:
    """Parse vision chunk data (unified image and video chunks)."""
    if data is None:
        return None

    if self.is_embeddings(data):
        raise ValueError("Do not support embedding data for vision_chunk right now")

    if isinstance(data, dict):
        data = [data]

    return VisionChunkProcessorItems(data)

embedding_field_sets(modality)

modality's (required, optional) fields for this deployment.

Resolves the static roles in embedding_fields against where the embeddings actually come from: on an EC consumer they arrive through the connector, so the request may omit them; anywhere else a request that claims to carry pre-computed embeddings has to actually carry them.

Source code in vllm/multimodal/parse.py
def embedding_field_sets(self, modality: str) -> tuple[set[str], set[str]]:
    """`modality`'s (required, optional) fields for this deployment.

    Resolves the static roles in `embedding_fields` against where the
    embeddings actually come from: on an EC consumer they arrive through the
    connector, so the request may omit them; anywhere else a request that
    claims to carry pre-computed embeddings has to actually carry them.
    """
    metadata = self.placeholder_metadata_fields(modality)
    values = set(self.embedding_fields.get(modality, {})) - metadata
    if self.allow_missing_mm_embeddings:
        return metadata, values
    return metadata | values, set()

placeholder_metadata_fields(modality) classmethod

The keys that size modality's placeholder range.

What an EC producer publishes alongside the embedding, and what a consumer keeps requiring once the embedding itself is gone.

Source code in vllm/multimodal/parse.py
@classmethod
def placeholder_metadata_fields(cls, modality: str) -> set[str]:
    """The keys that size `modality`'s placeholder range.

    What an EC producer publishes alongside the embedding, and what a
    consumer keeps requiring once the embedding itself is gone.
    """
    return {
        field
        for field, role in cls.embedding_fields.get(modality, {}).items()
        if role == "metadata"
    }

ProcessorBatchItems

Bases: ModalityDataItems[Sequence[_T], _T]

Base class for data items that are arranged in a list.

Source code in vllm/multimodal/parse.py
class ProcessorBatchItems(ModalityDataItems[Sequence[_T], _T]):
    """Base class for data items that are arranged in a list."""

    def _unwrap(self, item: _T | MediaWithBytes[_T]) -> _T:
        """Extract media from wrapper if present."""
        return item.media if isinstance(item, MediaWithBytes) else item

    def get_count(self) -> int:
        return len(self.data)

    def get(self, index: int) -> _T:
        return self._unwrap(self.data[index])

    def get_item_for_hash(self, index: int) -> _T | MediaWithBytes[_T]:
        # Return raw item for hashing (preserves original_bytes if present)
        return self.data[index]

    def get_processor_data(self) -> Mapping[str, object]:
        return {f"{self.modality}s": self.get_all()}

    def get_passthrough_data(self) -> Mapping[str, object]:
        return {}

_unwrap(item)

Extract media from wrapper if present.

Source code in vllm/multimodal/parse.py
def _unwrap(self, item: _T | MediaWithBytes[_T]) -> _T:
    """Extract media from wrapper if present."""
    return item.media if isinstance(item, MediaWithBytes) else item

VisionChunkProcessorItems

Bases: ProcessorBatchItems[Any]

Processor items for vision chunks (unified image and video chunks).

Source code in vllm/multimodal/parse.py
class VisionChunkProcessorItems(ProcessorBatchItems[Any]):
    """Processor items for vision chunks (unified image and video chunks)."""

    def __init__(self, data: Sequence[Any]) -> None:
        super().__init__(data, "vision_chunk")

validate_embedding_ndim(tensor, modality, index=None)

Validate tensor ndim for multimodal embeddings.

Single embeddings should be 2D (seq_len, hidden_size). Batched embeddings should be 3D (batch, seq_len, hidden_size).

Parameters:

  • tensor

    (Tensor) –

    The tensor to validate.

  • modality

    (str) –

    The modality name for error messages (e.g., "image", "audio").

  • index

    (int | None, default: None ) –

    Optional index for list items, included in error messages.

Source code in vllm/multimodal/parse.py
def validate_embedding_ndim(
    tensor: torch.Tensor,
    modality: str,
    index: int | None = None,
) -> None:
    """Validate tensor ndim for multimodal embeddings.

    Single embeddings should be 2D (seq_len, hidden_size).
    Batched embeddings should be 3D (batch, seq_len, hidden_size).

    Args:
        tensor: The tensor to validate.
        modality: The modality name for error messages (e.g., "image", "audio").
        index: Optional index for list items, included in error messages.
    """
    if tensor.ndim < 2 or tensor.ndim > 3:
        idx_str = f" [{index}]" if index is not None else ""
        raise ValueError(
            f"{modality.capitalize()} embedding{idx_str} must be 2D "
            f"(seq_len, hidden_size) or 3D (batch, seq_len, hidden_size), "
            f"got {tensor.ndim}D tensor with shape {tuple(tensor.shape)}"
        )