Update app.py
Browse files
app.py
CHANGED
@@ -61,7 +61,8 @@ iface = gr.Interface(
|
|
61 |
gr.Textbox(label="Audio URI")
|
62 |
],
|
63 |
title="Text-to-Speech Conversion"
|
64 |
-
)
|
|
|
|
|
|
|
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 |
|
|
|
|