Spaces:
Sleeping
Sleeping
Tolga
commited on
Commit
·
23e2e3f
1
Parent(s):
e068e67
Update app.py
Browse files
app.py
CHANGED
|
@@ -46,6 +46,6 @@ with gr.Blocks() as demo:
|
|
| 46 |
text = gr.Textbox(label="Text", lines=10, placeholder="Enter text here")
|
| 47 |
t1 = gr.Textbox(label="Output")
|
| 48 |
btn = gr.Button("Summarise")
|
| 49 |
-
btn.click(fn=summarize, inputs=text, outputs=
|
| 50 |
|
| 51 |
demo.launch()
|
|
|
|
| 46 |
text = gr.Textbox(label="Text", lines=10, placeholder="Enter text here")
|
| 47 |
t1 = gr.Textbox(label="Output")
|
| 48 |
btn = gr.Button("Summarise")
|
| 49 |
+
btn.click(fn=summarize, inputs=text, outputs=t1)
|
| 50 |
|
| 51 |
demo.launch()
|