cymic commited on
Commit
98ab4ae
β€’
1 Parent(s): 2a816fd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -7
app.py CHANGED
@@ -85,13 +85,11 @@ if __name__ == '__main__':
85
  app = gr.Blocks()
86
 
87
  with app:
88
- with gr.Tabs():
89
- with gr.Column():
90
- tts_input1 = gr.TextArea(label="Text (150 words limitation)", value="こんにけは。")
91
- tts_submit = gr.Button("Generate", variant="primary")
92
- tts_output1 = gr.Textbox(label="Output Message")
93
- tts_output2 = gr.Audio(label="Output Audio")
94
-
95
  tts_submit.click(tts_fn, [tts_input1, tts_input2], [tts_output1, tts_output2])
96
 
97
  app.launch()
 
85
  app = gr.Blocks()
86
 
87
  with app:
88
+ with gr.Column():
89
+ tts_input1 = gr.TextArea(label="Text (150 words limitation)", value="こんにけは。")
90
+ tts_submit = gr.Button("Generate", variant="primary")
91
+ tts_output1 = gr.Textbox(label="Output Message")
92
+ tts_output2 = gr.Audio(label="Output Audio")
 
 
93
  tts_submit.click(tts_fn, [tts_input1, tts_input2], [tts_output1, tts_output2])
94
 
95
  app.launch()