Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions apps/web/src/app/api/models/up/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ 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',
'gpt5.4',
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

WARNING: This exclusion key does not match the model IDs returned by getMonitoredModels()

preferredModels uses openai/gpt-5.4, so HEALTH_CHECK_EXCLUSIONS.has(m) will never match gpt5.4. The health check will continue treating GPT-5.4 as monitored and can still return 503 for it.

Suggested change
'gpt5.4',
'openai/gpt-5.4',

]);

function emptyMetrics(): Omit<ModelHealthMetrics, 'monitored'> {
Expand Down
Loading