Skip to content

Commit bcfd95a

Browse files
committed
update
1 parent 520835c commit bcfd95a

File tree

2 files changed

+8
-11
lines changed

2 files changed

+8
-11
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,19 +42,19 @@ The Azure OpenAI `o1` and `o1-mini` models are specifically designed to tackle r
4242

4343
The `o1` and `o1-mini` models are now available for API access and model deployment. **Registration is required, and access will be granted based on Microsoft's eligibility criteria**. Customers who previously applied and received access to `o1-preview` do not need to reapply as they will automatically be on the wait-list for the latest model.
4444

45-
Request access: [limited access model application](https://aka.ms/oai/modelaccess)
45+
Request access: [limited access model application](https://aka.ms/OAI/o1access)
4646

4747
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.
4848

49-
To learn more about the advanced `o1` series models see, [getting started with o1 series reasoning models](../how-to/).
49+
To learn more about the advanced `o1` series models see, [getting started with o1 series reasoning models](../how-to/reasoning.md).
5050

5151
### Region availability
5252

5353
| Model | Region |
5454
|---|---|
5555
|`o1` | East US2 (Global Standard) <br> Sweden Central (Global Standard) |
56-
| `o1-preview` | See [models table](../concepts/models.md#global-standard). |
57-
| `o1-mini` | See [models table](../concepts/models.md#global-standard). |
56+
| `o1-preview` | See the [models table](#global-standard-model-availability). |
57+
| `o1-mini` | See the [models table](#global-provisioned-managed-model-availability). |
5858

5959
## GPT-4o-Realtime-Preview
6060

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

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ Once access has been granted, you will need to create a deployment for each mode
3535
| Model | Region |
3636
|---|---|
3737
|`o1` | East US2 (Global Standard) <br> Sweden Central (Global Standard) |
38-
| `o1-preview` | See [models page](../concepts/models.md#global-standard). |
39-
| `o1-mini` | See [models page](../concepts/models.md#global-standard). |
38+
| `o1-preview` | See [models page](../concepts/models.md#global-standard-model-availability). |
39+
| `o1-mini` | See [models page](../concepts/models.md#global-standard-model-availability). |
4040

4141
## API support
4242

@@ -259,8 +259,7 @@ response = client.chat.completions.create(
259259
{"role": "developer","content": "You are a helpful assistant."}, # optional equivalent to a system message for reasoning models
260260
{"role": "user", "content": "What steps should I think about when writing my first Python API?"},
261261
],
262-
max_completion_tokens = 5000,
263-
reasoning_effort = "medium" # optional
262+
max_completion_tokens = 5000
264263

265264
)
266265

@@ -291,9 +290,7 @@ response = client.chat.completions.create(
291290
{"role": "developer","content": "You are a helpful assistant."}, # optional equivalent to a system message for reasoning models
292291
{"role": "user", "content": "What steps should I think about when writing my first Python API?"},
293292
],
294-
max_completion_tokens = 5000,
295-
reasoning_effort = medium
296-
293+
max_completion_tokens = 5000
297294
)
298295

299296
print(response.model_dump_json(indent=2))

0 commit comments

Comments
 (0)