sohail-shaikh-s07
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -113,14 +113,14 @@ demo = gr.Interface(
|
|
113 |
),
|
114 |
outputs=gr.Textbox(label="Summary", lines=5),
|
115 |
title="π° News Article Summarizer",
|
116 |
-
description="""
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
examples=[
|
125 |
["https://www.bbc.com/sport/football/articles/cvgxmzy86e4o"],
|
126 |
["https://globalsouthworld.com/article/biden-approves-571-million-in-defense-support-for-taiwan"]
|
@@ -130,3 +130,4 @@ demo = gr.Interface(
|
|
130 |
|
131 |
if __name__ == "__main__":
|
132 |
demo.launch()
|
|
|
|
113 |
),
|
114 |
outputs=gr.Textbox(label="Summary", lines=5),
|
115 |
title="π° News Article Summarizer",
|
116 |
+
description="""This app creates concise summaries of news articles using AI.
|
117 |
+
Simply paste a URL of a news article and get a summary!
|
118 |
+
|
119 |
+
β³ Processing Time: The summarization process typically takes 30-60 seconds, depending on article length.
|
120 |
+
|
121 |
+
π Status Indicator: Look for "Processing" in the output box - this indicates the model is actively generating your summary.
|
122 |
+
|
123 |
+
β¨ Quality Assurance: Please wait for the process to complete for the best results.""",
|
124 |
examples=[
|
125 |
["https://www.bbc.com/sport/football/articles/cvgxmzy86e4o"],
|
126 |
["https://globalsouthworld.com/article/biden-approves-571-million-in-defense-support-for-taiwan"]
|
|
|
130 |
|
131 |
if __name__ == "__main__":
|
132 |
demo.launch()
|
133 |
+
|