Linseypass commited on
Commit
7f93d5b
·
1 Parent(s): 422faf3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -145,6 +145,8 @@ demo = gr.Interface(
145
  fn=generate,
146
  inputs=[gr.Textbox(label="Title"), gr.Textbox(label="Abstract")],
147
  outputs=[gr.Textbox(label="Keyphrases"), gr.Textbox(label="Keyphrase Elaboration"), gr.Textbox(label="Plain Language Summary")],
148
- ).launch()
 
 
149
 
150
 
 
145
  fn=generate,
146
  inputs=[gr.Textbox(label="Title"), gr.Textbox(label="Abstract")],
147
  outputs=[gr.Textbox(label="Keyphrases"), gr.Textbox(label="Keyphrase Elaboration"), gr.Textbox(label="Plain Language Summary")],
148
+ )
149
+ demo.queue()
150
+ demo.launch()
151
 
152