From 81f4506a61674ef3c30ed3eeeefa74c1dc8080ac Mon Sep 17 00:00:00 2001 From: Cadu Date: Fri, 13 Mar 2026 14:57:14 -0300 Subject: [PATCH] docs: document reasoning_effort support in OpenAI-compatible API (#14821) Add reasoning_effort and reasoning to the supported features and request fields for /v1/chat/completions. These fields control thinking on thinking-capable models but were previously undocumented. Closes #14820 --- docs/api/openai-compatibility.mdx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/api/openai-compatibility.mdx b/docs/api/openai-compatibility.mdx index 4c37d8192..ddf93d2f8 100644 --- a/docs/api/openai-compatibility.mdx +++ b/docs/api/openai-compatibility.mdx @@ -184,6 +184,7 @@ curl -X POST http://localhost:11434/v1/chat/completions \ - [x] Reproducible outputs - [x] Vision - [x] Tools +- [x] Reasoning/thinking control (for thinking models) - [ ] Logprobs #### Supported request fields @@ -207,6 +208,9 @@ curl -X POST http://localhost:11434/v1/chat/completions \ - [x] `top_p` - [x] `max_tokens` - [x] `tools` +- [x] `reasoning_effort` (`"high"`, `"medium"`, `"low"`, `"none"`) +- [x] `reasoning` + - [x] `effort` (`"high"`, `"medium"`, `"low"`, `"none"`) - [ ] `tool_choice` - [ ] `logit_bias` - [ ] `user`