Calistus commited on
Commit
c8d863e
1 Parent(s): 9ee36a2

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +3 -1
main.py CHANGED
@@ -11,7 +11,9 @@ model = joblib.load('pipelin.pkl')
11
 
12
  # Create a FASTAPI app
13
  app = FastAPI(
14
- title="Sepsis Prediction API"
 
 
15
  )
16
 
17
  @app.get("/")
 
11
 
12
  # Create a FASTAPI app
13
  app = FastAPI(
14
+ title="Sepsis Prediction API",
15
+ description="This API predicts the probability of a patient having sepsis based on their vitals.",
16
+ version="1.0",
17
  )
18
 
19
  @app.get("/")