Skip to content

Commit 0bb9279

Browse files
Merge pull request #5838 from mrbullwinkle/mrb_07_02_2025_freshness_002
[Azure OpenAI] [Freshness] [002]
2 parents 215ba70 + 3d445d5 commit 0bb9279

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

articles/ai-foundry/openai/concepts/abuse-monitoring.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: mrbullwinkle
66
ms.author: mbullwin
77
ms.service: azure-ai-openai
88
ms.topic: conceptual
9-
ms.date: 03/27/2025
9+
ms.date: 07/02/2025
1010
ms.custom: template-concept, ignite-2024
1111
manager: nitinme
1212
---

articles/ai-foundry/openai/concepts/advanced-prompt-engineering.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: mrbullwinkle
66
ms.author: mbullwin
77
ms.service: azure-ai-openai
88
ms.topic: conceptual
9-
ms.date: 03/26/2025
9+
ms.date: 07/02/2025
1010
manager: nitinme
1111
keywords: ChatGPT, GPT-4, meta prompts, chain of thought
1212
---

articles/ai-foundry/openai/concepts/red-teaming.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Learn about how red teaming and adversarial testing are an essentia
55
author: mrbullwinkle
66
ms.author: mbullwin
77
manager: nitinme
8-
ms.date: 03/27/2025
8+
ms.date: 07/02/2025
99
ms.service: azure-ai-openai
1010
ms.topic: conceptual
1111
ms.custom:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ manager: nitinme
66
ms.service: azure-ai-openai
77
ms.custom: devx-track-python
88
ms.topic: how-to
9-
ms.date: 03/27/2025
9+
ms.date: 07/02/2025
1010
author: mrbullwinkle
1111
ms.author: mbullwin
1212
recommendations: false

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Monitor Azure OpenAI in Azure AI Foundry Models
33
description: Start here to learn how to use Azure Monitor tools like Log Analytics to capture and analyze metrics and data logs for your Azure OpenAI.
4-
ms.date: 03/26/2025
4+
ms.date: 07/02/2025
55
ms.custom: horz-monitor, subject-monitoring
66
ms.topic: conceptual
77
author: mrbullwinkle

