induwara.lk
induwara.lkAI · Reference

AI Model Deprecation & Lifecycle Tracker

Is the model you're calling about to be turned off? Search any OpenAI, Anthropic, Google, or Azure model ID to see whether it's active, deprecated, or retired — with the official shutdown date, a live countdown, and the recommended replacement. No signup, sources cited below.

By Induwara AshinsanaUpdated Jun 13, 2026
Model deprecation & lifecycle tracker
From vendor docs · verified 2026-06-13

Compared against today: 16 June 2026. Dates are transcribed from each provider's own deprecations page.

Active
9
7 active · 2 legacy
Deprecated
1
Announced for shutdown
Retired
15
Already shut down
Next shutdown
None scheduled
No upcoming shutdowns in the tracked set

Paste the exact model string from your code to check its status.

Provider
Status
Showing 25 of 25 models
ModelStatusDeprecatedShutdownCountdownReplacementSource
davinci, curie, babbage, ada
GPT-3 base models · OpenAI
Retired6 July 20234 January 2024shut down 894 days agodavinci-002 / babbage-002
text-davinci-003
GPT-3.5 (InstructGPT completions) · OpenAI
Retired6 July 20234 January 2024shut down 894 days agogpt-3.5-turbo-instruct
gpt-4-0314
GPT-4 (March 2023 snapshot) · OpenAI
Retired13 June 202313 June 2024shut down 733 days ago
gpt-3.5-turbo-0613
GPT-3.5 Turbo (June 2023 snapshot) · OpenAI
Retired13 June 202413 September 2024shut down 641 days agogpt-3.5-turbo
gpt-3.5-turbo-0301
GPT-3.5 Turbo (March 2023 snapshot) · OpenAI
Retired13 June 202313 September 2024shut down 641 days agogpt-3.5-turbo
gpt-4-vision-preview
GPT-4 Turbo with Vision (preview) · OpenAI
Retired17 June 20246 December 2024shut down 557 days ago
gpt-35-turbo (0301) — Azure
Azure GPT-3.5 Turbo (0301) · Azure OpenAI
Retired13 June 202413 February 2025shut down 488 days agogpt-35-turbo (0125) / gpt-4o-mini
gemini-1.0-pro
Gemini 1.0 Pro · Google
Retired12 September 202415 February 2025shut down 486 days ago
text-bison / chat-bison (PaLM 2)
PaLM 2 (legacy PaLM API) · Google
Retired15 August 20249 April 2025shut down 433 days ago
gpt-4 (0613) — Azure
Azure GPT-4 (0613) · Azure OpenAI
Retired1 October 20246 June 2025shut down 375 days agogpt-4o (Azure)
gpt-4-0613
GPT-4 (June 2023 snapshot) · OpenAI
Retired13 June 20246 June 2025shut down 375 days ago
gpt-4-32k-0613
GPT-4 32K (June 2023 snapshot) · OpenAI
Retired13 June 20246 June 2025shut down 375 days ago
gpt-4.5-preview
GPT-4.5 (research preview) · OpenAI
Retired14 April 202514 July 2025shut down 337 days ago
claude-2.1
Claude 2.1 · Anthropic
Retired21 January 202521 July 2025shut down 330 days ago
claude-3-sonnet-20240229
Claude 3 Sonnet · Anthropic
Retired21 January 202521 July 2025shut down 330 days agoclaude-3-5-sonnet-20241022
gpt-5
GPT-5 · OpenAI
Active
gpt-4o
GPT-4o · OpenAI
Active
gpt-4.1
GPT-4.1 · OpenAI
Active
claude-opus-4-1-20250805
Claude Opus 4.1 · Anthropic
Active
claude-sonnet-4-20250514
Claude Sonnet 4 · Anthropic
Active
claude-3-7-sonnet-20250219
Claude Sonnet 3.7 · Anthropic
Legacy
claude-3-opus-20240229
Claude 3 Opus · Anthropic
Deprecated30 June 2025
gemini-2.5-pro
Gemini 2.5 Pro · Google
Active
gemini-2.0-flash
Gemini 2.0 Flash · Google
Active
gemini-1.5-pro
Gemini 1.5 Pro · Google
Legacy29 April 2025

