fix: fix the undefined vace typo

This commit is contained in:
Baole Fang
2025-09-24 16:55:47 +08:00
parent 0b4b337e9a
commit 9d64ed7042

View File

@@ -359,7 +359,7 @@ class WanVideoPipeline(BasePipeline):
pipe.vae = model_manager.fetch_model("wan_video_vae")
pipe.image_encoder = model_manager.fetch_model("wan_video_image_encoder")
pipe.motion_controller = model_manager.fetch_model("wan_video_motion_controller")
pipe.vace = model_manager.fetch_model("wan_video_vace")
vace = model_manager.fetch_model("wan_video_vace")
if isinstance(vace, list):
pipe.vace, pipe.vace2 = vace
else: