openai-compat: tolerate legacy date-suffixed model names during transition
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Viktor Barzin 2026-06-01 21:59:50 +00:00
parent 1132777705
commit add15325bb

View file

@ -32,6 +32,12 @@ SUPPORTED_MODELS: frozenset[str] = frozenset({
"haiku",
"sonnet",
"opus",
# Legacy date-suffixed forms — kept for callers that pinned before the
# 2026-06-01 bare-aliases switch (fire-planner < c1c1e22). Drop these
# once all consumers have been re-imaged.
"claude-haiku-4-5",
"claude-sonnet-4-6",
"claude-opus-4-7",
})
DEFAULT_MODEL = "sonnet"
OPENAI_COMPAT_AGENT = "recruiter-triage"