Spaces:
Runtime error
Runtime error
| from fastapi import FastAPI | |
| from fastapi.responses import JSONResponse | |
| app = FastAPI(title="Omniscient Backend API") | |
| def health(): | |
| return JSONResponse({"ok": True, "message": "Omniscient backend alive"}) | |