Update app.py
Browse files
app.py
CHANGED
|
@@ -14,7 +14,7 @@ def summarize_text_and_speak(prompt):
|
|
| 14 |
interface = gr.Interface(
|
| 15 |
fn=summarize_text_and_speak,
|
| 16 |
inputs=gr.Textbox(lines=10, label="Input text"),
|
| 17 |
-
outputs=[gr.Textbox(label="Summary"), "
|
| 18 |
)
|
| 19 |
|
| 20 |
interface.launch(share=True)
|
|
|
|
| 14 |
interface = gr.Interface(
|
| 15 |
fn=summarize_text_and_speak,
|
| 16 |
inputs=gr.Textbox(lines=10, label="Input text"),
|
| 17 |
+
outputs=[gr.Textbox(label="Summary"), gr.Audio(label="Audio")]
|
| 18 |
)
|
| 19 |
|
| 20 |
interface.launch(share=True)
|