Mahiruoshi
commited on
Commit
•
a86a354
1
Parent(s):
3baf9e8
Update app.py
Browse files
app.py
CHANGED
@@ -278,9 +278,10 @@ if __name__ == '__main__':
|
|
278 |
with gr.Accordion(label="聊天记录", open=False):
|
279 |
with gr.Row():
|
280 |
output_UI = gr.outputs.HTML()
|
281 |
-
|
282 |
-
|
283 |
-
|
|
|
284 |
with gr.Accordion(label="Setting", open=False):
|
285 |
input2 = gr.Dropdown(label="Language", choices=lan, value="自动", interactive=True)
|
286 |
input3 = gr.Checkbox(value=False, label="长句切割(小说合成)")
|
|
|
278 |
with gr.Accordion(label="聊天记录", open=False):
|
279 |
with gr.Row():
|
280 |
output_UI = gr.outputs.HTML()
|
281 |
+
with gr.Column():
|
282 |
+
input1 = gr.TextArea(label="Text", value=example, lines=1)
|
283 |
+
btnVC = gr.Button("Submit")
|
284 |
+
output1 = gr.Audio(label="采样率22050")
|
285 |
with gr.Accordion(label="Setting", open=False):
|
286 |
input2 = gr.Dropdown(label="Language", choices=lan, value="自动", interactive=True)
|
287 |
input3 = gr.Checkbox(value=False, label="长句切割(小说合成)")
|