抽象pipeline逻辑
This commit is contained in:
17
pixelle_video/pipelines/__init__.py
Normal file
17
pixelle_video/pipelines/__init__.py
Normal 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",
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user