Skip to content

Commit e387b56

Browse files
committed
address PR review feedback
1 parent 27c00e1 commit e387b56

File tree

7 files changed

+12
-11
lines changed

7 files changed

+12
-11
lines changed

articles/ai-services/content-safety/studio-quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ In this quickstart, get started with the Azure AI Content Safety service using C
2323

2424
* An active Azure account. If you don't have one, you can [create one for free](https://azure.microsoft.com/free/cognitive-services/).
2525
* A [Content Safety](https://aka.ms/acs-create) Azure resource.
26-
* Assign `Cognitive Services User` role to your account to ensure the studio experience. Go to [Azure portal](https://portal.azure.com/), navigate to your Content Safety resource or Azure AI Services resource, and select **Access Control** in the left navigation bar, then click **+ Add role assignment**, choose the `Cognitive Services User` role and select the memeber of your account that you need to assign this role to, then review and assign. It might take few minutes for the assignment to take effect.
26+
* Assign `Cognitive Services User` role to your account to ensure the studio experience. Go to [Azure portal](https://portal.azure.com/), navigate to your Content Safety resource or Azure AI Services resource, and select **Access Control** in the left navigation bar, then click **+ Add role assignment**, choose the `Cognitive Services User` role and select the member of your account that you need to assign this role to, then review and assign. It might take few minutes for the assignment to take effect.
2727
* Sign in to [Content Safety Studio](https://contentsafety.cognitive.azure.com) with your Azure subscription and Content Safety resource.
2828

2929

articles/ai-services/create-account-bicep.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ Using Bicep to create an Azure AI services resource lets you create a multi-serv
3535

3636
## Review the Bicep file
3737

38-
The Bicep file used in this quickstart is from [Azure quickstart templates](https://azure.microsoft.com/resources/templates/cognitive-services-universalkey/).
38+
The Bicep file used in this quickstart is from [Azure Quickstart Templates](https://azure.microsoft.com/resources/templates/cognitive-services-universalkey/).
3939

4040
:::code language="bicep" source="~/quickstart-templates/quickstarts/microsoft.cognitiveservices/cognitive-services-universalkey/main.bicep":::
4141

4242
One Azure resource is defined in the Bicep file. The `kind` field in the Bicep file defines the type of resource.
4343

44-
As needed change the `sku` parameter value to the [pricing](https://azure.microsoft.com/pricing/details/cognitive-services/) instance you want. The `sku` depends on the resource `kind` that you are using. For example, use `TextAnalytics` for the Azure AI Language service. The `TextAnalytics` kind uses `S` instead of `S0` for the `sku` value.
44+
As needed, change the `sku` parameter value to the [pricing](https://azure.microsoft.com/pricing/details/cognitive-services/) instance you want. The `sku` depends on the resource `kind` that you use. For example, use `TextAnalytics` for the Azure AI Language service. The `TextAnalytics` kind uses `S` instead of `S0` for the `sku` value.
4545

4646
## Deploy the Bicep file
4747

articles/ai-services/create-account-resource-manager-template.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ This quickstart shows you how to use an Azure Resource Manager template (ARM tem
2929

3030
## Review the template
3131

32-
The template that you use in this quickstart is from [Azure quickstart templates](https://azure.microsoft.com/resources/templates/cognitive-services-universalkey/).
32+
The template that you use in this quickstart is from [Azure Quickstart Templates](https://azure.microsoft.com/resources/templates/cognitive-services-universalkey/).
3333

3434
:::code language="json" source="~/quickstart-templates/quickstarts/microsoft.cognitiveservices/cognitive-services-universalkey/azuredeploy.json":::
3535

3636
One Azure resource is defined in the Bicep file. The `kind` field in the Bicep file defines the type of resource.
3737

38-
As needed change the `sku` parameter value to the [pricing](https://azure.microsoft.com/pricing/details/cognitive-services/) instance you want. The `sku` depends on the resource `kind` that you are using. For example, use `TextAnalytics` for the Azure AI Language service. The `TextAnalytics` kind uses `S` instead of `S0` for the `sku` value.
38+
As needed, change the `sku` parameter value to the [pricing](https://azure.microsoft.com/pricing/details/cognitive-services/) instance you want. The `sku` depends on the resource `kind` that you use. For example, use `TextAnalytics` for the Azure AI Language service. The `TextAnalytics` kind uses `S` instead of `S0` for the `sku` value.
3939

4040
## Deploy the template
4141

@@ -129,6 +129,6 @@ az group delete --name $resourceGroupName
129129

130130
* For more information on how to securely work with Azure AI services, see [Authenticate requests to Azure AI services](authentication.md).
131131
* For a list of Azure AI services, see [What are Azure AI services?](./what-are-ai-services.md).
132-
* For a list of natural languages that Azure AI services supports, see [Natural language support in Azure AI services](language-support.md).
132+
* For a list of natural languages that Azure AI services support, see [Natural language support in Azure AI services](language-support.md).
133133
* To understand how to use Azure AI services on-premises, see [What are Azure AI containers?](cognitive-services-container-support.md).
134134
* To estimate the cost of using Azure AI services, see [Plan and manage costs for Azure AI Studio](../ai-studio/how-to/costs-plan-manage.md).

articles/ai-services/includes/quickstarts/management-azcli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ az group create --name ai-services-resource-group --location westus2
5353

5454
## Create an Azure AI services multi-service resource
5555

56-
To create and subscribe to a new Azure AI services resource, use the [az cognitiveservices account create](/cli/azure/cognitiveservices/account#az-cognitiveservices-account-create) command. This command adds a new billable resource to the resource group you created earlier. When you create your new resource, you'll need to know the "kind" of service you want to use, along with its pricing tier (or SKU) and an Azure location.
56+
To create and subscribe to a new Azure AI services resource, use the [az cognitiveservices account create](/cli/azure/cognitiveservices/account#az-cognitiveservices-account-create) command. This command adds a new billable resource to the resource group you created earlier. When you create your new resource, you'll need to know the kind of service you want to use, along with its pricing tier (or SKU) and an Azure location.
5757

5858
> [!IMPORTANT]
5959
> Azure provides more than one resource kinds for Azure AI services. Be sure to create one with the `kind` of `AIServices`.

articles/ai-services/includes/quickstarts/management-azpowershell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Use this quickstart to create an Azure AI services resource using [Azure PowerSh
2121
## Prerequisites
2222

2323
* A valid Azure subscription - [Create one](https://azure.microsoft.com/free/cognitive-services) for free.
24-
* [Azure PowerShell](/powershell/azure/install-azure-powershell)
24+
* [Azure PowerShell](/powershell/azure/install-azure-powershell).
2525

2626
## Install Azure PowerShell and sign in
2727

articles/ai-services/speech-service/how-to-configure-azure-ad-auth.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ This article shows how to use Microsoft Entra authentication with the Speech SDK
2929
To learn more about Microsoft Entra access tokens, including token lifetime, visit [Access tokens in the Microsoft identity platform](/azure/active-directory/develop/access-tokens).
3030

3131
## Create a Speech resource
32-
To create a Speech resource in the [Azure portal](https://portal.azure.com), see [this quickstart](~/articles/ai-services/multi-service-resource.md?pivots=azportal)
32+
To create a Speech resource in the [Azure portal](https://portal.azure.com), see [this quickstart](~/articles/ai-services/multi-service-resource.md?pivots=azportal).
3333

3434
<a name='configure-the-speech-resource-for-azure-ad-authentication'></a>
3535

@@ -170,7 +170,8 @@ $resource = Get-AzCognitiveServicesAccount -Name $speechResourceName -ResourceGr
170170
# Get the resource ID:
171171
$resourceId = resource.Id
172172
```
173-
***
173+
174+
---
174175

175176
## Create the Speech SDK configuration object
176177

articles/ai-services/speech-service/includes/quickstarts/call-center/azure-prerequisites.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.author: eur
99
> [!div class="checklist"]
1010
> * Azure subscription - [Create one for free](https://azure.microsoft.com/free/cognitive-services)
1111
> * <a href="https://portal.azure.com/#create/Microsoft.CognitiveServicesAIServices" title="Create an Azure AI services resource" target="_blank">Create a multi-service resource</a> in the Azure portal. This quickstart only requires one Azure AI services [multi-service resource](../../../../multi-service-resource.md?pivots=azportal). The sample code allows you to specify separate <a href="https://portal.azure.com/#create/Microsoft.CognitiveServicesTextAnalytics" title="Create a Language resource" target="_blank">Language</a> and <a href="https://portal.azure.com/#create/Microsoft.CognitiveServicesSpeechServices" title="Create a Speech resource" target="_blank">Speech</a> resource keys.
12-
> * Get the resource key and region. After your Azure AI services resource is deployed, select **Go to resource** to view and manage keys. F
12+
> * Get the resource key and region. After your Azure AI services resource is deployed, select **Go to resource** to view and manage keys.
1313
1414
> [!IMPORTANT]
1515
> This quickstart requires access to [conversation summarization](../../../../language-service/summarization/how-to/conversation-summarization.md). To get access, you must submit an [online request](https://aka.ms/applyforconversationsummarization/) and have it approved.

0 commit comments

Comments
 (0)