GPT-5.3-Codex

This commit is contained in:
Game_Time
2026-02-28 00:23:42 +05:00
parent f15c880fc3
commit 5b51b53a20
5 changed files with 15 additions and 4 deletions

View File

@@ -11,6 +11,8 @@ def allowed_efforts_for_model(model: str | None) -> Set[str]:
if not base:
return DEFAULT_REASONING_EFFORTS
normalized = base.split(":", 1)[0]
if normalized.startswith("gpt-5.3"):
return {"low", "medium", "high", "xhigh"}
if normalized.startswith("gpt-5.2"):
return {"low", "medium", "high", "xhigh"}
if normalized.startswith("gpt-5.1-codex-max"):