Skip to content

Commit dba9c37

Browse files
committed
update
1 parent 04973be commit dba9c37

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

articles/ai-foundry/openai/concepts/models.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ Azure OpenAI is powered by a diverse set of models with different capabilities a
5555

5656
| Model ID | Description | Context Window | Max Output Tokens | Training Data (up to) |
5757
| --- | :--- |:--- |:---|:---: |
58-
| `gpt-5` (2025-08-07) | - [Reasoning](../how-to/reasoning.md) <br> - Chat Completions API. <br> - [Responses API](../how-to/responses.md). <br> - Structured outputs.<br> - Text and image processing. <br> - Functions, tools, and parallel tool calling. <br> [Full summary of capabilities](../how-to/reasoning.md). | 400,000<br><br>Input:272,000<br>Output:128,000 | 128,000 | October 24, 2024 |
59-
| `gpt-5-mini` (2025-08-07) | - [Reasoning](../how-to/reasoning.md) <br> - Chat Completions API. <br> - [Responses API](../how-to/responses.md). <br> - Structured outputs.<br> - Text and image processing. <br> - Functions, tools, and parallel tool calling. <br> [Full summary of capabilities](../how-to/reasoning.md). | 400,000<br><br>Input:272,000<br>Output:128,000 | 128,000 | June 24, 2024 |
60-
| `gpt-5-nano` (2025-08-07) | - [Reasoning](../how-to/reasoning.md) <br> - Chat Completions API. <br> - [Responses API](../how-to/responses.md). <br> - Structured outputs.<br> - Text and image processing. <br> - Functions, tools, and parallel tool calling. <br> [Full summary of capabilities](../how-to/reasoning.md). | 400,000<br><br>Input:272,000<br>Output:128,000 | 128,000 | May 31, 2024 |
58+
| `gpt-5` (2025-08-07) | - [Reasoning](../how-to/reasoning.md) <br> - Chat Completions API. <br> - [Responses API](../how-to/responses.md). <br> - Structured outputs.<br> - Text and image processing. <br> - Functions, tools, and parallel tool calling. <br> [Full summary of capabilities](../how-to/reasoning.md). | 400,000<br><br>Input: 272,000<br>Output: 128,000 | 128,000 | October 24, 2024 |
59+
| `gpt-5-mini` (2025-08-07) | - [Reasoning](../how-to/reasoning.md) <br> - Chat Completions API. <br> - [Responses API](../how-to/responses.md). <br> - Structured outputs.<br> - Text and image processing. <br> - Functions, tools, and parallel tool calling. <br> [Full summary of capabilities](../how-to/reasoning.md). | 400,000<br><br>Input: 272,000<br>Output: 128,000 | 128,000 | June 24, 2024 |
60+
| `gpt-5-nano` (2025-08-07) | - [Reasoning](../how-to/reasoning.md) <br> - Chat Completions API. <br> - [Responses API](../how-to/responses.md). <br> - Structured outputs.<br> - Text and image processing. <br> - Functions, tools, and parallel tool calling. <br> [Full summary of capabilities](../how-to/reasoning.md). | 400,000<br><br>Input: 272,000<br>Output: 128,000 | 128,000 | May 31, 2024 |
6161
| `gpt-5-chat` (2025-08-07)<br>**Preview** | - Chat Completions API. <br> - [Responses API](../how-to/responses.md). <br> - **Input**: Text/Image <br> - **Output**: Text only | 128,000 | 16,384 | October 24, 2024 |
6262

6363
## gpt-oss

articles/ai-foundry/openai/how-to/reasoning.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -431,10 +431,10 @@ Console.WriteLine($"{completion.Role}: {completion.Content[0].Text}");
431431

432432
## Reasoning summary
433433

434-
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).
434+
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.
435435

436436
> [!NOTE]
437-
> Even when enabled, reasoning summaries are not generated for every step/request. This is expected behavior.
437+
> Even when enabled, reasoning summaries are not guaranteed to be generated for every step/request. This is expected behavior.
438438
439439
# [Python](#tab/py)
440440

@@ -463,8 +463,8 @@ response = client.responses.create(
463463
model="gpt-5", # replace with model deployment name
464464
reasoning={
465465
"effort": "medium",
466-
"summary": "auto" # auto, concise, or detailed
467-
}
466+
"summary": "auto" # auto, concise, or detailed, gpt-5 series do not support concise
467+
},
468468
text={
469469
"verbosity": "low" # New with GPT-5 models
470470
}

0 commit comments

Comments
 (0)