抽象pipeline逻辑

This commit is contained in:
puke
2025-11-04 11:23:46 +08:00
parent b475090880
commit 22c46cf2c5
9 changed files with 1345 additions and 13 deletions

View File

@@ -0,0 +1,17 @@
"""
Pixelle-Video Pipelines
Video generation pipelines with different strategies and workflows.
Each pipeline implements a specific video generation approach.
"""
from pixelle_video.pipelines.base import BasePipeline
from pixelle_video.pipelines.standard import StandardPipeline
from pixelle_video.pipelines.custom import CustomPipeline
__all__ = [
"BasePipeline",
"StandardPipeline",
"CustomPipeline",
]