Update app.py
Browse files
app.py
CHANGED
@@ -115,7 +115,7 @@ with playground:
|
|
115 |
with gr.Column():
|
116 |
translated_speech = gr.Audio(type="filepath", label="Generated Speech")
|
117 |
|
118 |
-
with gr.Row():
|
119 |
with gr.Column():
|
120 |
transcipted_text = gr.Textbox(label="Transcription")
|
121 |
with gr.Column():
|
@@ -125,7 +125,7 @@ with gr.Row():
|
|
125 |
with gr.Column():
|
126 |
submit_button = gr.Button(value="Start Process", variant="primary")
|
127 |
with gr.Column():
|
128 |
-
clear_button = gr.ClearButton(components=[input_audio, transcipted_text, translated_speech, translated_text], value="Clear")
|
129 |
|
130 |
# with gr.Row():
|
131 |
# gr.Examples(
|
|
|
115 |
with gr.Column():
|
116 |
translated_speech = gr.Audio(type="filepath", label="Generated Speech")
|
117 |
|
118 |
+
with gr.Row():
|
119 |
with gr.Column():
|
120 |
transcipted_text = gr.Textbox(label="Transcription")
|
121 |
with gr.Column():
|
|
|
125 |
with gr.Column():
|
126 |
submit_button = gr.Button(value="Start Process", variant="primary")
|
127 |
with gr.Column():
|
128 |
+
clear_button = gr.ClearButton(components=[input_audio, transcipted_text, translated_speech, translated_text, source_lang, target_lang], value="Clear")
|
129 |
|
130 |
# with gr.Row():
|
131 |
# gr.Examples(
|