Skip to content

Commit e3a8d9b

Browse files
Merge pull request #3658 from eric-urban/eur/aoai-go-quickstarts
aoai go quickstarts
2 parents 35244a8 + ace84a3 commit e3a8d9b

35 files changed

+749
-280
lines changed

articles/ai-services/openai/chatgpt-quickstart.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
---
2-
title: 'Quickstart - Get started using GPT-35-Turbo and GPT-4 with Azure OpenAI Service'
2+
title: 'Quickstart - Get started using chat completions with Azure OpenAI Service'
33
titleSuffix: Azure OpenAI Service
4-
description: Walkthrough on how to get started with GPT-35-Turbo and GPT-4 on Azure OpenAI Service.
4+
description: Walkthrough on how to get started using chat completions with Azure OpenAI Service.
55
#services: cognitive-services
66
manager: nitinme
77
ms.service: azure-ai-openai
88
ms.custom: build-2023, build-2023-dataai, devx-track-python, devx-track-dotnet, devx-track-extended-java, devx-track-js, devx-track-go
99
ms.topic: quickstart
1010
author: mrbullwinkle
1111
ms.author: mbullwin
12-
ms.date: 09/20/2024
12+
ms.date: 3/21/2025
1313
zone_pivot_groups: openai-quickstart-new
1414
recommendations: false
1515
---
1616

17-
# Quickstart: Get started using GPT-35-Turbo and GPT-4 with Azure OpenAI Service
17+
# Quickstart: Get started using chat completions with Azure OpenAI Service
1818

1919
Use this article to get started using Azure OpenAI.
2020

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/assistants-csharp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ For the recommended keyless authentication with Microsoft Entra ID, you need to:
2828

2929
## Set up
3030

31-
1. Create a new folder `assistants-quickstart` to contain the application and open Visual Studio Code in that folder with the following command:
31+
1. Create a new folder `assistants-quickstart` and go to the quickstart folder with the following command:
3232

3333
```shell
3434
mkdir assistants-quickstart && cd assistants-quickstart

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ For the recommended keyless authentication with Microsoft Entra ID, you need to:
3030

3131
## Set up
3232

33-
1. Create a new folder `assistants-quickstart` to contain the application and open Visual Studio Code in that folder with the following command:
33+
1. Create a new folder `assistants-quickstart` and go to the quickstart folder with the following command:
3434

3535
```shell
3636
mkdir assistants-quickstart && cd assistants-quickstart

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ For the recommended keyless authentication with Microsoft Entra ID, you need to:
3131

3232
## Set up
3333

34-
1. Create a new folder `assistants-quickstart` to contain the application and open Visual Studio Code in that folder with the following command:
34+
1. Create a new folder `assistants-quickstart` and go to the quickstart folder with the following command:
3535

3636
```shell
3737
mkdir assistants-quickstart && cd assistants-quickstart

articles/ai-services/openai/includes/audio-completions-javascript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ For the recommended keyless authentication with Microsoft Entra ID, you need to:
2626

2727
## Set up
2828

29-
1. Create a new folder `audio-completions-quickstart` to contain the application and open Visual Studio Code in that folder with the following command:
29+
1. Create a new folder `audio-completions-quickstart` and go to the quickstart folder with the following command:
3030

3131
```shell
3232
mkdir audio-completions-quickstart && cd audio-completions-quickstart

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ For the recommended keyless authentication with Microsoft Entra ID, you need to:
2828

2929
## Set up
3030

31-
1. Create a new folder `audio-completions-quickstart` to contain the application and open Visual Studio Code in that folder with the following command:
31+
1. Create a new folder `audio-completions-quickstart` and go to the quickstart folder with the following command:
3232

3333
```shell
3434
mkdir audio-completions-quickstart && cd audio-completions-quickstart

articles/ai-services/openai/includes/audio-completions-rest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ For the recommended keyless authentication with Microsoft Entra ID, you need to:
2626

2727
## Set up
2828

29-
1. Create a new folder `audio-completions-quickstart` to contain the application and open Visual Studio Code in that folder with the following command:
29+
1. Create a new folder `audio-completions-quickstart` and go to the quickstart folder with the following command:
3030

3131
```shell
3232
mkdir audio-completions-quickstart && cd audio-completions-quickstart

articles/ai-services/openai/includes/audio-completions-typescript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ For the recommended keyless authentication with Microsoft Entra ID, you need to:
2727

2828
## Set up
2929

30-
1. Create a new folder `audio-completions-quickstart` to contain the application and open Visual Studio Code in that folder with the following command:
30+
1. Create a new folder `audio-completions-quickstart` and go to the quickstart folder with the following command:
3131

3232
```shell
3333
mkdir audio-completions-quickstart && cd audio-completions-quickstart

0 commit comments

Comments
 (0)