Co-authored-by: openhands <openhands@all-hands.dev>
@@ -94,6 +94,11 @@ app.add_middleware(
)
+@app.get('/health')
+async def health():
+ return 'OK'
+
security_scheme = HTTPBearer()