Spaces:
Runtime error
Runtime error
Commit
·
7f93d5b
1
Parent(s):
422faf3
Update app.py
Browse files
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 |
-
)
|
|
|
|
|
|
|
| 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 |
|