chore: update gpt-5.2-codex references to gpt-5.3-codex

This commit is contained in:
YeonGyu-Kim
2026-02-06 14:20:05 +09:00
parent cb9db665f5
commit cd69f3a9bc
15 changed files with 73 additions and 73 deletions
+3 -3
View File
@@ -113,9 +113,9 @@ describe("resolveVariantForModel", () => {
})
test("returns correct variant for openai provider (hephaestus agent)", () => {
// #given hephaestus has openai/gpt-5.2-codex with variant "medium" in its chain
// #given hephaestus has openai/gpt-5.3-codex with variant "medium" in its chain
const config = {} as OhMyOpenCodeConfig
const model = { providerID: "openai", modelID: "gpt-5.2-codex" }
const model = { providerID: "openai", modelID: "gpt-5.3-codex" }
// #when
const variant = resolveVariantForModel(config, "hephaestus", model)
@@ -179,7 +179,7 @@ describe("resolveVariantForModel", () => {
"custom-agent": { category: "ultrabrain" },
},
} as OhMyOpenCodeConfig
const model = { providerID: "openai", modelID: "gpt-5.2-codex" }
const model = { providerID: "openai", modelID: "gpt-5.3-codex" }
// when
const variant = resolveVariantForModel(config, "custom-agent", model)