Ifeanyi commited on
Commit
ca41126
·
verified ·
1 Parent(s): 0d3f653

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -48,7 +48,8 @@ with gr.Blocks(
48
  ]
49
  btn = gr.Button("Summarize")
50
  with gr.Column():
51
- out = gr.Text(label="Response")
 
52
 
53
  btn.click(fn=pdfSummarizer, inputs=inp, outputs=out)
54
 
 
48
  ]
49
  btn = gr.Button("Summarize")
50
  with gr.Column():
51
+ gr.Markdown("<center><h2>Summary Output</h2></center>")
52
+ out = gr.Text(show_label=False)
53
 
54
  btn.click(fn=pdfSummarizer, inputs=inp, outputs=out)
55