From a951cd2df2f056b6f7914a0839fb72da82f0045a Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Tue, 14 Jul 2026 03:50:59 -0400 Subject: [PATCH] chore(docs-i18n): generalize max reasoning note --- scripts/docs-i18n/translator.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/docs-i18n/translator.go b/scripts/docs-i18n/translator.go index 642420fb5afc..b586639896b2 100644 --- a/scripts/docs-i18n/translator.go +++ b/scripts/docs-i18n/translator.go @@ -350,7 +350,7 @@ func normalizeThinking(value string) string { case "low", "medium", "high", "xhigh": return strings.ToLower(strings.TrimSpace(value)) case "max": - // Codex CLI 0.144.3 supports max for GPT-5.6; xhigh remains the default for older model overrides. + // Codex CLI supports max for GPT-5.6; xhigh remains the default for older model overrides. return "max" default: return "xhigh"