Tonic commited on
Commit
24fdc8a
1 Parent(s): 70f9de6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -58,9 +58,8 @@ def speech_to_speech_translation(audio_data, tgt_lang):
58
  return text, output_file
59
 
60
  def create_interface():
61
- with gr.Markdown(welcome_message)
62
  with gr.Blocks(theme='ParityError/Anime') as interface:
63
- # Dropdown for language selection
64
  input_language = gr.Dropdown(list(languages.keys()), label="Select Target Language", value="English")
65
 
66
  with gr.Accordion("Speech to Text", open=False) as stt_accordion:
 
58
  return text, output_file
59
 
60
  def create_interface():
 
61
  with gr.Blocks(theme='ParityError/Anime') as interface:
62
+ gr.Markdown(welcome_message)
63
  input_language = gr.Dropdown(list(languages.keys()), label="Select Target Language", value="English")
64
 
65
  with gr.Accordion("Speech to Text", open=False) as stt_accordion: