diff --git a/openhands/server/listen.py b/openhands/server/listen.py index 95d61f434a90..f5463a517306 100644 --- a/openhands/server/listen.py +++ b/openhands/server/listen.py @@ -94,6 +94,11 @@ ) +@app.get('/health') +async def health(): + return 'OK' + + security_scheme = HTTPBearer()