kompiangg commited on
Commit
0055aea
1 Parent(s): 6dadd7d

HELLO GUYS WE DID IT

Browse files
Files changed (1) hide show
  1. main.py +4 -0
main.py CHANGED
@@ -12,6 +12,10 @@ tfidf = transformer.create_tfidf(hate_speech_dataset, 'Tweet', 'U')
12
 
13
  app = FastAPI()
14
 
 
 
 
 
15
  @app.get("/healthz")
16
  def healthz():
17
  return {"message": "All system running well :)"}
 
12
 
13
  app = FastAPI()
14
 
15
+ @app.get("/")
16
+ def root():
17
+ return {"message": "All system running well :)"}
18
+
19
  @app.get("/healthz")
20
  def healthz():
21
  return {"message": "All system running well :)"}