diff --git a/server/app.py b/server/app.py index 2a896e57..41bf41fb 100644 --- a/server/app.py +++ b/server/app.py @@ -250,5 +250,6 @@ async def on_shutdown(app: web.Application): app.router.add_post("/offer", offer) app.router.add_post("/prompt", set_prompt) app.router.add_get("/", health) + app.router.add_get("/health", health) web.run_app(app, host=args.host, port=int(args.port))