From 6b94fd7b53d26b71969d74f42e6b8c5b8ce62847 Mon Sep 17 00:00:00 2001 From: "kiloconnect[bot]" <240665456+kiloconnect[bot]@users.noreply.github.com> Date: Fri, 17 Apr 2026 20:26:55 +0000 Subject: [PATCH] fix(alerting): add GPT 5.4 to non-monitored models list openai/gpt-5.4 is currently showing as down in the health check, triggering false alerts. Add it to HEALTH_CHECK_EXCLUSIONS so it still gets per-model health evaluation but cannot cause 503 responses. --- apps/web/src/app/api/models/up/route.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/web/src/app/api/models/up/route.ts b/apps/web/src/app/api/models/up/route.ts index fc141ec11b..6519b706e4 100644 --- a/apps/web/src/app/api/models/up/route.ts +++ b/apps/web/src/app/api/models/up/route.ts @@ -55,6 +55,8 @@ const HEALTH_CHECK_EXCLUSIONS = new Set([ 'google/gemini-3.1-pro-preview', // We don't control when this model may be retracted by OpenRouter. 'openrouter/elephant-alpha', + // GPT 5.4 shows as down but shouldn't trigger alerts. + 'openai/gpt-5.4', ]); function emptyMetrics(): Omit {