Spaces:
Runtime error
Runtime error
Commit
·
3d98234
1
Parent(s):
0e13645
Solve memory problem
Browse files
app.py
CHANGED
@@ -32,5 +32,5 @@ def run_tts(text):
|
|
32 |
return output_file
|
33 |
|
34 |
|
35 |
-
iface = gr.Interface(fn=run_tts, inputs="text", outputs="audio")
|
36 |
iface.launch()
|
|
|
32 |
return output_file
|
33 |
|
34 |
|
35 |
+
iface = gr.Interface(fn=run_tts, inputs="text", outputs="audio", enable_queue=True)
|
36 |
iface.launch()
|