crates/settings/src/settings_content/language_model.rs 🔗
@@ -217,6 +217,7 @@ pub enum OpenAiReasoningEffort {
Low,
Medium,
High,
+ Xhigh,
}
#[with_fallible_options]
Kunall Banerjee created
According to the
[docs](https://platform.openai.com/docs/api-reference/chat/create#chat_create-reasoning_effort),
`xhigh` is a supported value for all models after `gpt-5.1-codex-max`.
crates/settings/src/settings_content/language_model.rs | 1 +
1 file changed, 1 insertion(+)
@@ -217,6 +217,7 @@ pub enum OpenAiReasoningEffort {
Low,
Medium,
High,
+ Xhigh,
}
#[with_fallible_options]