Skip to content

Commit d71ef9c

Browse files
committed
Azure Openai rebrand
1 parent d431f97 commit d71ef9c

File tree

20 files changed

+231
-231
lines changed

20 files changed

+231
-231
lines changed

learn-pr/wwl-data-ai/ai-agent-fundamentals/includes/3-agent-development.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Azure AI Foundry Agent Service is a managed service in Azure that is designed to
1212
1313
## OpenAI Assistants API
1414

15-
The OpenAI Assistants API provides a subset of the features in Foundry Agent Service, and can only be used with OpenAI models. In Azure, you can use the Assistants API with the Azure OpenAI service, though in practice the Foundry Agent Service provides greater flexibility and functionality for agent development on Azure.
15+
The OpenAI Assistants API provides a subset of the features in Foundry Agent Service, and can only be used with OpenAI models. In Azure, you can use the Assistants API with Azure OpenAI, though in practice the Foundry Agent Service provides greater flexibility and functionality for agent development on Azure.
1616

1717
> [!TIP]
1818
> For more information about using the OpenAI Assistants API in Azure, see **[Getting started with Azure OpenAI Assistants](/azure/ai-services/openai/how-to/assistant)**.

learn-pr/wwl-data-ai/ai-foundry-sdk/includes/04-chat-client.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ A common scenario in an AI application is to connect to a generative AI model an
33
The specific libraries and code used to build a chat client depends on how the target model has been deployed in the Azure AI Foundry project. You can deploy models to the following model hosting solutions:
44

55
- **Azure AI model inference**: A single endpoint for multiple models of different types, including OpenAI models and others from the Azure AI Foundry model catalog. Models are consumed through an **Azure AI services** resource connection in the project.
6-
- **Azure OpenAI service**: A single endpoint for OpenAI models hosted in Azure. Models are consumed through an **Azure OpenAI service** resource connection in the project.
6+
- **Azure OpenAI in Foundry Models**: A single endpoint for OpenAI models hosted in Azure. Models are consumed through an **Azure OpenAI** resource connection in the project.
77
- **Serverless API**: A model-as-a-service solution in which each deployed model is accessed through a unique endpoint and hosted in the Azure AI Foundry project.
88
- **Managed compute**: A model-as-a-service solution in which each deployed model is accessed through a unique endpoint hosted in custom compute.
99

@@ -119,13 +119,13 @@ namespace my_foundry_client
119119
120120
::: zone-end
121121

122-
## Building a client app for Azure OpenAI service deployments
122+
## Building a client app for Azure OpenAI deployments
123123

124-
When you have deployed models to the Azure OpenAI service, you can use the **AIProjectConnection** to connect to the Azure OpenAI service resource in your project and then use the Azure OpenAI SDK to chat with your models.
124+
When you have deployed models to Azure OpenAI, you can use the **AIProjectConnection** to connect to the Azure OpenAI resource in your project and then use the Azure OpenAI SDK to chat with your models.
125125

126126
::: zone pivot="python"
127127

128-
In the Azure AI Foundry SDK for Python, the **AIProjectClient** class provides a **get_azure_openai_client()** method that you can use to create an Azure OpenAI client object. You can then use the classes and methods defined in the Azure OpenAI SDK to consume a model deployed to the Azure OpenAI service.
128+
In the Azure AI Foundry SDK for Python, the **AIProjectClient** class provides a **get_azure_openai_client()** method that you can use to create an Azure OpenAI client object. You can then use the classes and methods defined in the Azure OpenAI SDK to consume a model deployed to Azure OpenAI.
129129

130130
The following Python code sample uses the Azure AI Foundry and Azure OpenAI SDKs to chat with a model deployment named **gpt-4-model**.
131131

@@ -170,7 +170,7 @@ except Exception as ex:
170170

171171
::: zone pivot="csharp"
172172

173-
To chat with a model that is deployed to the Azure OpenAI service in an Azure AI Foundry project from C#, use the **AIProjectClient** object to retrieve the default Azure OpenAI resource connection from the project, and then use the Azure OpenAI SDK to connect to the service and send prompts to the model.
173+
To chat with a model that is deployed to Azure OpenAI in an Azure AI Foundry project from C#, use the **AIProjectClient** object to retrieve the default Azure OpenAI resource connection from the project, and then use the Azure OpenAI SDK to connect to the service and send prompts to the model.
174174

175175
The following C# code sample uses the Azure AI Foundry and Azure OpenAI SDKs to chat with a model deployment named **gpt-4-model**.
176176

