-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
55 lines (43 loc) · 1.2 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
from fastapi import FastAPI
from fastapi import APIRouter
from starlette.middleware.cors import CORSMiddleware
from app.core.config import settings
from app.core.response_model import ResponseModel
from app.routes import (
summarizer,
translator,
classifier,
news_recommender,
sentiment_analyer,
)
# Define the API router
api_router = APIRouter()
@api_router.get("/")
async def home():
return ResponseModel(
status_code=200,
message="Welcome to Nepali News Algorithm API",
data=None,
error=None,
)
api_router.include_router(summarizer)
api_router.include_router(translator)
api_router.include_router(classifier)
api_router.include_router(news_recommender)
print("news_recommender", news_recommender)
api_router.include_router(sentiment_analyer)
app = FastAPI(
title="Nepali News Algorithms API",
openapi_url=f"{settings.API_V1_STR}/openapi.json",
)
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
app.include_router(api_router, prefix=settings.API_V1_STR)
if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=8000)