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
Copy file name to clipboardExpand all lines: docs/deploy_features.md
+14-2Lines changed: 14 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,10 +35,16 @@ As of early June 2025, the default chat completion model is `gpt-4.1-mini`. If y
35
35
For example:
36
36
37
37
```bash
38
-
azd env set AZURE_OPENAI_CHATGPT_DEPLOYMENT gpt-4o
38
+
azd env set AZURE_OPENAI_CHATGPT_DEPLOYMENT gpt-5-chat
39
39
```
40
40
41
-
1. To set the GPT model to a different [available model](https://learn.microsoft.com/azure/ai-services/openai/concepts/models), run this command with the appropriate model name.
41
+
1. To set the GPT model to a different [available model](https://learn.microsoft.com/azure/ai-services/openai/concepts/models), run this command with the appropriate model name. For reasoning models like gpt-5/o3/o4, check [the reasoning guide](./reasoning.md)
42
+
43
+
For gpt-5-chat:
44
+
45
+
```shell
46
+
azd env set AZURE_OPENAI_CHATGPT_MODEL gpt-5-chat
47
+
```
42
48
43
49
For gpt-4.1-mini:
44
50
@@ -72,6 +78,12 @@ As of early June 2025, the default chat completion model is `gpt-4.1-mini`. If y
72
78
73
79
1. To set the Azure OpenAI model version from the [available versions](https://learn.microsoft.com/azure/ai-services/openai/concepts/models), run this command with the appropriate version string.
74
80
81
+
For gpt-5-chat:
82
+
83
+
```shell
84
+
azd env set AZURE_OPENAI_CHATGPT_DEPLOYMENT_VERSION 2025-08-07
Copy file name to clipboardExpand all lines: docs/reasoning.md
+36-3Lines changed: 36 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,9 @@ This repository includes an optional feature that uses reasoning models to gener
6
6
7
7
### Supported Models
8
8
9
+
* gpt-5
10
+
* gpt-5-mini
11
+
* gpt-5-nano
9
12
* o4-mini
10
13
* o3
11
14
* o3-mini
@@ -21,6 +24,36 @@ This repository includes an optional feature that uses reasoning models to gener
21
24
22
25
Set the environment variables for your Azure OpenAI GPT deployments to your reasoning model
23
26
27
+
For gpt-5:
28
+
29
+
```shell
30
+
azd env set AZURE_OPENAI_CHATGPT_MODEL gpt-5
31
+
azd env set AZURE_OPENAI_CHATGPT_DEPLOYMENT gpt-5
32
+
azd env set AZURE_OPENAI_CHATGPT_DEPLOYMENT_VERSION 2025-08-07
33
+
azd env set AZURE_OPENAI_CHATGPT_DEPLOYMENT_SKU GlobalStandard
34
+
azd env set AZURE_OPENAI_API_VERSION 2025-04-01-preview
35
+
```
36
+
37
+
For gpt-5-mini:
38
+
39
+
```shell
40
+
azd env set AZURE_OPENAI_CHATGPT_MODEL gpt-5-mini
41
+
azd env set AZURE_OPENAI_CHATGPT_DEPLOYMENT gpt-5-mini
42
+
azd env set AZURE_OPENAI_CHATGPT_DEPLOYMENT_VERSION 2025-08-07
43
+
azd env set AZURE_OPENAI_CHATGPT_DEPLOYMENT_SKU GlobalStandard
44
+
azd env set AZURE_OPENAI_API_VERSION 2025-04-01-preview
45
+
```
46
+
47
+
For gpt-5-nano:
48
+
49
+
```shell
50
+
azd env set AZURE_OPENAI_CHATGPT_MODEL gpt-5-nano
51
+
azd env set AZURE_OPENAI_CHATGPT_DEPLOYMENT gpt-5-nano
52
+
azd env set AZURE_OPENAI_CHATGPT_DEPLOYMENT_VERSION 2025-08-07
53
+
azd env set AZURE_OPENAI_CHATGPT_DEPLOYMENT_SKU GlobalStandard
54
+
azd env set AZURE_OPENAI_API_VERSION 2025-04-01-preview
55
+
```
56
+
24
57
For o4-mini:
25
58
26
59
```shell
@@ -63,12 +96,12 @@ This repository includes an optional feature that uses reasoning models to gener
63
96
64
97
2.**(Optional) Set default reasoning effort**
65
98
66
-
You can configure how much effort the reasoning model spends on processing and understanding the user's request. Valid options are `low`, `medium`, and `high`. Reasoning effort defaults to `medium` if not set.
99
+
You can configure how much effort the reasoning model spends on processing and understanding the user's request. Valid options are `minimal` (for GPT-5 models only), `low`, `medium`, and `high`. Reasoning effort defaults to `medium` if not set.
67
100
68
-
Set the environment variable for reasoning effort
101
+
Set the environment variable for reasoning effort:
0 commit comments