Tolga commited on
Commit
23e2e3f
β€’
1 Parent(s): e068e67

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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=[t1,output])
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()