You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/ai-services/openai/how-to/chat-markup-language.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ keywords: ChatGPT
19
19
The following code snippet shows the most basic way to use the GPT-3.5-Turbo models with ChatML. If this is your first time using these models programmatically we recommend starting with our [GPT-35-Turbo & GPT-4 Quickstart](../chatgpt-quickstart.md).
20
20
21
21
> [!NOTE]
22
-
> In the Azure OpenAI documentation we refer to GPT-3.5-Turbo, and GPT-35-Turbo interchangeably. The official name of the model on OpenAI is `gpt-3.5-turbo`, but for Azure OpenAI due to Azure specific character constraints the underlying model name is `gpt-35-turbo`.
22
+
> In the Azure OpenAI documentation we refer to GPT-3.5-Turbo and GPT-35-Turbo interchangeably. The official name of the model on OpenAI is `gpt-3.5-turbo`, but for Azure OpenAI due to Azure specific character constraints the underlying model name is `gpt-35-turbo`.
Copy file name to clipboardExpand all lines: articles/ai-services/openai/includes/chat-go.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ ms.date: 06/30/2024
16
16
17
17
- An Azure subscription - [Create one for free](https://azure.microsoft.com/free/cognitive-services?azure-portal=true)
18
18
-[Go 1.21.0](https://go.dev/dl/) or higher installed locally.
19
-
- An Azure OpenAI Service resource with the `gpt-35-turbo` model deployed. For more information about model deployment, see the [resource deployment guide](../how-to/create-resource.md).
19
+
- An Azure OpenAI Service resource with the `gpt-4` model deployed. For more information about model deployment, see the [resource deployment guide](../how-to/create-resource.md).
Copy file name to clipboardExpand all lines: articles/ai-services/openai/includes/chatgpt-java.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ ms.date: 07/03/2024
18
18
- An Azure subscription - [Create one for free](https://azure.microsoft.com/free/cognitive-services?azure-portal=true)
19
19
* The current version of the [Java Development Kit (JDK)](https://www.microsoft.com/openjdk)
20
20
- The [Gradle build tool](https://gradle.org/install/), or another dependency manager.
21
-
- An Azure OpenAI Service resource with either the `gpt-35-turbo` or the `gpt-4`models deployed. For more information about model deployment, see the [resource deployment guide](../how-to/create-resource.md).
21
+
- An Azure OpenAI Service resource with the `gpt-4`model deployed. For more information about model deployment, see the [resource deployment guide](../how-to/create-resource.md).
Copy file name to clipboardExpand all lines: articles/ai-services/openai/includes/chatgpt-javascript.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ ms.date: 10/22
21
21
- An Azure subscription - [Create one for free](https://azure.microsoft.com/free/cognitive-services?azure-portal=true)
22
22
-[LTS versions of Node.js](https://github.com/nodejs/release#release-schedule)
23
23
-[Azure CLI](/cli/azure/install-azure-cli) used for passwordless authentication in a local development environment, create the necessary context by signing in with the Azure CLI.
24
-
- An Azure OpenAI Service resource with either a `gpt-35-turbo` or `gpt-4` series models deployed. For more information about model deployment, see the [resource deployment guide](../how-to/create-resource.md).
24
+
- An Azure OpenAI Service resource with a `gpt-4` series model deployed. For more information about model deployment, see the [resource deployment guide](../how-to/create-resource.md).
Copy file name to clipboardExpand all lines: articles/ai-services/openai/includes/chatgpt-powershell.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ ms.date: 08/28/2023
15
15
- An Azure subscription - [Create one for free](https://azure.microsoft.com/free/cognitive-services?azure-portal=true)
16
16
- <ahref="https://aka.ms/installpowershell"target="_blank">You can use either the latest version, PowerShell 7, or Windows PowerShell 5.1.</a>
17
17
- An Azure OpenAI Service resource with a model deployed. For more information about model deployment, see the [resource deployment guide](../how-to/create-resource.md).
18
-
- An Azure OpenAI Service resource with either the `gpt-35-turbo` or the `gpt-4`models deployed. For more information about model deployment, see the [resource deployment guide](../how-to/create-resource.md).
18
+
- An Azure OpenAI Service resource with the `gpt-4`model deployed. For more information about model deployment, see the [resource deployment guide](../how-to/create-resource.md).
1. Create a new PowerShell file called quickstart.ps1. Then open it up in your preferred editor or IDE.
66
66
67
-
1. Replace the contents of quickstart.ps1 with the following code. You need to set the `engine` variable to the deployment name you chose when you deployed the GPT-35-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.
67
+
1. Replace the contents of quickstart.ps1 with the following code. You need to set the `engine` variable to the deployment name you chose when you deployed the or GPT-4 model. Entering the model name will result in an error unless you chose a deployment name that is identical to the underlying model name.
The GPT-35-Turbo and GPT-4 models are optimized to work with inputs formatted as a conversation. The `messages` variable passes an array of dictionaries with different roles in the conversation delineated by system, user, and assistant. The system message can be used to prime the model by including context or instructions on how the model should respond.
145
+
The GPT-4 models are optimized to work with inputs formatted as a conversation. The `messages` variable passes an array of dictionaries with different roles in the conversation delineated by system, user, and assistant. The system message can be used to prime the model by including context or instructions on how the model should respond.
146
146
147
-
The [GPT-35-Turbo & GPT-4 how-to guide](../how-to/chatgpt.md) provides an in-depth introduction into the options for communicating with these new models.
147
+
The [GPT-4 how-to guide](../how-to/chatgpt.md) provides an in-depth introduction into the options for communicating with these models.
148
148
149
149
## Clean up resources
150
150
@@ -155,5 +155,5 @@ If you want to clean up and remove an Azure OpenAI resource, you can delete the
155
155
156
156
## Next steps
157
157
158
-
- Learn more about how to work with GPT-35-Turbo and the GPT-4 models with [our how-to guide](../how-to/chatgpt.md).
158
+
- Learn more about how to work with the GPT-4 models with [our how-to guide](../how-to/chatgpt.md).
159
159
- For more examples, check out the [Azure OpenAI Samples GitHub repository](https://github.com/Azure-Samples/openai)
Copy file name to clipboardExpand all lines: articles/ai-services/openai/includes/chatgpt-spring.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ ms.date: 11/27/2023
15
15
- An Azure subscription - [Create one for free](https://azure.microsoft.com/free/cognitive-services?azure-portal=true)
16
16
- The current version of the [Java Development Kit (JDK)](https://www.microsoft.com/openjdk)
17
17
- The [Spring Boot CLI tool](https://docs.spring.io/spring-boot/docs/current/reference/html/getting-started.html#getting-started.installing.cli)
18
-
- An Azure OpenAI Service resource with the `gpt-35-turbo` model deployed. For more information about model deployment, see the [resource deployment guide](../how-to/create-resource.md). This example assumes that your deployment name matches the model name `gpt-35-turbo`
18
+
- An Azure OpenAI Service resource with the `gpt-4` model deployed. For more information about model deployment, see the [resource deployment guide](../how-to/create-resource.md). This example assumes that your deployment name matches the model name `gpt-4`
-[Azure CLI](/cli/azure/install-azure-cli) used for passwordless authentication in a local development environment, create the necessary context by signing in with the Azure CLI.
25
-
- An Azure OpenAI Service resource with a `gpt-35-turbo` or `gpt-4` series models deployed. For more information about model deployment, see the [resource deployment guide](../how-to/create-resource.md).
25
+
- An Azure OpenAI Service resource with a `gpt-4` series model deployed. For more information about model deployment, see the [resource deployment guide](../how-to/create-resource.md).
0 commit comments