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: articles/cognitive-services/Speech-Service/tutorial-voice-enable-your-bot-speech-sdk.md
+12-8Lines changed: 12 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,7 +51,7 @@ Here's what you'll need to complete this tutorial:
51
51
52
52
- A Windows 10 PC with a working microphone and speakers (or headphones)
53
53
-[Visual Studio 2017](https://visualstudio.microsoft.com/downloads/) or higher
54
-
-[.NET Core SDK](https://dotnet.microsoft.com/download)version 2.1 or later
54
+
-[.NET Framework Runtime 4.6.1](https://dotnet.microsoft.com/download) or higher
55
55
- An Azure account. [Sign up for free](https://azure.microsoft.com/free/ai/).
56
56
- A [GitHub](https://github.com/) account
57
57
-[Git for Windows](https://git-scm.com/download/win)
@@ -272,19 +272,23 @@ Now it's time to register your bot with the Direct Line Speech channel. This cha
272
272
> [!TIP]
273
273
> If you'd like to learn more, see [Connect a bot to Direct Line Speech](https://docs.microsoft.com/azure/bot-service/bot-service-channel-connect-directlinespeech?view=azure-bot-service-4.0). This page includes additional information and known issues.
274
274
275
-
## Build the Windows Voice Assistant Client
275
+
## Run the Windows Voice Assistant Client
276
276
277
-
In this step, you're going to build the Windows Voice Assistant Client. The client is a Windows Presentation Foundation (WPF) app in C# that uses the [Speech SDK](https://docs.microsoft.com/azure/cognitive-services/speech-service/speech-sdk) to manage communication with your bot using the Direct Line Speech channel. Use it to interact with and test your bot before writing a custom client app.
277
+
In this step, you're going to run the Windows Voice Assistant Client. The client is a Windows Presentation Foundation (WPF) app in C# that uses the [Speech SDK](https://docs.microsoft.com/azure/cognitive-services/speech-service/speech-sdk) to manage communication with your bot using the Direct Line Speech channel. Use it to interact with and test your bot before writing a custom client app. It's open source, so you can either download the executable and run it, or build it yourself.
278
278
279
279
The Windows Voice Assistant Client has a simple UI that allows you to configure the connection to your bot, view the text conversation, view Bot-Framework activities in JSON format, and display adaptive cards. It also supports the use of custom keywords. You'll use this client to speak with your bot and receive a voice response.
280
280
281
281
Before we move on, make sure that your microphone and speakers are enabled and working.
282
282
283
283
1. Navigate to the GitHub repository for the [Windows Voice Assistant Client](https://github.com/Azure-Samples/Cognitive-Services-Voice-Assistant/blob/master/clients/csharp-wpf/README.md).
284
-
2. Follow the instructions provided to clone the repository, build the project, configure the client, and launch the client.
285
-
3. Click **Reconnect** and make sure you see the message **Press the mic button, or type to start talking to your bot**.
286
-
4. Let's test it out. Click the microphone button, and speak a few words in English. The recognized text will appear as you speak. When you're done speaking, the bot will reply in its own voice, saying "echo" followed by the recognized words.
287
-
5. You can also use text to communicate with the bot. Just type in the text at the bottom bar.
284
+
1. Follow the instructions provided there to either
285
+
* download a ZIP package containing the executable to run, or
286
+
* build the executable yourself, by cloning the repository and building the project.
287
+
288
+
1. Launch the client application and configure it.
289
+
1. Click **Reconnect** and make sure you see the message **Press the mic button, or type to start talking to your bot**.
290
+
1. Let's test it out. Click the microphone button, and speak a few words in English. The recognized text will appear as you speak. When you're done speaking, the bot will reply in its own voice, saying "echo" followed by the recognized words.
291
+
1. You can also use text to communicate with the bot. Just type in the text at the bottom bar.
288
292
289
293
### Troubleshooting errors in Windows Voice Assistant Client
290
294
@@ -421,7 +425,7 @@ Now that you've made the necessary change to the bot, the next step is to republ
0 commit comments