chansung commited on
Commit
0edad49
·
1 Parent(s): 231d993

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -457,8 +457,6 @@ with gr.Blocks(css=STYLES) as demo:
457
  "be changed over time, but [meta-llama/Llama-2-70b-chat-hf](https://huggingface.co/meta-llama/Llama-2-70b-chat-hf) is selected for now.",
458
  elem_classes=['center', 'small-big'])
459
 
460
- progress_bar = gr.Textbox(elem_classes=['no-label'])
461
-
462
  with gr.Row():
463
  with gr.Column(scale=2):
464
  editor = gr.Textbox(lines=32, max_lines=32, elem_classes=['no-label', 'small-big-textarea'])
@@ -526,6 +524,8 @@ with gr.Blocks(css=STYLES) as demo:
526
  gen_pdf_btn = gr.Button("export as PDF", elem_classes=['control-label-font', 'control-button'])
527
  pdf_file = gr.File(visible=False)
528
 
 
 
529
  gen_pdf_btn.click(
530
  lambda t, e, c: generate_pdf(t, e, c),
531
  inputs=[title, editor, cover_art],
 
457
  "be changed over time, but [meta-llama/Llama-2-70b-chat-hf](https://huggingface.co/meta-llama/Llama-2-70b-chat-hf) is selected for now.",
458
  elem_classes=['center', 'small-big'])
459
 
 
 
460
  with gr.Row():
461
  with gr.Column(scale=2):
462
  editor = gr.Textbox(lines=32, max_lines=32, elem_classes=['no-label', 'small-big-textarea'])
 
524
  gen_pdf_btn = gr.Button("export as PDF", elem_classes=['control-label-font', 'control-button'])
525
  pdf_file = gr.File(visible=False)
526
 
527
+ progress_bar = gr.Textbox(elem_classes=['no-label'])
528
+
529
  gen_pdf_btn.click(
530
  lambda t, e, c: generate_pdf(t, e, c),
531
  inputs=[title, editor, cover_art],