We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08c2902 commit 043ab25Copy full SHA for 043ab25
src/diffusers/pipelines/wan/pipeline_wan_vace.py
@@ -795,7 +795,7 @@ def __call__(
795
callback_on_step_end_tensor_inputs = callback_on_step_end.tensor_inputs
796
797
# Simplification of implementation for now
798
- if not isinstance(prompt, str):
+ if prompt is not None and not isinstance(prompt, str):
799
raise ValueError("Passing a list of prompts is not yet supported. This may be supported in the future.")
800
if num_videos_per_prompt != 1:
801
raise ValueError(
0 commit comments