feat(codex): add gpt-5.3 to model catalog and config

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
delta-cloud-208e
2026-03-08 09:02:20 +00:00
parent 0e5564732b
commit 4734cead32
3 changed files with 5 additions and 2 deletions

View File

@@ -6,6 +6,7 @@
"gpt-5.4",
"gpt-5.3-codex-spark",
"gpt-5.3-codex",
"gpt-5.3",
"gpt-5.2-codex"
],
"model_reasoning_effort": "high",

View File

@@ -267,7 +267,7 @@ if (-not $pyCmd) {
default_reasoning_level = "medium"
}
$modelSlugs = @("gpt-5.4", "gpt-5.3-codex-spark", "gpt-5.3-codex", "gpt-5.2-codex")
$modelSlugs = @("gpt-5.4", "gpt-5.3-codex-spark", "gpt-5.3-codex", "gpt-5.3", "gpt-5.2-codex")
$catalogModels = @()
$pri = 0
foreach ($slug in $modelSlugs) {
@@ -308,6 +308,7 @@ wire_api = "responses"
"gpt-5.4" = "done"
"gpt-5.3-codex-spark" = "done"
"gpt-5.3-codex" = "done"
"gpt-5.3" = "done"
"gpt-5.2-codex" = "done"
"@

View File

@@ -204,7 +204,7 @@ if (-not $pyCmd) {
default_reasoning_level = "medium"
}
$modelSlugs = @("gpt-5.4", "gpt-5.3-codex-spark", "gpt-5.3-codex", "gpt-5.2-codex")
$modelSlugs = @("gpt-5.4", "gpt-5.3-codex-spark", "gpt-5.3-codex", "gpt-5.3", "gpt-5.2-codex")
$catalogModels = @()
$pri = 0
foreach ($slug in $modelSlugs) {
@@ -244,6 +244,7 @@ wire_api = "responses"
"gpt-5.4" = "done"
"gpt-5.3-codex-spark" = "done"
"gpt-5.3-codex" = "done"
"gpt-5.3" = "done"
"gpt-5.2-codex" = "done"
"@
[System.IO.File]::WriteAllText($configToml, $tomlContent)