-
-
Notifications
You must be signed in to change notification settings - Fork 6.8k
fix: add missing capability fields for gpt-5.4 variants #23645
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -4344,6 +4344,8 @@ | |||||||||||||
| "supports_pdf_input": true, | ||||||||||||||
| "supports_prompt_caching": true, | ||||||||||||||
| "supports_reasoning": true, | ||||||||||||||
| "supports_none_reasoning_effort": true, | ||||||||||||||
| "supports_xhigh_reasoning_effort": true, | ||||||||||||||
| "supports_response_schema": true, | ||||||||||||||
| "supports_system_messages": true, | ||||||||||||||
| "supports_tool_choice": true, | ||||||||||||||
|
|
@@ -4386,6 +4388,8 @@ | |||||||||||||
| "supports_pdf_input": true, | ||||||||||||||
| "supports_prompt_caching": true, | ||||||||||||||
| "supports_reasoning": true, | ||||||||||||||
| "supports_none_reasoning_effort": true, | ||||||||||||||
| "supports_xhigh_reasoning_effort": true, | ||||||||||||||
| "supports_response_schema": true, | ||||||||||||||
| "supports_system_messages": true, | ||||||||||||||
| "supports_tool_choice": true, | ||||||||||||||
|
|
@@ -4421,6 +4425,8 @@ | |||||||||||||
| "supports_pdf_input": true, | ||||||||||||||
| "supports_prompt_caching": true, | ||||||||||||||
| "supports_reasoning": true, | ||||||||||||||
| "supports_none_reasoning_effort": false, | ||||||||||||||
| "supports_xhigh_reasoning_effort": true, | ||||||||||||||
| "supports_response_schema": false, | ||||||||||||||
| "supports_system_messages": true, | ||||||||||||||
| "supports_tool_choice": true, | ||||||||||||||
|
|
@@ -4456,6 +4462,8 @@ | |||||||||||||
| "supports_pdf_input": true, | ||||||||||||||
| "supports_prompt_caching": true, | ||||||||||||||
| "supports_reasoning": true, | ||||||||||||||
| "supports_none_reasoning_effort": false, | ||||||||||||||
| "supports_xhigh_reasoning_effort": true, | ||||||||||||||
| "supports_response_schema": false, | ||||||||||||||
| "supports_system_messages": true, | ||||||||||||||
| "supports_tool_choice": true, | ||||||||||||||
|
|
@@ -16690,6 +16698,10 @@ | |||||||||||||
| "supports_pdf_input": true, | ||||||||||||||
| "supports_prompt_caching": true, | ||||||||||||||
| "supports_reasoning": true, | ||||||||||||||
| "supports_none_reasoning_effort": false, | ||||||||||||||
| "supports_xhigh_reasoning_effort": true, | ||||||||||||||
| "supports_none_reasoning_effort": true, | ||||||||||||||
| "supports_xhigh_reasoning_effort": true, | ||||||||||||||
|
Comment on lines
+16701
to
+16704
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
This change adds Useful? React with 👍 / 👎.
Comment on lines
+16701
to
+16704
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Duplicate JSON keys for wrong model entry The "supports_none_reasoning_effort": false,
"supports_xhigh_reasoning_effort": true,
"supports_none_reasoning_effort": true,
"supports_xhigh_reasoning_effort": true,Duplicate keys are not valid per the JSON specification (RFC 8259). While Python's
Suggested change
Additionally, this model ( |
||||||||||||||
| "supports_response_schema": true, | ||||||||||||||
| "supports_tool_choice": true, | ||||||||||||||
| "supports_vision": true, | ||||||||||||||
|
|
@@ -18645,6 +18657,8 @@ | |||||||||||||
| "supports_pdf_input": true, | ||||||||||||||
| "supports_prompt_caching": true, | ||||||||||||||
| "supports_reasoning": true, | ||||||||||||||
| "supports_none_reasoning_effort": true, | ||||||||||||||
| "supports_xhigh_reasoning_effort": true, | ||||||||||||||
| "supports_response_schema": true, | ||||||||||||||
| "supports_system_messages": true, | ||||||||||||||
| "supports_tool_choice": true, | ||||||||||||||
|
|
||||||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same duplicate-key bug in backup file
This file has the identical duplicate-key problem for
global.anthropic.claude-sonnet-4-5-20250929-v1:0:The fix here is the same — remove the first (false) pair and retain only the intended values: