Skip to content

Commit 5644ddf

Browse files
committed
clean up names
1 parent 3c3b48b commit 5644ddf

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

articles/ai-studio/tutorials/deploy-chat-web-app.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ The steps in this tutorial are:
3636
- An Azure subscription - <a href="https://azure.microsoft.com/free/cognitive-services" target="_blank">Create one for free</a>.
3737
- A [deployed Azure OpenAI](../how-to/deploy-models-openai.md) chat model. Complete the [Azure AI Foundry playground quickstart](../quickstarts/get-started-playground.md) to create this resource if you haven't already.
3838

39-
- An Azure AI Search service connection to index the sample product data. If you don't have one, follow the steps to [create](copilot-sdk-create-resources.md#create-search) and [connect](copilot-sdk-create-resources.md#connect) a search service.
39+
- An Search service connection to index the sample product data. If you don't have one, follow the steps to [create](copilot-sdk-create-resources.md#create-search) and [connect](copilot-sdk-create-resources.md#connect) a search service.
4040

4141
- A local copy of product data. The [Azure-Samples/rag-data-openai-python-promptflow repository on GitHub](https://github.com/Azure-Samples/rag-data-openai-python-promptflow/) contains sample retail product information that's relevant for this tutorial scenario. Specifically, the `product_info_11.md` file contains product information about the TrailWalker hiking shoes that's relevant for this tutorial example. [Download the example Contoso Trek retail product data in a ZIP file](https://github.com/Azure-Samples/rag-data-openai-python-promptflow/raw/refs/heads/main/tutorial/data/product-info.zip) to your local machine.
4242

@@ -49,40 +49,40 @@ The steps in this tutorial are:
4949
> [!IMPORTANT]
5050
> You must have the necessary permissions to add role assignments in your Azure subscription. Granting permissions by role assignment is only allowed by the Owner of the specific Azure resources. You might need to ask your Azure subscription owner (who might be your IT admin) to complete this section for you.
5151
52-
In order for the resources you're about to deploy to work correctly, you need to configure them with the correct permissions. This work is done in the Azure portal.
52+
In order for the resources you're about to deploy to work correctly, you need to configure them with the correct permissions. This work is done in the Azure portal. The Azure portal is a place to manage all Azure resources, including Azure AI Foundry resources.
5353

54-
To start, find the resources you need to configure in the Azure AI Foundry portal.
54+
To start, identify the resources you need to configure from the Azure AI Foundry portal.
5555

56-
1. Open the [Azure AI Foundry portal](https://ai.azure.com) and select the project where you deployed the Azure OpenAI model.
56+
1. Open the [Azure AI Foundry portal](https://ai.azure.com) and select the project you used to deploy the Azure OpenAI chat model.
5757
1. Select **Management center** from the left pane.
5858
1. Select **Connected resources** under your project.
59-
1. Identify the three resources you need to configure: the **Azure AI Search service**, the **Azure OpenAI service**, and the **Azure Blob storage** for your workspaceblobstore.
59+
1. Identify the three resources you need to configure: the **Azure AI Search**, the **Azure OpenAI**, and the **Azure Blob storage** that corresponds to your **workspaceblobstore**.
6060

6161
:::image type="content" source="../media/tutorials/deploy-chat-web-app/resources.png" alt-text="Screenshot shows the connected resources that need to be configured.":::
6262

63-
If you have multiple **Azure OpenAI service** resources, select the one that has your deployed model in it.
63+
If you have multiple **Azure OpenAI** resources, select the one that has your deployed chat model in it.
6464

6565
1. For each resource, select the link to open the resource details. From the details page, select the resource name to open the resource in the Azure portal. (For the workspaceblobstore, select **View in Azure Portal**).
6666
1. After the tab opens, go back to the Azure AI Foundry portal and repeat the process for the next resource.
67-
1. Keep all three new tabs open as you'll go back and forth between them to configure the resources.
67+
1. When you're done, you should have three new browser tabs open, for **Search service**, **Azure AI services**, and **blobstore Container**. Keep all three new tabs open as you'll go back and forth between them to configure the resources.
6868

6969
### Enable managed identity
7070

71-
On the tab for the **Azure AI Search service** resource in the Azure portal, enable the managed identity:
71+
On the tab for the **Search service** resource in the Azure portal, enable the managed identity:
7272

7373
1. From the left pane, under **Settings**, select **Identity**.
7474
1. Switch **Status** to **On**.
7575
1. Select **Save**.
7676

77-
On the tab for the **Azure OpenAI service** resource in the Azure portal, enable the managed identity:
77+
On the tab for the **Azure AI services** resource in the Azure portal, enable the managed identity:
7878

7979
1. From the left pane, under **Resource Management**, select **Identity**.
8080
1. Switch **Status** to **On**.
8181
1. Select **Save**.
8282

8383
### Set access control for search
8484

85-
On the tab for the **Azure AI Search service** resource in the Azure portal, set the API Access policy:
85+
On the tab for the **Search service** resource in the Azure portal, set the API Access policy:
8686

8787
1. From the left pane, under **Settings**, select **Keys**.
8888
1. Under **API Access control**, select **Both**.
@@ -96,20 +96,20 @@ You'll repeat this pattern multiple times in the bulleted items below.
9696

9797
Use these steps to assign roles for the resources you're configuring in this tutorial:
9898

99-
* Assign the following roles on the tab for **Azure AI Search service** in the Azure portal:
100-
* **Search Index Data Reader** to the **Azure OpenAI service** managed identity
101-
* **Search Service Contributor** to the **Azure OpenAI service** managed identity
99+
* Assign the following roles on the tab for **Search service** in the Azure portal:
100+
* **Search Index Data Reader** to the **Azure AI services** managed identity
101+
* **Search Service Contributor** to the **Azure AI services** managed identity
102102
* **Contributor** to yourself (to find **Contributor**, switch to the **Privileged administrator roles** tab at the top. All other roles are in the **Job function roles** tab.)
103103

104-
* Assign the following roles on the tab for **Azure OpenAI service** in the Azure portal:
104+
* Assign the following roles on the tab for **Azure AI services** in the Azure portal:
105105

106-
* **Cognitive Services OpenAI Contributor** to the **Azure AI Search service** managed identity
106+
* **Cognitive Services OpenAI Contributor** to the **Search service** managed identity
107107
* **Contributor** to yourself.
108108

109109
* Assign the following roles on the tab for **Azure Blob storage** in the Azure portal:
110110

111-
* **Storage Blob Data Contributor** to the **Azure OpenAI service** managed identity
112-
* **Storage Blob Data Reader** to the **Azure AI Search service** managed identity
111+
* **Storage Blob Data Contributor** to the **Azure AI services** managed identity
112+
* **Storage Blob Data Reader** to the **Search service** managed identity
113113
* **Contributor** to yourself
114114

115115
You're done configuring resources. You can close the Azure portal tabs now if you wish.

0 commit comments

Comments
 (0)