TEST: check-models gate demo (do not merge)#68
Closed
jimbobbennett wants to merge 3 commits into
Closed
Conversation
Skill + scanner that find outdated OpenAI / Anthropic / Google (Gemini) model references and migrate them to current size-tier equivalents. The CI gate scans only the lines a PR changes (paths: python typescript), so it flags newly introduced outdated models and fails the check, without blocking on pre-existing references. Notebook/code migrations land separately as themed PRs. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
…sting CI gate now scans the whole of each touched file and tags findings by whether the PR changed the line — introduced fails, pre-existing (unchanged line of a touched file) is a non-blocking warning. `python typescript` scan paths. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
🤖 Model version check✗ 1 outdated model reference(s) introduced — please update (this fails the check)On lines this PR adds or changes:
|
| Location | Found | Suggested | Why |
|---|---|---|---|
python/cookbooks/airflow_example_dags/example_arize_ax_self_optimizing_loop_dag.py:87 |
gpt-4o |
gpt-5.5 |
full tier → latest full |
python/cookbooks/airflow_example_dags/example_arize_ax_self_optimizing_loop_dag.py:231 |
gpt-4o-mini |
gpt-5.4-mini |
mini tier → latest mini |
python/cookbooks/airflow_example_dags/example_arize_ax_self_optimizing_loop_dag.py:249 |
gpt-4o-mini |
gpt-5.4-mini |
mini tier → latest mini |
python/cookbooks/airflow_example_dags/example_arize_ax_self_optimizing_loop_dag.py:363 |
gpt-4o |
gpt-5.5 |
full tier → latest full |
python/cookbooks/airflow_example_dags/example_arize_ax_self_optimizing_loop_dag.py:443 |
gpt-4o-mini |
gpt-5.4-mini |
mini tier → latest mini |
python/cookbooks/airflow_example_dags/example_arize_ax_self_optimizing_loop_dag.py:524 |
gpt-4o-mini |
gpt-5.4-mini |
mini tier → latest mini |
See the check-models skill. Policy date: 2026-06-18. Add check-models:ignore to a line to skip it.
ℹ️ Platform-wrapped IDs (Bedrock
[region.]anthropic.claude-…, Databricksdatabricks-claude-…, OpenRouter/LiteLLMprovider/model) are flagged on their embedded model name — bump the version but keep the platform's ID format (e.g. Bedrock 4.x needs aus./eu./apac.inference-profile prefix). See the skill's Platform-specific IDs section.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Temporary PR to demonstrate the check-models gate. Edits one line containing an outdated model in an airflow DAG; the other model lines in the file are untouched. Expect: 1 introduced (fails) + several pre-existing (warn). Will close + delete branch after.