MariaKaiser commited on
Commit
b76e4b3
·
verified ·
1 Parent(s): 45f8e2f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -321,6 +321,7 @@ async def generate_story_audios_async(story: StoryCreationDTO, base_output: str,
321
  story_dir = Path(base_output) / story.storyId
322
  story_dir.mkdir(parents=True, exist_ok=True)
323
 
 
324
  # Semaphore ensures we don't overload GPU
325
  gpu_semaphore = asyncio.Semaphore(max_concurrent_gpu)
326
 
 
321
  story_dir = Path(base_output) / story.storyId
322
  story_dir.mkdir(parents=True, exist_ok=True)
323
 
324
+ print("generating story ...")
325
  # Semaphore ensures we don't overload GPU
326
  gpu_semaphore = asyncio.Semaphore(max_concurrent_gpu)
327