articles/ai-foundry/openai/how-to/working-with-models.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ titleSuffix: Azure OpenAI
44
description: Learn about managing model deployment life cycle, updates, & retirement.
55
ms.service: azure-ai-openai
66
ms.topic: conceptual
7-
ms.date: 03/31/2025
7+
ms.date: 07/02/2025
88
ms.custom: references_regions, build-2023, build-2023-dataai, devx-track-azurepowershell
99
manager: nitinme
1010
author: mrbullwinkle #ChrisHMSFT
@@ -59,9 +59,9 @@ The corresponding property can also be accessed via [REST](../how-to/working-wit
5959

6060
|Option| Read | Update |
6161
|---|---|---|
62-
| [REST](../how-to/working-with-models.md#model-deployment-upgrade-configuration) | Yes. If `versionUpgradeOption` is not returned, it means it is `null` |Yes |
62+
| [REST](../how-to/working-with-models.md#model-deployment-upgrade-configuration) | Yes. If `versionUpgradeOption` isn't returned, it means it's `null` |Yes |
6363
| [Azure PowerShell](/powershell/module/az.cognitiveservices/get-azcognitiveservicesaccountdeployment) | Yes.`VersionUpgradeOption` can be checked for `$null`| Yes |
64-
| [Azure CLI](/cli/azure/cognitiveservices/account/deployment#az-cognitiveservices-account-deployment-show) | Yes. It shows `null` if `versionUpgradeOption` is not set.| *No.* It is currently not possible to update the version upgrade option.|
64+
| [Azure CLI](/cli/azure/cognitiveservices/account/deployment#az-cognitiveservices-account-deployment-show) | Yes. It shows `null` if `versionUpgradeOption` isn't set.| *No.* It's currently not possible to update the version upgrade option.|
6565

6666
There are three distinct model deployment upgrade options:
6767

@@ -72,7 +72,7 @@ There are three distinct model deployment upgrade options:
7272
|`NoAutoUpgrade` | The model deployment never automatically upgrades. Once the retirement date is reached the model deployment stops working. You need to update your code referencing that deployment to point to a nonexpired model deployment. |
7373

7474
> [!NOTE]
75-
> `null` is equivalent to `OnceCurrentVersionExpired`. If the **Version update policy** option is not present in the properties for a model that supports model upgrades this indicates the value is currently `null`. Once you explicitly modify this value, the property is visible in the studio properties page as well as via the REST API.
75+
> `null` is equivalent to `OnceCurrentVersionExpired`. If the **Version update policy** option isn't present in the properties for a model that supports model upgrades this indicates the value is currently `null`. Once you explicitly modify this value, the property is visible in the studio properties page as well as via the REST API.
7676
7777
### Examples
7878

@@ -223,7 +223,7 @@ This is only a subset of the available request body parameters. For the full lis
223223
|Parameter|Type| Description |
224224
|--|--|--|
225225
|versionUpgradeOption | String | Deployment model version upgrade options:<br>`OnceNewDefaultVersionAvailable`<br>`OnceCurrentVersionExpired`<br>`NoAutoUpgrade`|
226-
|capacity|integer|This represents the amount of [quota](../how-to/quota.md) you are assigning to this deployment. A value of 1 equals 1,000 Tokens per Minute (TPM)|
226+
|capacity|integer|This represents the amount of [quota](../how-to/quota.md) you're assigning to this deployment. A value of 1 equals 1,000 Tokens per Minute (TPM)|
227227

228228
#### Example request
229229

@@ -302,7 +302,7 @@ Selecting a deployment name opens the **Properties** for the model deployment. F
302302
![Screenshot of update deployment dialogue box with the model version field selector opened to show model version options available for selection.](media/working-with-models/provisioned-deployment-model-version-update.png)
303303

304304
#### In-place migration: model family change
305-
In-place migration that target updating an existing provisioned deployment to a new model family are supported through REST API and Azure CLI. To perform an in-place migration targeting a model family change, use the example request below as a guide. In the request, you will need to update the model name and model version for the target model you are migrating to.
305+
In-place migrations that target updating an existing provisioned deployment to a new model family are supported through REST API and Azure CLI. To perform an in-place migration targeting a model family change, use the example request below as a guide. In the request, you'll need to update the model name and model version for the target model you're migrating to.
306306

307307
```Bash
308308
curl -X PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resource-group-temp/providers/Microsoft.CognitiveServices/accounts/docs-openai-test-001/deployments/gpt-4o-ptu-deployment?api-version=2024-10-01 \
@@ -365,7 +365,7 @@ curl -X PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-0
365365
Multi-deployment migrations allow you to have greater control over the model migration process. With multi-deployment migrations, you can dictate how quickly you would like to migrate your existing traffic to the target model version or model family on a new provisioned deployment. The process to migrate to a new model version or model family using the multi-deployment migration approach is as follows:
366366
- Create a new provisioned deployment. For this new deployment, you can choose to maintain the same provisioned deployment type as your existing deployment or select a new deployment type if desired.
367367
- Transition traffic from the existing provisioned deployment to the newly created provisioned deployment with your target model version or model family until all traffic is offloaded from the original deployment.
368-
- Once traffic is migrated over to the new deployment, validate that there are no inference requests being processed on the previous provisioned deployment by ensuring the Azure OpenAI Requests metric does not show any API calls made within 5-10 minutes of the inference traffic being migrated over to the new deployment. For more information on this metric, [see the Monitor Azure OpenAI documentation](https://aka.ms/aoai/docs/monitor-azure-openai).
368+
- Once traffic is migrated over to the new deployment, validate that there are no inference requests being processed on the previous provisioned deployment by ensuring the Azure OpenAI Requests metric doesn't show any API calls made within 5-10 minutes of the inference traffic being migrated over to the new deployment. For more information on this metric, [see the Monitor Azure OpenAI documentation](https://aka.ms/aoai/docs/monitor-azure-openai).
369369
- Once you confirm that no inference calls have been made, delete the original provisioned deployment.
370370

371371
## Next steps

articles/ai-foundry/openai/tutorials/fine-tune.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Learn how to use Azure OpenAI's latest fine-tuning capabilities wit
55
manager: nitinme
66
ms.service: azure-ai-openai
77
ms.topic: tutorial
8-
ms.date: 03/26/2025
8+
ms.date: 07/02/2025
99
author: mrbullwinkle
1010
ms.author: mbullwin
1111
recommendations: false

0 commit comments

Comments
 (0)