abdibrahem commited on
Commit
3483e5e
·
1 Parent(s): 9ba0e86

Add new endpoint for home rout

Browse files
Files changed (1) hide show
  1. main.py +5 -1
main.py CHANGED
@@ -39,4 +39,8 @@ async def health_check():
39
  """
40
  Health check endpoint
41
  """
42
- return {"status": "healthy", "service": "healthcare-ai-assistant"}
 
 
 
 
 
39
  """
40
  Health check endpoint
41
  """
42
+ return {"status": "healthy", "service": "healthcare-ai-assistant"}
43
+
44
+ @app.get("/")
45
+ async def root():
46
+ return {"message": "Hello World"}