Update app.py
Browse files
app.py
CHANGED
@@ -15,7 +15,7 @@ def main():
|
|
15 |
tts_interface = gr.Interface(
|
16 |
fn=synthesize_speech,
|
17 |
inputs="text",
|
18 |
-
outputs=
|
19 |
title="Faroese TTS Demo",
|
20 |
description="Text-to-Speech Synthesis for Faroese"
|
21 |
)
|
@@ -32,4 +32,4 @@ def main():
|
|
32 |
demo.launch()
|
33 |
|
34 |
if __name__ == "__main__":
|
35 |
-
|
|
|
15 |
tts_interface = gr.Interface(
|
16 |
fn=synthesize_speech,
|
17 |
inputs="text",
|
18 |
+
outputs="audio",
|
19 |
title="Faroese TTS Demo",
|
20 |
description="Text-to-Speech Synthesis for Faroese"
|
21 |
)
|
|
|
32 |
demo.launch()
|
33 |
|
34 |
if __name__ == "__main__":
|
35 |
+
main()
|