feat(vllm-omni): add MiniMax-H3 request adapter - #13708
Draft
furionw wants to merge 1 commit into
Draft
Conversation
furionw
force-pushed
the
qiwa/omni-minimax-h3-adapter
branch
from
August 24, 2026 03:15
03e7c26 to
e7c2df4
Compare
furionw
force-pushed
the
qiwa/omni-minimax-h3-adapter
branch
from
August 24, 2026 03:29
e7c2df4 to
f7d71e0
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Based on #13707.
Why
MiniMax-H3 is available in Dynamo's pinned vLLM-Omni dependency, but Dynamo does not express its startup or request contract. H3 requires model-aware 24-FPS and shape defaults, task inference across two checkpoint partitions, H3-specific sampling controls, and strict reference validation. These behaviors belong in a model adapter so generic video generation remains unchanged.
What Change
classDiagram OmniConfig --> BaseOmniHandler : supplies H3 startup controls BaseOmniHandler --> AsyncOmni : constructs combined H3 pipeline OmniHandler --> OmniDiffusionSamplingParams : maps request controls OmniHandler --> OmniTextPrompt : attaches H3 reference lists note for OmniHandler "Applies model-aware H3 defaults and task contract"Test Plan