Update block.py
Browse files
block.py
CHANGED
@@ -141,6 +141,12 @@ class SDXLDiffDiffDenoiseLoopBeforeDenoiser(PipelineBlock):
|
|
141 |
"Step within the denoising loop for differential diffusion that prepare the latent input for the denoiser"
|
142 |
)
|
143 |
|
|
|
|
|
|
|
|
|
|
|
|
|
144 |
@property
|
145 |
def intermediates_inputs(self) -> List[str]:
|
146 |
return [
|
|
|
141 |
"Step within the denoising loop for differential diffusion that prepare the latent input for the denoiser"
|
142 |
)
|
143 |
|
144 |
+
@property
|
145 |
+
def inputs(self) -> List[Tuple[str, Any]]:
|
146 |
+
return [
|
147 |
+
InputParam("denoising_start"),
|
148 |
+
]
|
149 |
+
|
150 |
@property
|
151 |
def intermediates_inputs(self) -> List[str]:
|
152 |
return [
|