From 190fa9e1048dd231bd1598db2ca1d11a440e199b Mon Sep 17 00:00:00 2001 From: Victor Vannara Date: Thu, 11 Dec 2025 21:18:47 -0800 Subject: [PATCH] docs: clarify xhigh reasoning effort on gpt-5.2 (#7911) ## Changes - Update config docs and example config comments to state that "xhigh" is supported on gpt-5.2 as well as gpt-5.1-codex-max - Adjust the FAQ model-support section to reflect broader xhigh availability --- docs/config.md | 2 +- docs/example-config.md | 2 +- docs/faq.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/config.md b/docs/config.md index 2ac775528f..ca4ba015e9 100644 --- a/docs/config.md +++ b/docs/config.md @@ -195,7 +195,7 @@ If the selected model is known to support reasoning (for example: `o3`, `o4-mini - `"low"` - `"medium"` (default) - `"high"` -- `"xhigh"` (available only on `gpt-5.1-codex-max`) +- `"xhigh"` (available on `gpt-5.1-codex-max` and `gpt-5.2`) Note: to minimize reasoning, choose `"minimal"`. diff --git a/docs/example-config.md b/docs/example-config.md index 2345274e1b..f1d36cd453 100644 --- a/docs/example-config.md +++ b/docs/example-config.md @@ -37,7 +37,7 @@ model_provider = "openai" # Reasoning & Verbosity (Responses API capable models) ################################################################################ -# Reasoning effort: minimal | low | medium | high | xhigh (default: medium; xhigh only on gpt-5.1-codex-max) +# Reasoning effort: minimal | low | medium | high | xhigh (default: medium; xhigh on gpt-5.1-codex-max and gpt-5.2) model_reasoning_effort = "medium" # Reasoning summary: auto | concise | detailed | none (default: auto) diff --git a/docs/faq.md b/docs/faq.md index 37b9ef39d8..93776b957a 100644 --- a/docs/faq.md +++ b/docs/faq.md @@ -8,7 +8,7 @@ In 2021, OpenAI released Codex, an AI system designed to generate code from natu ### Which models are supported? -We recommend using Codex with GPT-5.1 Codex Max, our best coding model. The default reasoning level is medium, and you can upgrade to high or xhigh (Codex Max only) for complex tasks with the `/model` command. +We recommend using Codex with GPT-5.1 Codex Max, our best coding model. The default reasoning level is medium, and you can upgrade to high or xhigh (where supported, e.g. `gpt-5.1-codex-max` and `gpt-5.2`) for complex tasks with the `/model` command. You can also use older models by using API-based auth and launching codex with the `--model` flag.