Kalpokoch commited on
Commit
5d76e26
·
verified ·
1 Parent(s): 98878dc

Update app/app.py

Browse files
Files changed (1) hide show
  1. app/app.py +4 -0
app/app.py CHANGED
@@ -48,6 +48,10 @@ app.add_middleware(
48
  allow_headers=["*"],
49
  )
50
 
 
 
 
 
51
  class ChatRequest(BaseModel):
52
  question: str
53
 
 
48
  allow_headers=["*"],
49
  )
50
 
51
+ @app.get("/")
52
+ def read_root():
53
+ return {"message": "RAG chatbot backend is running!"}
54
+
55
  class ChatRequest(BaseModel):
56
  question: str
57