abdulmatinomotoso commited on
Commit
b121075
·
verified ·
1 Parent(s): 7a6473a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -118,9 +118,9 @@ def final_summary(text):
118
 
119
 
120
  #creating an interface for the headline generator using gradio
121
- demo = gr.Interface(final_summary, inputs=[gr.inputs.Textbox(label="Drop your article here", optional=False)],
122
  title = "ARTICLE SUMMARIZER",
123
- outputs=[gr.outputs.Textbox(label="Summary")],
124
  theme= "darkhuggingface")
125
 
126
  #launching the app
 
118
 
119
 
120
  #creating an interface for the headline generator using gradio
121
+ demo = gr.Interface(final_summary, inputs=[gr.Textbox(label="Drop your article here", optional=False)],
122
  title = "ARTICLE SUMMARIZER",
123
+ outputs=[gr.Textbox(label="Summary")],
124
  theme= "darkhuggingface")
125
 
126
  #launching the app