Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -110,6 +110,8 @@ if __name__ == '__main__':
|
|
110 |
vc_output1 = gr.Textbox(label="Output Message")
|
111 |
vc_output2 = gr.Audio(label="Output Audio")
|
112 |
vc_submit.click(vc_fn, [vc_input, vc_transform, auto_f0, tts_text, tts_voice, tts_mode], [vc_output1, vc_output2])
|
|
|
|
|
113 |
for category, link in others.items():
|
114 |
with gr.TabItem(category):
|
115 |
gr.Markdown(
|
@@ -122,4 +124,5 @@ if __name__ == '__main__':
|
|
122 |
</center>
|
123 |
'''
|
124 |
)
|
|
|
125 |
app.queue(concurrency_count=1, api_open=args.api).launch(share=args.share)
|
|
|
110 |
vc_output1 = gr.Textbox(label="Output Message")
|
111 |
vc_output2 = gr.Audio(label="Output Audio")
|
112 |
vc_submit.click(vc_fn, [vc_input, vc_transform, auto_f0, tts_text, tts_voice, tts_mode], [vc_output1, vc_output2])
|
113 |
+
|
114 |
+
"""
|
115 |
for category, link in others.items():
|
116 |
with gr.TabItem(category):
|
117 |
gr.Markdown(
|
|
|
124 |
</center>
|
125 |
'''
|
126 |
)
|
127 |
+
"""
|
128 |
app.queue(concurrency_count=1, api_open=args.api).launch(share=args.share)
|