Spaces:
Sleeping
Sleeping
Update api.py
Browse files
api.py
CHANGED
@@ -100,7 +100,13 @@ Enables a user to generate summary from input news articles URLs.
|
|
100 |
"""
|
101 |
|
102 |
|
103 |
-
app = FastAPI(
|
|
|
|
|
|
|
|
|
|
|
|
|
104 |
summ_tokenizer, summ_model = load_summarizer_models()
|
105 |
|
106 |
|
|
|
100 |
"""
|
101 |
|
102 |
|
103 |
+
app = FastAPI(description=description,
|
104 |
+
summary="News article summary generator",
|
105 |
+
version="0.0.1",
|
106 |
+
contact={
|
107 |
+
"name": "KSV Muralidhar",
|
108 |
+
"url": "https://ksvmuralidhar.in"
|
109 |
+
})
|
110 |
summ_tokenizer, summ_model = load_summarizer_models()
|
111 |
|
112 |
|