Tools / src /workflows /__init__.py
jebin2's picture
refactor: Pipeline architecture revamp with proper separation
54639e8
"""
Workflow module for orchestrating content generation pipelines.
Workflows handle:
- Loading data from Google Sheets
- Progress tracking (skip already executed)
- Parallel job distribution
- Logging results back to Google Sheets
Available workflows:
- content_strategy_workflow: Processes AI-generated content from strategies
- plain_video_workflow: Generates music-synced videos without AI content
"""
from workflows.content_strategy_workflow import run_content_strategy_workflow
from workflows.plain_video_workflow import run_plain_video_workflow
__all__ = [
"run_content_strategy_workflow",
"run_plain_video_workflow",
]