learn-pr/wwl-data-ai/build-copilot-ai-studio/includes/3-search-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ When you want to be able to use vector search to search your data, you need to c
3030
![Diagram showing a vector index that contains embeddings.](../media/vector-index.png)
3131

3232
> [!Tip]
33-
> Learn more about [embeddings in the Azure OpenAI Service](/azure/ai-services/openai/concepts/understand-embeddings?azure-portal=true).
33+
> Learn more about [embeddings in the Azure OpenAI in Foundry Models](/azure/ai-services/openai/concepts/understand-embeddings?azure-portal=true).
3434
3535
## Creating a search index
3636

Lines changed: 50 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,50 @@
1-
### YamlMime:ModuleUnit
2-
uid: learn.wwl.build-language-solution-azure-openai.knowledge-check
3-
title: Module assessment
4-
metadata:
5-
title: Module assessment
6-
description: Check your understanding of the content presented in this module.
7-
author: ivorb
8-
ms.author: berryivor
9-
ms.date: 09/04/2024
10-
ms.topic: unit
11-
ms.collection:
12-
- wwl-ai-copilot
13-
durationInMinutes: 2
14-
content: |
15-
quiz:
16-
questions:
17-
- content: "What resource values are required to make requests to your Azure OpenAI resource?"
18-
choices:
19-
- content: "Chat, Embedding, and Completion"
20-
isCorrect: false
21-
explanation: "Each call to the Azure OpenAI service requires a key, endpoint, and deployment name."
22-
- content: "Key, Endpoint, and Deployment name"
23-
isCorrect: true
24-
explanation: "Each call to the Azure OpenAI service requires a key, endpoint, and deployment name."
25-
- content: "Summary, Deployment name, and Endpoint"
26-
isCorrect: false
27-
explanation: "Each call to the Azure OpenAI service requires a key, endpoint, and deployment name."
28-
- content: "What are the three available endpoints for interacting with a deployed Azure OpenAI model?"
29-
choices:
30-
- content: "Completion, ChatCompletion, and Translation"
31-
isCorrect: false
32-
explanation: "Translation isn't an Azure OpenAI endpoint."
33-
- content: "Completion, ChatCompletion, and Embeddings"
34-
isCorrect: true
35-
explanation: "Completion, ChatCompletion, and Embeddings are the three available endpoints"
36-
- content: "Deployment, Summary, and Similarity"
37-
isCorrect: false
38-
explanation: "Completion, ChatCompletion, and Embeddings are the three available endpoints"
39-
- content: "What is the best available endpoint to model the next completion of a conversation in Azure OpenAI?"
40-
choices:
41-
- content: "ChatCompletion"
42-
isCorrect: true
43-
explanation: "The best model to use for the next response in a conversation is ChatCompletion"
44-
- content: "Embeddings"
45-
isCorrect: false
46-
explanation: "The best model to use for the next response in a conversation is ChatCompletion"
47-
- content: "TranslateCompletion"
48-
isCorrect: false
49-
explanation: "The best model to use for the next response in a conversation is ChatCompletion"
50-
1+
### YamlMime:ModuleUnit
2+
uid: learn.wwl.build-language-solution-azure-openai.knowledge-check
3+
title: Module assessment
4+
metadata:
5+
title: Module assessment
6+
description: Check your understanding of the content presented in this module.
7+
author: ivorb
8+
ms.author: berryivor
9+
ms.date: 09/04/2024
10+
ms.topic: unit
11+
ms.collection:
12+
- wwl-ai-copilot
13+
durationInMinutes: 2
14+
content: |
15+
quiz:
16+
questions:
17+
- content: "What resource values are required to make requests to your Azure OpenAI resource?"
18+
choices:
19+
- content: "Chat, Embedding, and Completion"
20+
isCorrect: false
21+
explanation: "Each call to Azure OpenAI requires a key, endpoint, and deployment name."
22+
- content: "Key, Endpoint, and Deployment name"
23+
isCorrect: true
24+
explanation: "Each call to Azure OpenAI requires a key, endpoint, and deployment name."
25+
- content: "Summary, Deployment name, and Endpoint"
26+
isCorrect: false
27+
explanation: "Each call to Azure OpenAI requires a key, endpoint, and deployment name."
28+
- content: "What are the three available endpoints for interacting with a deployed Azure OpenAI model?"
29+
choices:
30+
- content: "Completion, ChatCompletion, and Translation"
31+
isCorrect: false
32+
explanation: "Translation isn't an Azure OpenAI endpoint."
33+
- content: "Completion, ChatCompletion, and Embeddings"
34+
isCorrect: true
35+
explanation: "Completion, ChatCompletion, and Embeddings are the three available endpoints"
36+
- content: "Deployment, Summary, and Similarity"
37+
isCorrect: false
38+
explanation: "Completion, ChatCompletion, and Embeddings are the three available endpoints"
39+
- content: "What is the best available endpoint to model the next completion of a conversation in Azure OpenAI?"
40+
choices:
41+
- content: "ChatCompletion"
42+
isCorrect: true
43+
explanation: "The best model to use for the next response in a conversation is ChatCompletion"
44+
- content: "Embeddings"
45+
isCorrect: false
46+
explanation: "The best model to use for the next response in a conversation is ChatCompletion"
47+
- content: "TranslateCompletion"
48+
isCorrect: false
49+
explanation: "The best model to use for the next response in a conversation is ChatCompletion"
50+

