Skip to content

[BOT ISSUE] OpenAI: add deprecation dates for gpt-5.2-chat-latest, gpt-5.3-chat-latest #587

@github-actions

Description

@github-actions

Stale deprecation metadata

The following models are listed on the OpenAI deprecations page with a shutdown date of August 10, 2026, but the catalog entries in packages/proxy/schema/model_list.json have no deprecated or deprecation_date fields set.

Models to update

Model ID Current status Shutdown date Replacement
gpt-5.2-chat-latest No deprecation flag 2026-08-10 gpt-5.5
gpt-5.3-chat-latest No deprecation flag 2026-08-10 gpt-5.5

Suggested change

Add deprecation_date and parent (replacement) fields to each entry. The codebase already has markModelsPastDeprecationDate() in packages/proxy/schema/models.ts which automatically sets deprecated: true when the current date exceeds deprecation_date.

For gpt-5.3-chat-latest (line ~216):

"deprecation_date": "2026-08-10",
"parent": "gpt-5.5"

For gpt-5.2-chat-latest (line ~297, already has parent: "gpt-5.2"):

"deprecation_date": "2026-08-10",
"parent": "gpt-5.5"

Verification checklist

  • Cross-source: Deprecation confirmed on OpenAI API deprecations page and OpenAI changelog (May 8, 2026 notification to developers)
  • Recent commits: No recent commit addresses these deprecation dates
  • Existing issues: No existing issue covers this deprecation update

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions