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: learn-pr/wwl-data-ai/build-language-solution-azure-openai/includes/3-use-openai-rest.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
@@ -1,7 +1,7 @@
1
1
Azure OpenAI offers a REST API for interacting and generating responses that developers can use to add AI functionality to their applications. This unit covers example usage, input and output from the API.
2
2
3
3
> [!NOTE]
4
-
> Before interacting with the API, you must create an Azure OpenAI resource in the Azure portal, deploy a model in that resource, and retrieve your endpoint and keys. Check out the [Getting started with Azure OpenAI Service](/training/modules/get-started-openai/) to learn how to do that.
4
+
> Before interacting with the API, you must create an Azure OpenAI resource in the Azure portal, deploy a model in that resource, and retrieve your endpoint and keys. Check out the [Getting started with Azure OpenAI Service](/azure/ai-services/openai) to learn how to do that.
5
5
6
6
For each call to the REST API, you need the endpoint and a key from your Azure OpenAI resource, and the name you gave for your deployed model. In the following examples, the following placeholders are used:
Copy file name to clipboardExpand all lines: learn-pr/wwl-data-ai/build-language-solution-azure-openai/includes/4-use-openai-sdk.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
@@ -1,7 +1,7 @@
1
1
In addition to REST APIs covered in the previous unit, users can also access Azure OpenAI models through C# and Python SDKs. The same functionality is available through both REST and these SDKs.
2
2
3
3
> [!NOTE]
4
-
> Before interacting with the API using either SDK, you must create an Azure OpenAI resource in the Azure portal, deploy a model in that resource, and retrieve your endpoint and keys. Check out the [Getting started with Azure OpenAI Service](/training/modules/get-started-openai/) to learn how to do that.
4
+
> Before interacting with the API using either SDK, you must create an Azure OpenAI resource in the Azure portal, deploy a model in that resource, and retrieve your endpoint and keys. Check out the [Getting started with Azure OpenAI Service](/azure/ai-services/openai) to learn how to do that.
5
5
6
6
For both SDKs covered in this unit, you need the endpoint and a key from your Azure OpenAI resource, and the name you gave for your deployed model. In the following code snippets, the following placeholders are used:
description: Use DALL-E in Azure OpenAI service to generate images
6
-
author: ivorb
7
-
ms.author: berryivor
8
-
ms.date: 03/18/2025
9
-
ms.service: azure-ai-openai
10
-
ms.topic: module-standard-task-based
11
-
ms.collection:
12
-
- wwl-ai-copilot
13
-
title: Generate images with Azure OpenAI Service
14
-
summary: "The Azure OpenAI service includes the DALL-E model, which you can use to generate original images based on natural language prompts."
15
-
abstract: |
16
-
By the end of this module, you'll be able to:
17
-
- Describe the capabilities of DALL-E in the Azure OpenAI service
18
-
- Use the DALL-E playground in Azure AI Studio
19
-
- Use the Azure OpenAI REST interface to integrate DALL-E image generation into your apps
20
-
prerequisites: |
21
-
Before starting this module, you should be familiar with the Azure OpenAI service. Consider completing the [Get started with Azure OpenAI Service](/training/modules/get-started-openai/) module before starting this one.
description: Use DALL-E in Azure OpenAI service to generate images
6
+
author: ivorb
7
+
ms.author: berryivor
8
+
ms.date: 03/18/2025
9
+
ms.service: azure-ai-openai
10
+
ms.topic: module-standard-task-based
11
+
ms.collection:
12
+
- wwl-ai-copilot
13
+
title: Generate images with Azure OpenAI Service
14
+
summary: "The Azure OpenAI service includes the DALL-E model, which you can use to generate original images based on natural language prompts."
15
+
abstract: |
16
+
By the end of this module, you'll be able to:
17
+
- Describe the capabilities of DALL-E in the Azure OpenAI service
18
+
- Use the DALL-E playground in Azure AI Studio
19
+
- Use the Azure OpenAI REST interface to integrate DALL-E image generation into your apps
20
+
prerequisites: |
21
+
Before starting this module, you should be familiar with the Azure OpenAI service. Consider completing the [Get started with Azure OpenAI Service](/azure/ai-services/openai) module before starting this one.
0 commit comments