( videoId: string, userId: string, )
| 422 | } |
| 423 | |
| 424 | async function queueAiGeneration( |
| 425 | videoId: string, |
| 426 | userId: string, |
| 427 | ): Promise<void> { |
| 428 | "use step"; |
| 429 | |
| 430 | await startAiGeneration(videoId as Video.VideoId, userId); |
| 431 | } |
| 432 | |
| 433 | async function _markEnhancedAudioProcessing(videoId: string): Promise<void> { |
| 434 | "use step"; |
no test coverage detected