fix: change default model from chatgpt-image-latest to gpt-image-2#3
Open
Parkjoungwan wants to merge 1 commit into
Open
fix: change default model from chatgpt-image-latest to gpt-image-2#3Parkjoungwan wants to merge 1 commit into
Parkjoungwan wants to merge 1 commit into
Conversation
chatgpt-image-latest no longer aliases to GPT Image 2 — it currently points to an older snapshot, producing noticeably lower-quality and less faithful style transfers (e.g. Pathetic Scribble, Goblin Mode). Specifying gpt-image-2 directly restores the intended output quality that the project was originally demonstrated with. The existing input_fidelity guard already excludes gpt-image-2, so no further changes are required.
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.
Problem
chatgpt-image-latestno longer aliases to GPT Image 2. It currently points to an older model snapshot, producing noticeably lower-quality and less faithful style transfers.Visual comparison — same photo, same prompt (Pathetic Scribble)
chatgpt-image-latest(current default)gpt-image-2(this fix)The difference is stark: the current default produces what looks like a competent artistic sketch, while
gpt-image-2produces the intentionally terrible, clumsy output the prompt actually calls for.Root cause
The
chatgpt-image-latestalias is documented as "the image snapshot previously used in ChatGPT" — it pinned to an older version and no longer resolves to GPT Image 2. At the time the project was originally demonstrated, this alias did resolve to GPT Image 2. It no longer does.Fix
Change the default model to
gpt-image-2directly.The existing
input_fidelityguard already excludesgpt-image-2andgpt-image-2-2026-04-21, so no further changes are needed.Note on access
gpt-image-2requires organization verification on platform.openai.com. This is consistent with the project's existing requirement for a paid OpenAI account.