Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -48,7 +48,8 @@ with gr.Blocks(
|
|
48 |
]
|
49 |
btn = gr.Button("Summarize")
|
50 |
with gr.Column():
|
51 |
-
|
|
|
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 |
|