Compare commits

...

1 Commits

Author SHA1 Message Date
Kunall Banerjee
a99585a0c5 fix(open_ai): add xhigh to list of supported reasoning effort values
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`.
2025-12-18 07:11:53 -05:00

View File

@@ -217,6 +217,7 @@ pub enum OpenAiReasoningEffort {
Low,
Medium,
High,
Xhigh,
}
#[with_fallible_options]