Skip to content

Commit 2b00dc6

Browse files
committed
Maybe the pivots will work now
1 parent ccad922 commit 2b00dc6

File tree

5 files changed

+44
-15
lines changed

5 files changed

+44
-15
lines changed

articles/cognitive-services/Speech-Service/includes/quickstarts/voice-assistants/csharp/uwp.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,19 @@ ms.date: 03/10/2020
66
ms.author: travisw
77
---
88

9+
## Prerequisites
10+
11+
Before you get started, make sure to:
12+
13+
> [!div class="checklist"]
14+
> * [Create an Azure Speech resource](~/articles/cognitive-services/speech-service/get-started.md)
15+
> * [Set up your development environment and create an empty project](~/articles/cognitive-services/speech-service/quickstarts/setup-platform.md?tabs=uwp)
16+
> * Create a bot connected to the [Direct Line Speech channel](https://docs.microsoft.com/azure/bot-service/bot-service-channel-connect-directlinespeech)
17+
> * Make sure that you have access to a microphone for audio capture
18+
>
19+
> [!NOTE]
20+
> Please refer to [the list of supported regions for voice assistants](~/articles/cognitive-services/speech-service/regions.md#voice-assistants) and ensure your resources are deployed in one of those regions.
21+
922
## Open your project in Visual Studio
1023

1124
The first step is to make sure that you have your project open in Visual Studio.

articles/cognitive-services/Speech-Service/includes/quickstarts/voice-assistants/header.md

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,3 @@ After satisfying a few prerequisites, connecting your custom voice assistant tak
1919
> * Create a `DialogServiceConnector` object using the `BotFrameworkConfig` object from above.
2020
> * Using the `DialogServiceConnector` object, start the listening process for a single utterance.
2121
> * Inspect the `ActivityReceivedEventArgs` returned.
22-
23-
## Prerequisites
24-
25-
Before you get started, make sure to:
26-
27-
> [!div class="checklist"]
28-
> * [Create an Azure Speech resource](~/articles/cognitive-services/speech-service/get-started.md)
29-
> * [Set up your development environment and create an empty project](~/articles/cognitive-services/speech-service/quickstarts/setup-platform.md?tabs=uwp)
30-
> * Create a bot connected to the [Direct Line Speech channel](https://docs.microsoft.com/azure/bot-service/bot-service-channel-connect-directlinespeech)
31-
32-
> [!NOTE]
33-
> Please refer to [the list of supported regions for voice assistants](~/articles/cognitive-services/speech-service/regions.md#voice-assistants) and ensure your resources are deployed in one of those regions.

articles/cognitive-services/Speech-Service/includes/quickstarts/voice-assistants/java/android.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,19 @@ ms.date: 11/05/2019
1212
ms.author: travisw
1313
---
1414

15+
## Prerequisites
16+
17+
Before you get started, make sure to:
18+
19+
> [!div class="checklist"]
20+
> * [Create an Azure Speech resource](~/articles/cognitive-services/speech-service/get-started.md)
21+
> * [Set up your development environment and create an empty project](~/articles/cognitive-services/speech-service/quickstarts/setup-platform.md?tabs=android)
22+
> * Create a bot connected to the [Direct Line Speech channel](https://docs.microsoft.com/azure/bot-service/bot-service-channel-connect-directlinespeech)
23+
> * Make sure that you have access to a microphone for audio capture
24+
25+
> [!NOTE]
26+
> Please refer to [the list of supported regions for voice assistants](~/articles/cognitive-services/speech-service/regions.md#voice-assistants) and ensure your resources are deployed in one of those regions.
27+
1528
## Create and configure a project
1629

1730
[!INCLUDE [](~/includes/cognitive-services-speech-service-quickstart-java-android-create-proj.md)]

articles/cognitive-services/Speech-Service/includes/quickstarts/voice-assistants/java/jre.md

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,19 @@ ms.date: 03/20/2020
66
ms.author: travisw
77
---
88

9+
## Prerequisites
10+
11+
Before you get started, make sure to:
12+
13+
> [!div class="checklist"]
14+
> * [Create an Azure Speech resource](~/articles/cognitive-services/speech-service/get-started.md)
15+
> * [Set up your development environment and create an empty project](~/articles/cognitive-services/speech-service/quickstarts/setup-platform.md?tabs=jre)
16+
> * Create a bot connected to the [Direct Line Speech channel](https://docs.microsoft.com/azure/bot-service/bot-service-channel-connect-directlinespeech)
17+
> * Make sure that you have access to a microphone for audio capture
18+
19+
> [!NOTE]
20+
> Please refer to [the list of supported regions for voice assistants](~/articles/cognitive-services/speech-service/regions.md#voice-assistants) and ensure your resources are deployed in one of those regions.
21+
922
## Create and configure project
1023

1124
[!INCLUDE [](~/includes/cognitive-services-speech-service-quickstart-java-create-proj.md)]
@@ -97,11 +110,11 @@ Additionally, to enable logging, update the _pom.xml_ file to include the follow
97110

98111
1. In the `main` method, you first configure your `DialogServiceConfig` and use it to create a `DialogServiceConnector` instance. This instance connects to the Direct Line Speech channel to interact with your bot. An `AudioConfig` instance is also used to specify the source for audio input. In this example, the default microphone is used with `AudioConfig.fromDefaultMicrophoneInput()`.
99112

100-
- Replace the string `YourSubscriptionKey` with your subscription key, which you can get from [this website](get-started.md).
101-
- Replace the string `YourServiceRegion` with the [region](regions.md) associated with your subscription.
113+
- Replace the string `YourSubscriptionKey` with your subscription key, which you can get from [this website](~/articles/cognitive-services/speech-service/get-started.md).
114+
- Replace the string `YourServiceRegion` with the [region](~/articles/cognitive-services/speech-service/regions.md) associated with your subscription.
102115

103116
> [!NOTE]
104-
> Please refer to [the list of supported regions for voice assistants](regions.md#voice-assistants) and ensure your resources are deployed in one of those regions.
117+
> Please refer to [the list of supported regions for voice assistants](~/articles/cognitive-services/speech-service/regions.md#voice-assistants) and ensure your resources are deployed in one of those regions.
105118
106119
```java
107120
final String subscriptionKey = "YourSubscriptionKey"; // Your subscription key

articles/cognitive-services/Speech-Service/quickstarts/voice-assistants.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,10 @@ ms.subservice: speech-service
1010
ms.topic: quickstart
1111
ms.date: 02/10/2020
1212
ms.author: travisw
13+
zone_pivot_groups: programming-languages-set-nine
1314
---
1415

16+
1517
# Quickstart: Create a custom voice assistant
1618

1719
[!INCLUDE [Header](../includes/quickstarts/voice-assistants/header.md)]

0 commit comments

Comments
 (0)