Remove unavailable OpenAI models#1554
Merged
Merged
Conversation
simonw
commented
Jul 25, 2026
| "gpt-5.1", | ||
| "gpt-5.1-chat-latest", | ||
| ): | ||
| for model_id in ("gpt-5.1",): |
Owner
Author
|
Cog failure: Relates to latest |
Owner
Author
|
I'm going to upgrade to sqlite-utils 4.0 in a separate piece of work to fix that cog problem. |
simonw
marked this pull request as ready for review
July 25, 2026 19:51
Owner
Author
|
More sqlite-migrate transaction test failures. I'm going to pin to |
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.
Refs:
OpenAI Codex PR body
Why
These model IDs remain exposed by
llm models, but prompting them now returns either OpenAI'smodel_not_foundresponse or an explicit deprecation response. Keeping them registered advertises models that users cannot successfully call.Impact
The removed model IDs and their built-in aliases are no longer returned by
llm modelsor resolvable throughllm.get_model()/llm.get_async_model(). Historical changelog references are preserved.Validation
llm modelsllmThe complete local suite also exposed an unrelated SQLite 3.50 /
sqlite-utilstransaction incompatibility in embedding migrations; those failures reproduce outside the changed model-registration paths.