MiniMax H3 Enhance-A-Video + Prompt Relay (Advanced EXP)
When Prompt Relay and Enhance-A-Video want the same attention slot
- model
- sigmas
- model
- runtime
- report_json
Here's a failure mode the README calls out directly: two of T8mars' standalone nodes both want to own the same attention entry point, and plugging them both in makes them fight. Prompt Relay patches attention to route local events; Enhance-A-Video (FETA) patches it to compute cross-frame interaction. Stack them naively and one silently wins, or neither works as intended. MiniMaxH3EnhanceAVideoPromptRelayComposerT8Advanced is the combined owner that does both in one authenticated wrapper: Relay performs its local-event attention route first, then FETA scales only the target-video output rows. And crucially - it does not add model forwards. You get both mechanisms for the same number of forwards the Relay alone would have cost.
How to wire it
model connects to the MODEL output of Prompt Relay Conditioning - the tooltip says apply_exp wants at least two active events. If you're on the turbo8_alpha8 sampling profile, apply the corrected Alpha8 bypass LoRA after Relay and before this composer - the pack's wiring rule from the README is explicit about that order (LoRA before the Relay gets actively rejected). sigmas is the exact SIGMAS sent to the sampler. Then the standard EAV knobs: mode, tau (4), progress window, max_workspace_mib (32), g_hard_limit (1.5), and sampling_profile (stock20 - the bound visual/reference task - or turbo8_alpha8, which is strictly limited to T2VA with the corrected 208-hook bypass LoRA).
Modes
disabled preserves Prompt Relay exactly and disables only EAV (that's the "undo the fight" switch). report_only measures FETA after Relay without scaling - the safe first run. apply_exp turns the target-video gain on. Outputs: model, runtime (EAV Audit), report_json.
The honesty caveats
The README's notes on this composer are worth reading before you queue anything: one 736×416×124, 20-step mechanical baseline passed strict media checks, but the VRAM margin landed below the project's 512 MiB gate. So this is not a stable-quality claim, not a 16GB-safety claim, and not an "audio is non-worse" claim. It is the only sanctioned way to run Relay + EAV together - because doing it without the composer is exactly how you get silent attention-patch interference.
Installing it
From MiniMax H3 Audio T8 (T8mars/T8star, GPL-3.0). Manager search MiniMax H3 Audio T8, or:
cd ComfyUI/custom_nodes
git clone https://github.com/T8mars/comfyui-minimax-h3-audio-T8
restart. No forced pip deps; models to models/ by hand. H3 weights' Community License excludes the US, EU, UK, South Korea.
The trap
If you connect a plain model (no Relay) and expect Relay behavior, you'll get silence where local events should fire - this composer is the Relay, it doesn't read one from elsewhere. And sampling_profile isn't decorative: pushing turbo8_alpha8 beyond T2VA is explicitly unsupported, and the corrected Alpha8 bypass LoRA is mandatory for that profile. Wire the profile, wire the LoRA in the right order, and don't stack a second attention patch on top - the composer is meant to be the only one.
Inputs (9)
| Name | Type | Default | Description |
|---|---|---|---|
| model | MODEL | Connect the MODEL output of Prompt Relay Conditioning in apply_exp with at least two active events. For turbo8_alpha8, apply the corrected Alpha8 bypass LoRA after Relay and before this composer. | |
| sigmas | SIGMAS | Connect the exact SIGMAS sent to the sampler. | |
| mode | COMBO | report_only | disabled preserves Prompt Relay exactly and disables only EAV; report_only measures FETA after Relay without scaling; apply_exp enables the target-video gain. |
| tau | FLOAT | 4.00-32–32 | Experimental FETA weight; 4 is a candidate, not an H3 optimum. |
| start_video_progress | FLOAT | 0.000–0.99 | — |
| end_video_progress | FLOAT | 1.000.01–1 | — |
| max_workspace_mib | INT | 324–512 | FETA score-buffer budget only; not total workflow VRAM. |
| g_hard_limit | FLOAT | 1.501–3 | — |
| sampling_profile | COMBO | stock20 | stock20 supports the bound visual/reference task. turbo8_alpha8 is strictly limited to T2VA with the corrected 208-hook bypass LoRA. |
Outputs (3)
| Name | Type | Description |
|---|---|---|
| model | MODEL | — |
| runtime | H3_T8_EAV_RUNTIME | — |
| report_json | STRING | — |