Skip to content

Commit 3fdc6f4

Browse files
committed
acrolinx
1 parent bcfd95a commit 3fdc6f4

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Azure OpenAI o1 series reasoning models
33
titleSuffix: Azure OpenAI
4-
description: Learn how use Azure OpenAI's advanced o1 series reasoning models
4+
description: Learn how to use Azure OpenAI's advanced o1 series reasoning models
55
manager: nitinme
66
ms.service: azure-ai-openai
77
ms.topic: include
@@ -28,7 +28,7 @@ The **o1 series** models are now available for API access and model deployment.
2828

2929
Request access: [limited access model application](https://aka.ms/OAI/o1access)
3030

31-
Once access has been granted, you will need to create a deployment for each model. If you have an existing `o1-preview` deployment, in-place upgrade is currently not supported, you will need to create a new deployment.
31+
Once access has been granted, you'll need to create a deployment for each model. If you have an existing `o1-preview` deployment, in-place upgrade is currently not supported, you'll need to create a new deployment.
3232

3333
### Region availability
3434

@@ -52,7 +52,7 @@ The latest most capable **o1 series** model is `o1` **Version: 2024-12-17**. Thi
5252

5353
## Usage
5454

55-
These models do not currently support the same set of parameters as other models that use the chat completions API. Only a very limited subset is currently supported. Using standard parameters like `temperature` and `top_p` will result in errors.
55+
These models do not currently support the same set of parameters as other models that use the chat completions API. Only a limited subset is currently supported. Using standard parameters like `temperature` and `top_p` will result in errors.
5656

5757
# [Python (Microsoft Entra ID)](#tab/python-secure)
5858

@@ -92,7 +92,7 @@ print(response.model_dump_json(indent=2))
9292

9393
# [Python (key-based auth)](#tab/python)
9494

95-
You may need to upgrade your version of the OpenAI Python library to take advantage of the new parameters like `max_completion_tokens`.
95+
You might need to upgrade your version of the OpenAI Python library to take advantage of the new parameters like `max_completion_tokens`.
9696

9797
```cmd
9898
pip install openai --upgrade
@@ -237,7 +237,7 @@ You will need to upgrade your OpenAI client library for access to the latest par
237237
pip install openai --upgrade
238238
```
239239

240-
If you are new to using Microsoft Entra ID for authentication see [How to configure Azure OpenAI Service with Microsoft Entra ID authentication](../how-to/managed-identity.md).
240+
If you're new to using Microsoft Entra ID for authentication see [How to configure Azure OpenAI Service with Microsoft Entra ID authentication](../how-to/managed-identity.md).
241241

242242
```python
243243
from openai import AzureOpenAI
@@ -268,7 +268,7 @@ print(response.model_dump_json(indent=2))
268268

269269
# [Python (key-based auth)](#tab/python)
270270

271-
You may need to upgrade your version of the OpenAI Python library to take advantage of the new parameters like `max_completion_tokens`.
271+
You might need to upgrade your version of the OpenAI Python library to take advantage of the new parameters like `max_completion_tokens`.
272272

273273
```cmd
274274
pip install openai --upgrade

0 commit comments

Comments
 (0)