Skip to content

Commit 6e6a8ce

Browse files
committed
update
1 parent f274965 commit 6e6a8ce

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ OpenAI released a new version of the [OpenAI Python API library](https://github.
3838
## Test before you migrate
3939

4040
> [!IMPORTANT]
41-
> 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.
4242
4343
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.
4444

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

6565
# [OpenAI Python 1.x](#tab/python-new)
6666

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 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.
6868

6969
```python
7070
import os
@@ -93,7 +93,7 @@ Additional examples can be found in our [in-depth Chat Completion article](chatg
9393

9494
# [OpenAI Python 0.28.1](#tab/python)
9595

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 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.
9797

9898
```python
9999
import os
@@ -539,7 +539,7 @@ asyncio.run(dall_e())
539539
## Name changes
540540

541541
> [!NOTE]
542-
> 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.
543543
544544
| OpenAI Python 0.28.1 | OpenAI Python 1.x |
545545
| --------------- | --------------- |

0 commit comments

Comments
 (0)