Skip to content

Commit 453a8e9

Browse files
authored
feat(models): replace gpt-5.4 with gpt-5.5 in preferred models (#2768)
Swap the recommended OpenAI entry to gpt-5.5 now that it is public. Keep both gpt-5.4 and gpt-5.5 in HEALTH_CHECK_EXCLUSIONS while traffic on the new model is too spiky to alert on reliably.
1 parent cde9512 commit 453a8e9

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

apps/web/src/app/api/models/up/route.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ const HEALTH_CHECK_EXCLUSIONS = new Set([
5656
// We don't control when this model may be retracted by OpenRouter.
5757
'openrouter/elephant-alpha',
5858
'openai/gpt-5.4',
59+
'openai/gpt-5.5',
5960
]);
6061

6162
function emptyMetrics(): Omit<ModelHealthMetrics, 'monitored'> {

apps/web/src/lib/ai-gateway/models.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export const preferredModels = [
4646
CLAUDE_OPUS_CURRENT_MODEL_ID,
4747
KIMI_CURRENT_MODEL_ID,
4848
CLAUDE_SONNET_CURRENT_MODEL_ID,
49-
'openai/gpt-5.4',
49+
'openai/gpt-5.5',
5050
'google/gemini-3.1-pro-preview',
5151
MINIMAX_CURRENT_MODEL_ID,
5252
qwen36_plus_model.public_id,

apps/web/src/tests/openrouter-models-config.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ describe('OpenRouter Models Config', () => {
66
const expectedModels = [
77
'google/gemini-3.1-pro-preview',
88
'anthropic/claude-sonnet-4.6',
9-
'openai/gpt-5.4',
9+
'openai/gpt-5.5',
1010
];
1111

1212
expectedModels.forEach(model => {

0 commit comments

Comments
 (0)