You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1.**Before the update**: `image` (the input) goes to the immutable inputs dict, while `batch_size` (the intermediate_input) goes to the mutable intermediates dict, and both are available in `block_state`.
@@ -670,7 +699,7 @@ class AutoIPAdapter(AutoPipelineBlocks):
670
699
block_trigger_inputs = ["ip_adapter_image"]
671
700
@property
672
701
def description(self):
673
-
return"Run IP Adapter step if `ip_adapter_image` is provided. This step should be placed before the 'input' step.\n"
702
+
return"Run IP Adapter step if `ip_adapter_image` is provided."
674
703
```
675
704
676
705
Now let's combine these 2 auto blocks together into a `SequentialPipelineBlocks`:
@@ -703,7 +732,7 @@ SequentialPipelineBlocks(
703
732
704
733
Sub-Blocks:
705
734
[0] ip-adapter (AutoIPAdapter)
706
-
Description: Run IP Adapter step if`ip_adapter_image`is provided. This step should be placed before the 'input' step.
735
+
Description: Run IP Adapter step if`ip_adapter_image`is provided.
0 commit comments