Spaces:
Running
Running
RoadToIron
commited on
Commit
·
eb5d325
1
Parent(s):
bdf8109
other minor tweaks
Browse files
app.py
CHANGED
|
@@ -27,6 +27,6 @@ with gr.Blocks() as demo:
|
|
| 27 |
summary_output = gr.Textbox(label="Summary")
|
| 28 |
#audio_output = gr.Audio(label="Text-to-Speech Output", type="numpy")
|
| 29 |
submit_button = gr.Button("Submit")
|
| 30 |
-
submit_button.click(fn=summarize,inputs=text_input,
|
| 31 |
|
| 32 |
demo.launch()
|
|
|
|
| 27 |
summary_output = gr.Textbox(label="Summary")
|
| 28 |
#audio_output = gr.Audio(label="Text-to-Speech Output", type="numpy")
|
| 29 |
submit_button = gr.Button("Submit")
|
| 30 |
+
submit_button.click(fn=summarize,inputs=text_input, outputs=summary_output)
|
| 31 |
|
| 32 |
demo.launch()
|