saq1b commited on
Commit
0bb87c1
·
verified ·
1 Parent(s): ae339c3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -591,12 +591,11 @@ def main():
591
 
592
  with gr.Row():
593
  output_audio = gr.Audio(label="Generated Podcast", type="filepath", format="wav")
594
- error_output = gr.Textbox(label="Error (if any)", visible=True)
595
 
596
  generate_btn.click(
597
  fn=generate_podcast_gradio,
598
  inputs=[input_text, input_file, language, speaker1, speaker2, api_key],
599
- outputs=[output_audio, error_output]
600
  )
601
 
602
  demo.launch()
 
591
 
592
  with gr.Row():
593
  output_audio = gr.Audio(label="Generated Podcast", type="filepath", format="wav")
 
594
 
595
  generate_btn.click(
596
  fn=generate_podcast_gradio,
597
  inputs=[input_text, input_file, language, speaker1, speaker2, api_key],
598
+ outputs=[output_audio]
599
  )
600
 
601
  demo.launch()