Find deprecated AI models in your repo

One command that searches your codebase for every deprecated model ID we track and fails CI if anything shuts down within 90 days.

Run locally

curl -fsSL https://modelsunset.pages.dev/scan.sh | sh

Change the window with DAYS=30. Exit code 1 means something you use shuts down inside the window.

GitHub Actions

name: AI model deprecations
on:
  schedule: [{ cron: "0 8 * * 1" }]
  pull_request:
jobs:
  scan:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - run: curl -fsSL https://modelsunset.pages.dev/scan.sh | DAYS=60 sh

GitLab CI

model-deprecations:
  image: alpine
  script:
    - apk add --no-cache curl
    - curl -fsSL https://modelsunset.pages.dev/scan.sh | sh

Prefer the browser?

Scan your code for deprecated models

runs locally

Data formats