From 1c99734e5abe0bb8169027155c62c54b9eb9ea47 Mon Sep 17 00:00:00 2001 From: Jedrzej Kosinski Date: Tue, 31 Dec 2024 13:46:55 -0600 Subject: [PATCH] Add missing model_options param (#6296) --- comfy/samplers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comfy/samplers.py b/comfy/samplers.py index cd25bc35..c05e3e08 100644 --- a/comfy/samplers.py +++ b/comfy/samplers.py @@ -224,7 +224,7 @@ def _calc_cond_batch(model: 'BaseModel', conds: list[list[dict]], x_in: torch.Te default_conds.append(default_c) if has_default_conds: - finalize_default_conds(model, hooked_to_run, default_conds, x_in, timestep) + finalize_default_conds(model, hooked_to_run, default_conds, x_in, timestep, model_options) model.current_patcher.prepare_state(timestep)