Spaces:
Running
Running
Update app.py
Browse files
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
|
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()
|