Migrate text2video models to use unified runtime API - #444
Merged
gtong-nv merged 6 commits intoAug 11, 2026
Conversation
Contributor
Greptile SummaryThe PR migrates the text-to-video demos onto the unified runtime and shared WebRTC serving lifecycle.
Confidence Score: 5/5The PR appears safe to merge because no blocking failure remains in the eligible follow-up review scope. No blocking failure remains. Important Files Changed
Sequence DiagramsequenceDiagram
participant User
participant UI as CLI / Web UI
participant Adapter as T2VDemoAdapter
participant Runtime as T2VRuntime
participant Session as T2VSession
participant Output as MP4 / WebRTC
User->>UI: Select backend and submit prompt
UI->>Adapter: DemoSpec + InferenceConfig
Adapter->>Runtime: Create selected pipeline
Runtime->>Session: Start finite rollout
loop Autoregressive blocks
Session->>Session: Generate and finalize block
Session-->>Output: StepResult video chunk
end
Session->>Output: Finalize recorded artifact
Output-->>User: Replay, stream, or download
Reviews (4): Last reviewed commit: "fix precommit" | Re-trigger Greptile |
gtong-nv
force-pushed
the
dev/gtong/t2v-runtime-api
branch
from
August 11, 2026 20:27
2db19d8 to
9156b2f
Compare
Signed-off-by: Gangzheng Tong <gtong@nvidia.com>
Signed-off-by: Gangzheng Tong <gtong@nvidia.com>
Signed-off-by: Gangzheng Tong <gtong@nvidia.com>
Signed-off-by: Gangzheng Tong <gtong@nvidia.com>
Signed-off-by: Gangzheng Tong <gtong@nvidia.com>
gtong-nv
force-pushed
the
dev/gtong/t2v-runtime-api
branch
from
August 11, 2026 22:00
9156b2f to
5d9f1a3
Compare
gtong-nv
force-pushed
the
dev/gtong/t2v-runtime-api
branch
from
August 11, 2026 22:04
5d9f1a3 to
f3d5fad
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.
CLI / Web UI
↓
DemoSpec + InferenceConfig
↓
T2VDemoAdapter
↓
T2VRuntime (one selected heavyweight pipeline)
↓
T2VSession (one finite prompt rollout)
↓
StepResult video chunks
├─ replay: shared MP4 output path
└─ WebRTC: shared session manager, encoder, transport, UI