feat(video): add SEF (--last-frame), S2V (--subject-image), model auto-switch#74
Merged
tars90percent merged 2 commits intoMiniMax-AI:mainfrom Apr 10, 2026
Merged
Conversation
…o-switch - Add --last-frame flag for SEF (start-end frame) interpolation mode - Add --subject-image flag for subject reference (S2V-01 character consistency) - Auto-switch model: --last-frame -> Hailuo-02, --subject-image -> S2V-01 - Explicit --model flag always overrides auto-switch - Add apiDocs field - Update description with all available models (T2V/I2V/S2V) - Add last_frame_image and subject_reference to VideoRequest type - Add validation: --last-frame requires --first-frame - Add SEF and S2V examples
…exclusion - Change apiDocs from full URL to path (fixes broken URL in --help) - Remove stray '+' in I2V description - Error when --last-frame and --subject-image are combined (different modes)
Collaborator
|
Thanks! Pushed a fix commit (881d822) before merging:
Apologies for pushing directly rather than requesting changes -- should have let you address these yourself. Will do that next time. |
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.
Changes
--last-frame: Add last frame image for SEF (start-end frame) interpolation mode--subject-image: Add subject reference for character consistency (S2V-01)--modelflag always takes priorityFiles
src/commands/video/generate.tssrc/types/api.ts(add last_frame_image, subject_reference)src/command.ts(apiDocs interface)