-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp.py
More file actions
41 lines (28 loc) · 916 Bytes
/
app.py
File metadata and controls
41 lines (28 loc) · 916 Bytes
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
import os
import uvicorn
from fastapi import FastAPI
from fastapi.responses import Response
from starlette.responses import RedirectResponse
from src.text_summarizer.pipeline.prediction_pipeline import PredictionPipeline
text: str = "What is Text Summarization?"
app = FastAPI()
@app.get("/", tags=["authentication"])
async def index() -> RedirectResponse:
return RedirectResponse(url="/docs")
@app.get("/train")
async def training() -> Response:
try:
os.system("python main.py")
return Response("Training successful !!")
except Exception as e:
return Response(f"Error Occurred! {e}")
@app.post("/predict")
async def predict_route(text: str) -> str:
try:
obj = PredictionPipeline()
text = obj.predict(text)
return text
except Exception as e:
raise e
if __name__ == "__main__":
uvicorn.run(app, host="localhost", port=8080)