Skip to content

Commit 8e088bb

Browse files
Merge pull request #7385 from mrbullwinkle/mrb_09_30_2025_freshness_004
[Azure OpenAI] [Freshness 004]
2 parents 78b055c + af07870 commit 8e088bb

File tree

7 files changed

+15
-13
lines changed

7 files changed

+15
-13
lines changed

articles/ai-foundry/openai/concepts/customizing-llms.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Azure OpenAI in Azure AI Foundry Models getting started with customizing
33
titleSuffix: Azure OpenAI
44
description: Learn more about the concepts behind customizing an LLM with Azure OpenAI.
55
ms.topic: conceptual
6-
ms.date: 07/02/2025
6+
ms.date: 09/30/2025
77
ms.service: azure-ai-openai
88
manager: nitinme
99
author: mrbullwinkle

articles/ai-foundry/openai/concepts/fine-tuning-considerations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Learn more about what you should take into consideration before fin
44
manager: nitinme
55
ms.service: azure-ai-openai
66
ms.topic: conceptual
7-
ms.date: 07/02/2025
7+
ms.date: 09/30/2025
88
author: mrbullwinkle
99
ms.author: mbullwin
1010
recommendations: false

articles/ai-foundry/openai/how-to/business-continuity-disaster-recovery.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Considerations for implementing Business Continuity and Disaster Re
55
manager: nitinme
66
ms.service: azure-ai-openai
77
ms.topic: how-to
8-
ms.date: 07/02/2025
8+
ms.date: 09/30/2025
99
author: mrbullwinkle
1010
ms.author: mbullwin
1111
recommendations: false

articles/ai-foundry/openai/how-to/dotnet-migration.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,14 @@ ms.author: mbullwin
77
ms.service: azure-ai-openai
88
ms.custom: devx-track-dotnet
99
ms.topic: how-to
10-
ms.date: 07/02/2025
10+
ms.date: 09/30/2025
1111
manager: nitinme
1212
---
1313

1414
# Migrate from 1.0 beta to 2.0 (`Azure.AI.OpenAI`)
1515

1616
> [!NOTE]
17-
> This guide describes how to migrate an application that previously used a 1.0 beta version of the `Azure.AI.OpenAI` library to use the new 2.0 library.
18-
> For general guidance on using `OpenAI` and `Azure.AI.OpenAI` features, see [the OpenAI README](https://github.com/openai/openai-dotnet/blob/main/README.md) or [the Azure.AI.OpenAI README](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/openai/Azure.AI.OpenAI/README.md).
17+
> This guidance is no longer recommended. To take advantage of the latest v1 API refer to the [.NET programming language guide](../supported-languages.md).
1918
2019
## Setup
2120

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

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,17 @@ ms.author: mbullwin
77
ms.service: azure-ai-openai
88
ms.custom: devx-track-python
99
ms.topic: how-to
10-
ms.date: 07/02/2025
10+
ms.date: 09/30/2025
1111
manager: nitinme
1212
---
1313

1414
# Migrating to the OpenAI Python API library 1.x
1515

1616
OpenAI released a new version of the [OpenAI Python API library](https://github.com/openai/openai-python/). This guide is supplemental to [OpenAI's migration guide](https://github.com/openai/openai-python/discussions/742) and will help bring you up to speed on the changes specific to Azure OpenAI.
1717

18+
> [!NOTE]
19+
> This guidance is no longer recommended. To take advantage of the latest v1 API refer to the [Python programming language guide](../supported-languages.md).
20+
1821
## Updates
1922

2023
- This is a new version of the OpenAI Python API library.
@@ -35,7 +38,7 @@ OpenAI released a new version of the [OpenAI Python API library](https://github.
3538
## Test before you migrate
3639

3740
> [!IMPORTANT]
38-
> Automatic migration of your code using `openai migrate` is not supported with Azure OpenAI.
41+
> Automatic migration of your code using `openai migrate` isn't supported with Azure OpenAI.
3942
4043
As this is a new version of the library with breaking changes, you should test your code extensively against the new release before migrating any production applications to rely on version 1.x. You should also review your code and internal processes to make sure that you're following best practices and pinning your production code to only versions that you have fully tested.
4144

@@ -61,7 +64,7 @@ This provides context for what has changed and allows you to test the new librar
6164

6265
# [OpenAI Python 1.x](#tab/python-new)
6366

64-
You need to set the `model` variable to the deployment name you chose when you deployed the GPT-3.5-Turbo or GPT-4 models. Entering the model name results in an error unless you chose a deployment name that is identical to the underlying model name.
67+
You need to set the `model` variable to the deployment name you chose when you deployed the GPT-3.5-Turbo or GPT-4 models. Entering the model name results in an error unless you chose a deployment name that's identical to the underlying model name.
6568

6669
```python
6770
import os
@@ -90,7 +93,7 @@ Additional examples can be found in our [in-depth Chat Completion article](chatg
9093

9194
# [OpenAI Python 0.28.1](#tab/python)
9295

93-
You need to set the `engine` variable to the deployment name you chose when you deployed the GPT-3.5-Turbo or GPT-4 models. Entering the model name will result in an error unless you chose a deployment name that is identical to the underlying model name.
96+
You need to set the `engine` variable to the deployment name you chose when you deployed the GPT-3.5-Turbo or GPT-4 models. Entering the model name will result in an error unless you chose a deployment name that's identical to the underlying model name.
9497

9598
```python
9699
import os
@@ -536,7 +539,7 @@ asyncio.run(dall_e())
536539
## Name changes
537540

538541
> [!NOTE]
539-
> All a* methods have been removed; the async client must be used instead.
542+
> All `a*` methods have been removed; the async client must be used instead.
540543
541544
| OpenAI Python 0.28.1 | OpenAI Python 1.x |
542545
| --------------- | --------------- |

articles/ai-foundry/openai/how-to/weights-and-biases-integration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.service: azure-ai-openai
77
ms.custom:
88
- ignite-2024
99
ms.topic: how-to
10-
ms.date: 07/02/2025
10+
ms.date: 09/30/2025
1111
author: mrbullwinkle
1212
ms.author: mbullwin
1313
---

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

Lines changed: 1 addition & 1 deletion
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: 07/02/2025
7+
ms.date: 09/30/2025
88
ms.custom: references_regions, build-2023, build-2023-dataai, devx-track-azurepowershell
99
manager: nitinme
1010
author: mrbullwinkle #ChrisHMSFT

0 commit comments

Comments
 (0)