[multimodal] Add token support to MultimodalInput #14451
Merged
+357
−5
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request adds support for tokenizer-encoded input (as vectors of token IDs) to the
MultimodalInput
class, enabling more flexible and efficient handling of multimodal data. The update includes new constructors, type checks, getters, and factory functions for token inputs, as well as unit tests to ensure correct behavior and compatibility with existing code paths.MultimodalInput class changes:
TOKENS
type to theMultimodalInput::Type
enum and updated the internalstd::variant
to support storingstd::vector<uint64_t>
as token data. [1] [2]is_tokens()
), getters (get_tokens()
), and safe accessors (try_get_tokens()
) for token inputs, along with static and instance methods for type name conversion. [1] [2] [3] [4] [5]make_token_input
for easily creating token-based inputs.Integration and logging:
MultimodalPrefiller::prefill
to handle both text and token inputs, bypassing tokenization when tokens are provided directly.MultimodalRunner::generate
to include the type name of each input for easier debugging.Tests:
MultimodalInput
.