Sources cited: every row links to the provider deprecations / model-retirements page it was read from (OpenAI, Anthropic, Google, Azure OpenAI). This is a cited snapshot dated 2026-06-13, not a live feed. The countdown re-derives a model to “Retired” the moment its shutdown date passes. No data leaves your browser.

How it works

This is a reference, not a calculator: the lifecycle dates themselves are editorial. Each model's deprecation date, shutdown (retirement) date, status, and recommended replacement are transcribed verbatim from the provider's own deprecations or model-retirements page, and every row links back to the exact source. Nothing is inferred — where a provider has announced a deprecation but not a firm shutdown date, the tool shows “—” rather than a guessed value.

Models move through four lifecycle states, which the tracker re-derives on every load:

  1. Active — current and recommended; no deprecation announced.
  2. Legacy — still callable but superseded by a newer version, with no shutdown date published yet.
  3. Deprecated — officially scheduled for shutdown: deprecationDate ≤ today < shutdownDate. The model still works during this notice window.
  4. Retired — the shutdown date has passed (today ≥ shutdownDate), so API calls now return errors. The stored status is authoritative, but the tool re-derives Deprecated → Retired the instant a shutdown date passes, so a past date is never shown as still “deprecated.”

The only computed value is the countdown, and it is deterministic calendar arithmetic done entirely at UTC midnight to avoid any timezone off-by-one:

  • daysUntilShutdown = epochDay(shutdownDate) − epochDay(today)
  • Positive → “shuts down in N days.”
  • Zero → “shuts down today.”
  • Negative → Retired; “shut down |N| days ago.”

That subtraction is implemented twice — once via integer day indices from Date.UTCand once via millisecond parsing of an explicit UTC timestamp — and the two are required to agree, so an arithmetic regression would be caught rather than shipped. The summary strip's “next shutdown” highlight is simply the soonest shutdown date strictly after today across the whole dataset. Source for the policy that deprecation precedes shutdown by a notice window: OpenAI's deprecations page and Anthropic's model-deprecations policy, which both state models stay callable between the announcement and the shutdown.

Worked examples

Reference point for all three: 13 June 2026 (the 2026-06-13 snapshot date). The live tool recomputes against the actual current date.

OpenAI gpt-4-32k-0613 — retired

Deprecated 13 Jun 2024 · shutdown 6 Jun 2025

  1. today (2026-06-13) ≥ shutdown (2025-06-06) → Retired (red badge)
  2. daysSinceShutdown = epochDay(2026-06-13) − epochDay(2025-06-06)
  3. 2025-06-06 → 2026-06-06 = 365 days, + 7 days = 372 days
  4. Reads: "shut down 372 days ago"; replacement → gpt-4o (click to jump)

Deprecated-but-live — countdown (illustrative)

Deprecated 1 Mar 2026 · shutdown 2 Nov 2026

  1. deprecation (2026-03-01) ≤ today (2026-06-13) < shutdown (2026-11-02) → Deprecated
  2. daysUntilShutdown = epochDay(2026-11-02) − epochDay(2026-06-13)
  3. 17 + 31 + 31 + 30 + 31 + 2 = 142 days
  4. Reads: "shuts down in 142 days"; also sets the 'next shutdown' highlight if soonest

Anthropic claude-3-sonnet-20240229 — retired

Retired 21 Jul 2025

  1. today (2026-06-13) ≥ shutdown (2025-07-21) → Retired (red badge)
  2. daysSinceShutdown = epochDay(2026-06-13) − epochDay(2025-07-21) = 327 days
  3. Reads: "shut down 327 days ago"
  4. Replacement → Claude 3.5 Sonnet / Sonnet 4 line

Frequently asked questions

Sources & references

Each model row links to the specific provider page it was transcribed from. The canonical deprecation / retirement pages:

Dates were last cross-checked against these sources on 2026-06-13. This is a cited snapshot, not a live feed — provider pages change, so the verified date above always tells you how current the data is.

Related tools

Rate this tool
Be the first to rate

Comments & feedback

Spotted a bug or want an improvement? Tell us — our team reviews every comment, and good ideas get built. Comments are public and anonymous.

Found an out-of-date row, a model we're missing, or an edge case?

Email me at [email protected] — most fixes ship within 24 hours.