Ifeanyi commited on
Commit
efd5596
·
verified ·
1 Parent(s): 4c5fe10

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -44,12 +44,12 @@ with gr.Blocks(
44
  pdf_input = gr.File(file_types=[".pdf"])
45
  summary_type = gr.Radio(["5 Bullet Points","10 Bullet Points", "Paragraph", "Sentence"],value = "5 Bullet Points", label="Select Summary Kind")
46
 
47
- with gr.Column():
48
  with gr.Row():
49
  btn = gr.Button("Summarize")
50
  clear_btn = gr.ClearButton(value="Clear")
51
 
52
- with gr.Row():
53
  gr.HTML("<div style='text-align:center;'><h2>Summary Output</h2></div>")
54
  out = gr.Markdown()
55
 
 
44
  pdf_input = gr.File(file_types=[".pdf"])
45
  summary_type = gr.Radio(["5 Bullet Points","10 Bullet Points", "Paragraph", "Sentence"],value = "5 Bullet Points", label="Select Summary Kind")
46
 
47
+
48
  with gr.Row():
49
  btn = gr.Button("Summarize")
50
  clear_btn = gr.ClearButton(value="Clear")
51
 
52
+ with gr.Column():
53
  gr.HTML("<div style='text-align:center;'><h2>Summary Output</h2></div>")
54
  out = gr.Markdown()
55