daniel-dona commited on
Commit
3d98234
·
1 Parent(s): 0e13645

Solve memory problem

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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()