(self, model: ModelPatcher)
| 53 | ) |
| 54 | |
| 55 | def patch(self, model: ModelPatcher): |
| 56 | new_model = model.clone() |
| 57 | transformer_options = new_model.model_options["transformer_options"] |
| 58 | transformer_options["run_vx"] = False |
| 59 | transformer_options["a2v_cross_attn"] = False |
| 60 | transformer_options["v2a_cross_attn"] = False |
| 61 | return (new_model,) |
| 62 | |
| 63 | |
| 64 | @comfy_node(name="LTXVAudioOnlyEmptyVideoLatent") |
nothing calls this directly
no outgoing calls
no test coverage detected