Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -163,5 +163,6 @@ async def run_hackrx(req: RunRequest):
|
|
| 163 |
|
| 164 |
return JSONResponse({"answers": answers}, status_code=200)
|
| 165 |
|
| 166 |
-
|
| 167 |
-
|
|
|
|
|
|
| 163 |
|
| 164 |
return JSONResponse({"answers": answers}, status_code=200)
|
| 165 |
|
| 166 |
+
@app.get("/", include_in_schema=False)
|
| 167 |
+
def root():
|
| 168 |
+
return {"message": "API is running. Go to /docs for documentation."}
|