Skip to content

Commit c9971eb

Browse files
committed
update
1 parent 4e3ddd5 commit c9971eb

File tree

4 files changed

+728
-3
lines changed

4 files changed

+728
-3
lines changed

src/diffusers/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -501,6 +501,7 @@
501501
"VQDiffusionPipeline",
502502
"WanImageToVideoPipeline",
503503
"WanPipeline",
504+
"WanVideoToVideoPipeline",
504505
"WuerstchenCombinedPipeline",
505506
"WuerstchenDecoderPipeline",
506507
"WuerstchenPriorPipeline",

src/diffusers/pipelines/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@
356356
"WuerstchenDecoderPipeline",
357357
"WuerstchenPriorPipeline",
358358
]
359-
_import_structure["wan"] = ["WanPipeline", "WanImageToVideoPipeline"]
359+
_import_structure["wan"] = ["WanPipeline", "WanImageToVideoPipeline", "WanVideoToVideoPipeline"]
360360
try:
361361
if not is_onnx_available():
362362
raise OptionalDependencyNotAvailable()
@@ -709,7 +709,7 @@
709709
UniDiffuserPipeline,
710710
UniDiffuserTextDecoder,
711711
)
712-
from .wan import WanImageToVideoPipeline, WanPipeline
712+
from .wan import WanImageToVideoPipeline, WanVideoToVideoPipeline, WanPipeline
713713
from .wuerstchen import (
714714
WuerstchenCombinedPipeline,
715715
WuerstchenDecoderPipeline,

src/diffusers/pipelines/wan/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
else:
2525
_import_structure["pipeline_wan"] = ["WanPipeline"]
2626
_import_structure["pipeline_wan_i2v"] = ["WanImageToVideoPipeline"]
27-
27+
_import_structure["pipeline_wan_video2video"] = ["WanVideoToVideoPipeline"]
2828
if TYPE_CHECKING or DIFFUSERS_SLOW_IMPORT:
2929
try:
3030
if not (is_transformers_available() and is_torch_available()):

0 commit comments

Comments
 (0)