Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -84,8 +84,8 @@ def generate_story(text, lang):
|
|
84 |
join_wav_files(input_waves, output_wav)
|
85 |
return story_result, 'output.wav'
|
86 |
|
87 |
-
def app(text):
|
88 |
-
story = generate_story(text)
|
89 |
return story
|
90 |
|
91 |
css = """
|
|
|
84 |
join_wav_files(input_waves, output_wav)
|
85 |
return story_result, 'output.wav'
|
86 |
|
87 |
+
def app(text, lang):
|
88 |
+
story = generate_story(text, lang)
|
89 |
return story
|
90 |
|
91 |
css = """
|