@@ -1160,16 +1160,17 @@ export interface AssistantCreateParams {
11601160 /**
11611161 * Constrains effort on reasoning for
11621162 * [reasoning models](https://platform.openai.com/docs/guides/reasoning). Currently
1163- * supported values are `none`, `minimal`, `low`, `medium`, and `high`. Reducing
1164- * reasoning effort can result in faster responses and fewer tokens used on
1165- * reasoning in a response.
1163+ * supported values are `none`, `minimal`, `low`, `medium`, `high`, and `xhigh`.
1164+ * Reducing reasoning effort can result in faster responses and fewer tokens used
1165+ * on reasoning in a response.
11661166 *
11671167 * - `gpt-5.1` defaults to `none`, which does not perform reasoning. The supported
11681168 * reasoning values for `gpt-5.1` are `none`, `low`, `medium`, and `high`. Tool
11691169 * calls are supported for all reasoning values in gpt-5.1.
11701170 * - All models before `gpt-5.1` default to `medium` reasoning effort, and do not
11711171 * support `none`.
11721172 * - The `gpt-5-pro` model defaults to (and only supports) `high` reasoning effort.
1173+ * - `xhigh` is currently only supported for `gpt-5.1-codex-max`.
11731174 */
11741175 reasoning_effort ?: Shared . ReasoningEffort | null ;
11751176
@@ -1420,16 +1421,17 @@ export interface AssistantUpdateParams {
14201421 /**
14211422 * Constrains effort on reasoning for
14221423 * [reasoning models](https://platform.openai.com/docs/guides/reasoning). Currently
1423- * supported values are `none`, `minimal`, `low`, `medium`, and `high`. Reducing
1424- * reasoning effort can result in faster responses and fewer tokens used on
1425- * reasoning in a response.
1424+ * supported values are `none`, `minimal`, `low`, `medium`, `high`, and `xhigh`.
1425+ * Reducing reasoning effort can result in faster responses and fewer tokens used
1426+ * on reasoning in a response.
14261427 *
14271428 * - `gpt-5.1` defaults to `none`, which does not perform reasoning. The supported
14281429 * reasoning values for `gpt-5.1` are `none`, `low`, `medium`, and `high`. Tool
14291430 * calls are supported for all reasoning values in gpt-5.1.
14301431 * - All models before `gpt-5.1` default to `medium` reasoning effort, and do not
14311432 * support `none`.
14321433 * - The `gpt-5-pro` model defaults to (and only supports) `high` reasoning effort.
1434+ * - `xhigh` is currently only supported for `gpt-5.1-codex-max`.
14331435 */
14341436 reasoning_effort ?: Shared . ReasoningEffort | null ;
14351437
0 commit comments