learn-pr/wwl-data-ai/develop-applications-openai/1-introduction.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ uid: learn.wwl.develop-applications-openai.introduction
33
title: Introduction
44
metadata:
55
title: Introduction
6-
description: Learn how to start using Azure OpenAI Service. This unit introduces possible use cases for Azure OpenAI Service.
6+
description: Learn how to start using Azure OpenAI in Foundry Models. This unit introduces possible use cases for Azure OpenAI.
77
author: ivorb
88
ms.author: berryivor
99
ms.date: 03/18/2025

learn-pr/wwl-data-ai/develop-applications-openai/2-getting-started.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
### YamlMime:ModuleUnit
22
uid: learn.wwl.develop-applications-openai.getting-started
3-
title: Access Azure OpenAI Service
3+
title: Access Azure OpenAI in Foundry Models
44
metadata:
5-
title: Access Azure OpenAI Service
6-
description: This unit explains how to apply for access to Azure OpenAI Service and how to create an Azure OpenAI resource. This unit explains the first steps to working with Azure OpenAI Service.
5+
title: Access Azure OpenAI in Foundry Models
6+
description: This unit explains how to apply for access to Azure OpenAI and how to create an Azure OpenAI resource. This unit explains the first steps to working with Azure OpenAI.
77
author: ivorb
88
ms.author: berryivor
99
ms.date: 03/18/2025

learn-pr/wwl-data-ai/develop-applications-openai/7-exercise.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
### YamlMime:ModuleUnit
22
uid: learn.wwl.develop-applications-openai.exercise
3-
title: Exercise - Get started with Azure OpenAI Service
3+
title: Exercise - Get started with Azure OpenAI
44
metadata:
5-
title: Exercise - Get started with Azure OpenAI Service
6-
description: This unit contains a hands-on exercise. Learners can use the exercise to try out Azure OpenAI Service's prompt engineering capabilities.
5+
title: Exercise - Get started with Azure OpenAI
6+
description: This unit contains a hands-on exercise. Learners can use the exercise to try out Azure OpenAI's prompt engineering capabilities.
77
author: ivorb
88
ms.author: berryivor
99
ms.date: 03/18/2025

learn-pr/wwl-data-ai/develop-applications-openai/includes/1-introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ Suppose you want to build a support application that summarizes text and suggest
22

33
Generative AI models power ChatGPT's ability to produce new content, such as text, code, and images, based on natural language prompts. Many generative AI models are a subset of [deep learning algorithms](/dotnet/machine-learning/deep-learning-overview?azure-portal=true). These algorithms support various workloads across vision, speech, language, decision, search, and more.
44

5-
Azure OpenAI Service brings these generative AI models to the Azure platform, enabling you to develop powerful AI solutions that benefit from the security, scalability, and integration of other services provided by the Azure cloud platform. These models are available for building applications through a REST API, various SDKs, and a Studio interface. This module guides you through the Azure AI Foundry experience, giving you the foundation to further develop solutions with generative AI.
5+
Azure OpenAI in Foundry Models brings these generative AI models to the Azure platform, enabling you to develop powerful AI solutions that benefit from the security, scalability, and integration of other services provided by the Azure cloud platform. These models are available for building applications through a REST API, various SDKs, and a Studio interface. This module guides you through the Azure AI Foundry experience, giving you the foundation to further develop solutions with generative AI.

