You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<sup>1</sup> Parallel tool calls are not supported when `reasoning_effort` is set to `minimal`.
64
+
<sup>1</sup> Parallel tool calls are not supported when `reasoning_effort` is set to `minimal`<br><br>
65
65
<sup>2</sup> Reasoning models will only work with the `max_completion_tokens` parameter. <br><br>
66
-
<sup>3</sup> The latest reasoning models support system messages to make migration easier. You should not use both a developer message and a system message in the same API request.
66
+
<sup>3</sup> The latest reasoning models support system messages to make migration easier. You should not use both a developer message and a system message in the same API request.<br><br>
67
67
<sup>4</sup> Access to the chain-of-thought reasoning summary is limited access only for `o3` & `o4-mini`.
68
68
69
69
# [O-Series Reasoning Models](#tab/o-series)
@@ -131,7 +131,7 @@ client = AzureOpenAI(
131
131
)
132
132
133
133
response = client.chat.completions.create(
134
-
model="o1-new", # replace with the model deployment name of your o1-preview, or o1-mini model
134
+
model="o1-new", # replace with your model deployment name
135
135
messages=[
136
136
{"role": "user", "content": "What steps should I think about when writing my first Python API?"},
When using the latest `o3` and `o4-mini` models with the [Responses API](./responses.md) you can use the reasoning summary parameter to receive summaries of the model's chain of thought reasoning. This parameter can be set to `auto`, `concise`, or `detailed`. Access to this feature requires you to [Request Access](https://aka.ms/oai/o3access).
422
+
When using the latest reasoning models with the [Responses API](./responses.md) you can use the reasoning summary parameter to receive summaries of the model's chain of thought reasoning. This parameter can be set to `auto`, `concise`, or `detailed`. Access to this feature requires you to [Request Access](https://aka.ms/oai/o3access).
423
423
424
424
> [!NOTE]
425
425
> Even when enabled, reasoning summaries are not generated for every step/request. This is expected behavior.
0 commit comments