Skip to content

fix: add gpt-5.4 model series to Azure ChatOpenAI model list - #6648

Open
akshaykumaran705 wants to merge 1 commit into
FlowiseAI:mainfrom
akshaykumaran705:fix-6411-azure-gpt-5.4-models
Open

fix: add gpt-5.4 model series to Azure ChatOpenAI model list#6648
akshaykumaran705 wants to merge 1 commit into
FlowiseAI:mainfrom
akshaykumaran705:fix-6411-azure-gpt-5.4-models

Conversation

@akshaykumaran705

Copy link
Copy Markdown

Summary

  • Adds gpt-5.4, gpt-5.4-pro, gpt-5.4-mini, and gpt-5.4-nano to the azureChatOpenAI entry in packages/components/models.json
  • Pricing mirrors the values already used for the same models in the regular chatOpenAI entry

Problem

PR #6028 added gpt-5.4-mini/gpt-5.4-nano (and the rest of the gpt-5.4 series) to the regular chatOpenAI model list, but models.json keeps a separate model array for azureChatOpenAI, which was never updated. As a result, Azure OpenAI users have no way to select these models in the node dropdown, and given Azure's upcoming retirement of older models, this blocks users who need to migrate (see #6411).

Change

Minimal, additive change — 4 new entries inserted into the existing azureChatOpenAI models array, in the same position/order used by the chatOpenAI list:

{ "label": "gpt-5.4-mini", "name": "gpt-5.4-mini", "input_cost": 0.00000075, "output_cost": 0.0000045 }

No other files needed changes — isReasoningModelOpenAI() in packages/components/src/utils.ts already classifies gpt-5.4-* correctly via its generic gpt-5 substring rule, so no logic changes were required, only the missing model-list entries.

Test plan

  • packages/components/models.json validated as well-formed JSON
  • Diffed against the original file to confirm only the 4 intended entries were added, no reformatting/reordering elsewhere

Fixes #6411

The azureChatOpenAI entry in models.json was not updated when PR FlowiseAI#6028
added gpt-5.4/gpt-5.4-pro/gpt-5.4-mini/gpt-5.4-nano to the regular
chatOpenAI entry, so Azure OpenAI users have no way to select these
models as Azure retires older ones.

Fixes FlowiseAI#6411
@gemini-code-assist

Copy link
Copy Markdown
Contributor

Caution

The consumer version of Gemini Code Assist on GitHub has been sunset. All code review activity has officially ceased.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Azure ChatOpenAI Tool does not support models latest openAI models like 5.4-mini and nano (BLOCKER due to model retirements by Azure)

1 participant