Update models.json (#19896)

Automated update of models.json.

---------

Co-authored-by: aibrahim-oai <219906144+aibrahim-oai@users.noreply.github.com>
Co-authored-by: Ahmed Ibrahim <aibrahim@openai.com>
This commit is contained in:
github-actions[bot]
2026-05-08 17:41:55 +03:00
committed by GitHub
Unverified
parent cce059467a
commit aadcae9f3c
4 changed files with 32 additions and 10 deletions
+2 -2
View File
@@ -1680,7 +1680,7 @@ async fn includes_no_effort_in_request() -> anyhow::Result<()> {
.get("reasoning")
.and_then(|t| t.get("effort"))
.and_then(|v| v.as_str()),
Some("xhigh")
Some("medium")
);
Ok(())
@@ -1722,7 +1722,7 @@ async fn includes_default_reasoning_effort_in_request_when_defined_by_model_info
.get("reasoning")
.and_then(|t| t.get("effort"))
.and_then(|v| v.as_str()),
Some("xhigh")
Some("medium")
);
Ok(())
+25 -2
View File
@@ -1,6 +1,6 @@
{
"models": [
{
{
"prefer_websockets": true,
"support_verbosity": true,
"default_verbosity": "low",
@@ -82,6 +82,13 @@
"team"
],
"supports_search_tool": true,
"service_tiers": [
{
"id": "priority",
"name": "Fast",
"description": "1.5x speed, increased usage"
}
],
"additional_speed_tiers": [
"fast"
],
@@ -111,7 +118,7 @@
"slug": "gpt-5.4",
"display_name": "gpt-5.4",
"description": "Strong model for everyday coding.",
"default_reasoning_level": "xhigh",
"default_reasoning_level": "medium",
"supported_reasoning_levels": [
{
"effort": "low",
@@ -164,6 +171,18 @@
"team"
],
"supports_search_tool": true,
"service_tiers": [
{
"id": "priority",
"name": "Fast",
"description": "1.5x speed, increased usage"
},
{
"id": "ultrafast",
"name": "Ultrafast",
"description": "The fastest available responses for latency-sensitive work."
}
],
"additional_speed_tiers": [
"fast"
],
@@ -249,6 +268,7 @@
"team"
],
"supports_search_tool": true,
"service_tiers": [],
"additional_speed_tiers": [],
"supports_reasoning_summaries": true
},
@@ -332,6 +352,7 @@
"team"
],
"supports_search_tool": true,
"service_tiers": [],
"additional_speed_tiers": [],
"supports_reasoning_summaries": true
},
@@ -411,6 +432,7 @@
"team"
],
"supports_search_tool": true,
"service_tiers": [],
"additional_speed_tiers": [],
"supports_reasoning_summaries": true
},
@@ -491,6 +513,7 @@
"team"
],
"supports_search_tool": true,
"service_tiers": [],
"additional_speed_tiers": [],
"supports_reasoning_summaries": true
}
@@ -4,10 +4,9 @@ expression: popup
---
Select Reasoning Level for gpt-5.4
1. Low Fast responses with lighter reasoning
2. Medium Balances speed and reasoning depth for everyday
tasks
3. High (current) Greater reasoning depth for complex problems
4. Extra high (default) Extra high reasoning depth for complex problems
1. Low Fast responses with lighter reasoning
2. Medium (default) Balances speed and reasoning depth for everyday tasks
3. High (current) Greater reasoning depth for complex problems
4. Extra high Extra high reasoning depth for complex problems
Press enter to confirm or esc to go back
@@ -90,7 +90,7 @@ async fn status_command_uses_catalog_default_reasoning_when_config_empty() {
other => panic!("expected status output, got {other:?}"),
};
assert!(
rendered.contains("gpt-5.4 (reasoning xhigh, summaries auto)"),
rendered.contains("gpt-5.4 (reasoning medium, summaries auto)"),
"expected /status to render the catalog default reasoning effort, got: {rendered}"
);
}