Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -110,4 +110,6 @@ async def query(question_request: QuestionRequest):
|
|
110 |
logger.error(f"Error processing query: {e}")
|
111 |
raise HTTPException(status_code=500, detail="Internal Server Error")
|
112 |
|
113 |
-
|
|
|
|
|
|
110 |
logger.error(f"Error processing query: {e}")
|
111 |
raise HTTPException(status_code=500, detail="Internal Server Error")
|
112 |
|
113 |
+
@app.get("/")
|
114 |
+
async def root():
|
115 |
+
return RedirectResponse(url="https://medical-assist.streamlit.app")
|