Skip to content

Commit d8661e2

Browse files
committed
use gpt-4
1 parent 23cfbfa commit d8661e2

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

articles/ai-services/openai/how-to/chat-markup-language.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ keywords: ChatGPT
1919
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).
2020

2121
> [!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`.
2323
2424
```python
2525
import os

articles/ai-services/openai/includes/chat-go.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ms.date: 06/30/2024
1616

1717
- An Azure subscription - [Create one for free](https://azure.microsoft.com/free/cognitive-services?azure-portal=true)
1818
- [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).
2020

2121
### Microsoft Entra ID prerequisites
2222

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ ms.date: 07/03/2024
1818
- An Azure subscription - [Create one for free](https://azure.microsoft.com/free/cognitive-services?azure-portal=true)
1919
* The current version of the [Java Development Kit (JDK)](https://www.microsoft.com/openjdk)
2020
- 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).
2222

2323

2424
## Set up

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ ms.date: 10/22
2121
- An Azure subscription - [Create one for free](https://azure.microsoft.com/free/cognitive-services?azure-portal=true)
2222
- [LTS versions of Node.js](https://github.com/nodejs/release#release-schedule)
2323
- [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).
2525

2626
### Microsoft Entra ID prerequisites
2727

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ms.date: 08/28/2023
1515
- An Azure subscription - [Create one for free](https://azure.microsoft.com/free/cognitive-services?azure-portal=true)
1616
- <a href="https://aka.ms/installpowershell" target="_blank">You can use either the latest version, PowerShell 7, or Windows PowerShell 5.1.</a>
1717
- 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).
1919

2020
### Retrieve key and endpoint
2121

@@ -64,7 +64,7 @@ echo export AZURE_OPENAI_ENDPOINT="REPLACE_WITH_YOUR_ENDPOINT_HERE" >> /etc/envi
6464

6565
1. Create a new PowerShell file called quickstart.ps1. Then open it up in your preferred editor or IDE.
6666

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

6969
```powershell-interactive
7070
# Azure OpenAI metadata variables
@@ -127,7 +127,7 @@ echo export AZURE_OPENAI_ENDPOINT="REPLACE_WITH_YOUR_ENDPOINT_HERE" >> /etc/envi
127127
id : chatcmpl-7sdJJRC6fDNGnfHMdfHXvPkYFbaVc
128128
object : chat.completion
129129
created : 1693255177
130-
model : gpt-35-turbo
130+
model : gpt-4
131131
choices : {@{index=0; finish_reason=stop; message=}}
132132
usage : @{completion_tokens=67; prompt_tokens=55; total_tokens=122}
133133
@@ -142,9 +142,9 @@ $response.choices.message.content
142142

143143
### Understanding the message structure
144144

145-
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.
146146

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

149149
## Clean up resources
150150

@@ -155,5 +155,5 @@ If you want to clean up and remove an Azure OpenAI resource, you can delete the
155155

156156
## Next steps
157157

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).
159159
- For more examples, check out the [Azure OpenAI Samples GitHub repository](https://github.com/Azure-Samples/openai)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ms.date: 11/27/2023
1515
- An Azure subscription - [Create one for free](https://azure.microsoft.com/free/cognitive-services?azure-portal=true)
1616
- The current version of the [Java Development Kit (JDK)](https://www.microsoft.com/openjdk)
1717
- 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`
1919

2020
## Set up
2121

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ ms.date: 10/22
2222
- [LTS versions of Node.js](https://github.com/nodejs/release#release-schedule)
2323
- [TypeScript](https://www.typescriptlang.org/download/)
2424
- [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).
2626

2727
### Microsoft Entra ID prerequisites
2828

0 commit comments

Comments
 (0)