MAZALA2024 commited on
Commit
f354435
·
verified ·
1 Parent(s): 8bc67af

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -61,7 +61,8 @@ iface = gr.Interface(
61
  gr.Textbox(label="Audio URI")
62
  ],
63
  title="Text-to-Speech Conversion"
64
- ).queue() # Remove the 'concurrency_count' parameter
 
 
 
65
 
66
- # Launch the interface with max_threads
67
- iface.launch(debug=True, max_threads=100) # Set max_threads to control concurrency
 
61
  gr.Textbox(label="Audio URI")
62
  ],
63
  title="Text-to-Speech Conversion"
64
+ )
65
+
66
+ # Launch the interface
67
+ iface.launch(debug=True) # Set share=True to create a public link
68