File size: 639 Bytes
54639e8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
"""
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",
]