feat: add gpt-5.5 support (#106)

* feat: add gpt-5.5 support

* tests for gpt-5.5 support
This commit is contained in:
Haoyu Tang
2026-05-18 04:04:19 +08:00
committed by GitHub
parent da0e3c3176
commit 85bdb27a08
3 changed files with 13 additions and 0 deletions

View File

@@ -54,6 +54,13 @@ _MODEL_SPECS = (
allowed_efforts=frozenset(("low", "medium", "high", "xhigh")),
variant_efforts=("xhigh", "high", "medium", "low"),
),
ModelSpec(
public_id="gpt-5.5",
upstream_id="gpt-5.5",
aliases=("gpt5.5", "gpt-5.5-latest"),
allowed_efforts=frozenset(("none", "low", "medium", "high", "xhigh")),
variant_efforts=("xhigh", "high", "medium", "low", "none"),
),
ModelSpec(
public_id="gpt-5.3-codex",
upstream_id="gpt-5.3-codex",