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: articles/ai-foundry/openai/concepts/models.md
+24-3Lines changed: 24 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,14 +37,35 @@ Azure OpenAI is powered by a diverse set of models with different capabilities a
37
37
38
38
## gpt-oss
39
39
40
+
### Region availability
41
+
42
+
| Model | Region |
43
+
|---|---|
44
+
|`gpt-oss-120b`| All Azure OpenAI regions |
45
+
40
46
### Capabilities
41
47
42
48
| Model ID | Description | Context Window | Max Output Tokens | Training Data (up to) |
43
49
| --- | :--- |:--- |:---|:---: |
44
-
|`gpt-oss-120b` (Preview) | - Text in/text out only <br> - Responses API <br> - Streaming <br> - Function calling <br> - Structured outputs <br> - Reasoning <br> - Available for direct deployment<sup>1</sup> and via [managed compute](../../how-to/deploy-models-managed.md)| 131,072 | 131,072 | May 31, 2024 |
45
-
|`gpt-oss-20b` (Preview) | - Text in/text out only <br> - Responses API <br> - Streaming <br> - Function calling <br> - Structured outputs <br> - Reasoning <br> - Available via [managed compute only](../../how-to/deploy-models-managed.md)| 131,072 | 131,072 | May 31, 2024 |
50
+
|`gpt-oss-120b` (Preview) | - Text in/text out only <br> - Chat Completions API <br> - Streaming <br> - Function calling <br> - Structured outputs <br> - Reasoning <br> - Available for deployment<sup>1</sup> and via [managed compute](../../how-to/deploy-models-managed.md)| 131,072 | 131,072 | May 31, 2024 |
51
+
|`gpt-oss-20b` (Preview) | - Text in/text out only <br> - Chat Completions API <br> - Streaming <br> - Function calling <br> - Structured outputs <br> - Reasoning <br> - Available via [managed compute only](../../how-to/deploy-models-managed.md)| 131,072 | 131,072 | May 31, 2024 |
52
+
53
+
<sup>1</sup> Unlike other Azure OpenAI models `gpt-oss-120b` requires an [Azure AI Foundry project](/azure/ai-foundry/quickstarts/get-started-code?tabs=azure-ai-foundry&pivots=fdp-project) to deploy the model.
54
+
55
+
### Deploy with code
56
+
57
+
```cli
58
+
az cognitiveservices account deployment create \
59
+
--name "Foundry-project-resource" \
60
+
--resource-group "test-rg" \
61
+
--deployment-name "gpt-oss-120b" \
62
+
--model-name "gpt-oss-120b" \
63
+
--model-version "1" \
64
+
--model-format "OpenAI-OSS" \
65
+
--sku-capacity 10 \
66
+
--sku-name "GlobalStandard"
67
+
```
46
68
47
-
<sup>1</sup> Unlike other Azure OpenAI models `gpt-oss-120b` requires an [Azure AI Foundry project](/azure/ai-foundry/quickstarts/get-started-code?tabs=azure-ai-foundry&pivots=fdp-project).
0 commit comments