Spaces:
Sleeping
Sleeping
Vladimir Alabov
commited on
Commit
·
11d03f3
1
Parent(s):
7f29eee
Fix output2
Browse files
app.py
CHANGED
@@ -117,6 +117,6 @@ if __name__ == '__main__':
|
|
117 |
vc_submit = gr.Button("Generate", variant="primary")
|
118 |
with gr.Column():
|
119 |
vc_output1 = gr.Textbox(label="Output Message")
|
120 |
-
|
121 |
vc_submit.click(run_inference, [vc_input, speaker], [vc_output1, vc_output2])
|
122 |
app.queue(concurrency_count=1, api_open=args.api).launch(share=args.share)
|
|
|
117 |
vc_submit = gr.Button("Generate", variant="primary")
|
118 |
with gr.Column():
|
119 |
vc_output1 = gr.Textbox(label="Output Message")
|
120 |
+
vc_output2 = gr.Textbox(label="Output 2") # Audio(label="Output Audio")
|
121 |
vc_submit.click(run_inference, [vc_input, speaker], [vc_output1, vc_output2])
|
122 |
app.queue(concurrency_count=1, api_open=args.api).launch(share=args.share)
|