learn-pr/wwl-data-ai/develop-applications-openai/includes/2-getting-started.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
The first step in building a generative AI solution with Azure OpenAI is to provision an Azure OpenAI resource in your Azure subscription. You can get started by creating a resource in the [Azure portal](https://portal.azure.com/?azure-portal=true) or with the Azure command line interface (CLI).
22

3-
## Create an Azure OpenAI Service resource in the Azure portal
3+
## Create an Azure OpenAI resource in the Azure portal
44

5-
When you create an Azure OpenAI Service resource, you need to provide a subscription name, resource group name, region, unique instance name, and select a pricing tier.
5+
When you create an Azure OpenAI resource, you need to provide a subscription name, resource group name, region, unique instance name, and select a pricing tier.
66

7-
![Screenshot of the Azure portal's page to create an Azure OpenAI Service resource.](../media/create-azure-openai-portal.png)
7+
![Screenshot of the Azure portal's page to create an Azure OpenAI resource.](../media/create-azure-openai-portal.png)
88

9-
## Create an Azure OpenAI Service resource in Azure CLI
9+
## Create an Azure OpenAI resource in Azure CLI
1010

11-
To create an Azure OpenAI Service resource from the CLI, refer to this example and replace the following variables with your own:
11+
To create an Azure OpenAI resource from the CLI, refer to this example and replace the following variables with your own:
1212

1313
- MyOpenAIResource: *replace with a unique name for your resource*
1414
- OAIResourceGroup: *replace with your resource group name*
@@ -26,15 +26,15 @@ az cognitiveservices account create \
2626
```
2727

2828
>[!NOTE]
29-
>You can find the regions available for a service through the CLI command `az account list-locations`. To see how to sign into Azure and create an Azure group via the CLI, you can refer to the [documentation here](/azure/cognitive-services/openai/how-to/create-resource?pivots=cli#sign-in-to-the-cli?azure-portal=true). Azure OpenAI Service provides access to many types of models. Certain models are only available in select regions. Consult the [Azure OpenAI model availability guide](/azure/cognitive-services/openai/concepts/models#model-summary-table-and-region-availability/?azure-portal=true) for region availability. You can create two Azure OpenAI resources per region.
29+
>You can find the regions available for a service through the CLI command `az account list-locations`. To see how to sign into Azure and create an Azure group via the CLI, you can refer to the [documentation here](/azure/cognitive-services/openai/how-to/create-resource?pivots=cli#sign-in-to-the-cli?azure-portal=true). Azure OpenAI provides access to many types of models. Certain models are only available in select regions. Consult the [Azure OpenAI model availability guide](/azure/cognitive-services/openai/concepts/models#model-summary-table-and-region-availability/?azure-portal=true) for region availability. You can create two Azure OpenAI resources per region.
3030
3131
## Use Azure OpenAI Foundry
3232

3333
Azure AI Foundry provides access to model management, deployment, experimentation, customization, and learning resources.
3434

3535
You can access the Azure AI Foundry through the Azure portal after creating a resource, or at [https://ai.azure.com/](https://ai.azure.com/) by signing in to your Azure account. During the sign-in workflow, select the appropriate directory, Azure subscription, and Azure OpenAI resource.
3636

37-
When you first open Azure AI Foundry, you'll want to navigate to the **Azure OpenAI** page (where you focus on only Azure OpenAI Service models), select your resource if you haven't already, and deploy your first model. To do so, select the **Deployments** page, from where you can deploy a base model and start experimenting with it.
37+
When you first open Azure AI Foundry, you'll want to navigate to the **Azure OpenAI** page (where you focus on only Azure OpenAI models), select your resource if you haven't already, and deploy your first model. To do so, select the **Deployments** page, from where you can deploy a base model and start experimenting with it.
3838

3939
>[!NOTE]
4040
>If you are not the resource owner, you will need the following role-based access controls: 1. *Cognitive Services OpenAI User*: This role allows viewing resources and using the chat playground. 2. *Cognitive Services OpenAI Contributor*: This role allows the user to create new deployments.

learn-pr/wwl-data-ai/develop-applications-openai/includes/3-integrate-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Azure OpenAI offers both language specific SDKs and a REST API that developers can use to add AI functionality to their applications. Generative AI capabilities in Azure OpenAI are provided through *models*. The models available in the Azure OpenAI service belong to different families, each with their own focus. To use one of these models, you need to deploy through the Azure OpenAI Service.
1+
Azure OpenAI offers both language specific SDKs and a REST API that developers can use to add AI functionality to their applications. Generative AI capabilities in Azure OpenAI are provided through *models*. The models available in Azure OpenAI belong to different families, each with their own focus. To use one of these models, you need to deploy through Azure OpenAI.
22

33
Once you have created an Azure OpenAI resource and deployed a model, you can configure your app.
44

0 commit comments

Comments
 (0)