Skip to content

Commit ef7d8a7

Browse files
authored
Merge pull request #256939 from MicrosoftDocs/main
11/01 OOB Publish at 9AM
2 parents 0ab5758 + 23b67f9 commit ef7d8a7

File tree

168 files changed

+5281
-460
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

168 files changed

+5281
-460
lines changed

.openpublishing.redirection.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24843,7 +24843,12 @@
2484324843
},
2484424844
{
2484524845
"source_path_from_root": "/articles/orbital/delete-contact.md",
24846-
"redirect_url": "/azure/orbital/spacecraft-object",
24846+
"redirect_url": "/azure/orbital/spacecraft-object",
24847+
"redirect_document_id": false
24848+
},
24849+
{
24850+
"source_path_from_root": "/articles/operator-service-manager/overview.md",
24851+
"redirect_url": "azure/operator-service-manager/azure-operator-service-manager-overview",
2484724852
"redirect_document_id": false
2484824853
}
2484924854
]

articles/ai-services/openai/includes/chatgpt-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ keywords:
3131
Install the OpenAI Python client library with:
3232

3333
```console
34-
pip install openai
34+
pip install openai==0.28.1
3535
```
3636

3737
> [!NOTE]

articles/ai-services/openai/includes/dall-e-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Open a command prompt and browse to your project folder. Create a new python fil
5454
Install the OpenAI Python SDK by using the following command:
5555

5656
```bash
57-
pip install openai
57+
pip install openai==0.28.1
5858
```
5959

6060
Install the following libraries as well:

articles/ai-services/openai/includes/fine-tuning-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ OpenAI's CLI data preparation tool was developed for the previous generation of
105105
To install the OpenAI CLI, run the following Python command:
106106

107107
```console
108-
pip install --upgrade openai
108+
pip install openai==0.28.1
109109
```
110110

111111
To analyze your training data with the data preparation tool, run the following Python command. Replace the _\<LOCAL_FILE>_ argument with the full path and file name of the training data file to analyze:

articles/ai-services/openai/includes/fine-tuning-rest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ OpenAI's CLI data preparation tool was developed for the previous generation of
103103
To install the OpenAI CLI, run the following Python command:
104104

105105
```console
106-
pip install --upgrade openai
106+
pip install openai==0.28.1
107107
```
108108

109109
To analyze your training data with the data preparation tool, run the following Python command. Replace the _\<LOCAL_FILE>_ argument with the full path and file name of the training data file to analyze:

articles/ai-services/openai/includes/fine-tuning-studio.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ OpenAI's CLI data preparation tool was developed for the previous generation of
105105
To install the OpenAI CLI, run the following Python command:
106106

107107
```console
108-
pip install --upgrade openai
108+
pip install openai==0.28.1
109109
```
110110

111111
To analyze your training data with the data preparation tool, run the following Python command. Replace the _\<LOCAL_FILE>_ argument with the full path and file name of the training data file to analyze:

articles/ai-services/openai/includes/python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ keywords:
3030
Install the OpenAI Python client library with:
3131

3232
```console
33-
pip install openai
33+
pip install openai==0.28.1
3434
```
3535

3636
> [!NOTE]

articles/ai-services/openai/includes/use-your-data-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ ms.date: 08/29/2023
2222
1. Install the following Python Libraries:
2323

2424
```cmd
25-
pip install "openai>=0.27.6"
25+
pip install openai==0.28.1
2626
pip install python-dotenv
2727
```
2828

articles/ai-services/openai/tutorials/embeddings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ In this tutorial, you learn how to:
4747
If you haven't already, you need to install the following libraries:
4848

4949
```cmd
50-
pip install openai num2words matplotlib plotly scipy scikit-learn pandas tiktoken
50+
pip install "openai==0.28.1" num2words matplotlib plotly scipy scikit-learn pandas tiktoken
5151
```
5252

5353
<!--Alternatively, you can use our [requirements.txt file](https://github.com/Azure-Samples/Azure-OpenAI-Docs-Samples/blob/main/Samples/Tutorials/Embeddings/requirements.txt).-->

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ In this tutorial you learn how to:
5050
If you haven't already, you need to install the following libraries:
5151

5252
```cmd
53-
pip install openai json requests os tiktoken time
53+
pip install "openai==0.28.1" json requests os tiktoken time
5454
```
5555

5656
[!INCLUDE [get-key-endpoint](../includes/get-key-endpoint.md)]

0 commit comments

Comments
 (0)