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
{{ message }}
This repository was archived by the owner on Jun 30, 2022. It is now read-only.
Copy file name to clipboardExpand all lines: docs/_docs/clients-and-channels/tutorials/enable-speech/4-integrate-speech-channel.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,6 @@ order: 4
15
15
16
16
## Option B: Using a sample Cognitive Services Voice Assistant client
17
17
1. Download the [latest release from the Cognitive Services Voice Assistant repository](https://github.com/Azure-Samples/Cognitive-Services-Voice-Assistant/releases).
18
-
1. Follow the [instructions on getting started](https://github.com/Azure-Samples/Cognitive-Services-Voice-Assistant/tree/master/samples/clients/csharp-wpf#getting-started) to set up your environment and connect to your Virtual Assistant.
18
+
1. Follow the [instructions on getting started](https://github.com/Azure-Samples/Cognitive-Services-Voice-Assistant/tree/master/clients/csharp-wpf#getting-started) to set up your environment and connect to your Virtual Assistant.
19
19
20
20

## Dispatch refresh failed with Exit Code 1 Error using ErrorActionPreference = Stop in PowerShell
162
+
There is a known issue in the `dispatch refresh` executed in the `update_cognitive_models.ps1` of the C#/TypeScript bots, that if the user has configured `$ErrorActionPreference = Stop` in PowerShell, it will stop the execution raising the __Exit Code 1 Error__.
163
+
164
+
As a workaround the `$ErrorActionPreference` should be changed to `Continue`
165
+
```powershell
166
+
$ErrorActionPreference = 'Continue'
167
+
```
168
+
169
+
See the following related documents:
170
+
-[#3662](https://github.com/microsoft/botframework-solutions/issues/3662) - `update_cognitive_models.ps1 - dispatch refresh failed with Exit Code 1 Error in Deployment Automation`
171
+
-[microsoft/botbuilder-tools#1474](https://github.com/microsoft/botbuilder-tools/issues/1474) - `Dispatch] Dispatch refresh fails using ErrorActionPreference set as Stop`
Copy file name to clipboardExpand all lines: docs/_docs/overview/skills.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,13 +8,13 @@ toc: true
8
8
# {{ page.title }}
9
9
{:.no_toc}
10
10
11
-
Bot Framework Skills are re-usable conversational skill building-blocks covering conversational use-cases enabling you to add extensive functionality to a Bot within minutes. Skills include language understanding (LUIS) models, dialogs and integration code and delivered as source code enabling you to customize and extend as required. At this time we provide Calendar, Email, To Do, Point of Interest skills and a number of other experimental skills.
11
+
Bot Framework Skills are re-usable conversational skill building-blocks covering conversational use-cases enabling you to add extensive functionality to a Bot within minutes. Skills include [Language Understanding](https://docs.microsoft.com/en-us/azure/cognitive-services/luis/what-is-luis) (LUIS) models, dialogs and integration code, delivered as source code enabling you to customize and extend as required. At this time we provide Calendar, Email, To Do, Point of Interest skills and a number of other experimental skills.
12
12
13
13
A Skill is like a standard conversational bot but with the ability to be plugged in to a broader solution. This can be a complex Virtual Assistant or perhaps an Enterprise Bot seeking to stitch together multiple bots within an organization.
14
14
15
15
Apart from some minor differences that enable this special invocation pattern, a Skill looks and behaves like a regular bot. The same protocol is maintained between two bots to ensure a consistent approach. Skills for common scenarios like productivity and navigation can be used as-is or customized however a customer prefers.
16
16
17
-
>The Skill implementations currently provided are in C# only but the remote invocation nature of the Skills does enable you to invoke C# based Skills from a typescript Bot project.
17
+
>The Skill implementations currently provided are in C# only but the remote invocation nature of the Skills does enable you to invoke C# based Skills from a TypeScript Bot project.
18
18
19
19
## Available Skill samples
20
20
@@ -33,7 +33,7 @@ The following Skill samples are available out of the box, each with deployment s
33
33
### Experimental Skills
34
34
35
35
These experimental Bot Framework Skills are early prototypes to help bring Skill concepts to life for demonstrations and proof-of-concepts.
36
-
By their very nature these Skill are not complete, with only English support. If you have any feedback on these Skills, please [open a new issue](https://github.com/microsoft/botframework-solutions/issues/new/choose) on the Bot Framework Solutions repository.
36
+
By their very nature these Skills are not complete, with only English support. If you have any feedback on these Skills, please [open a new issue](https://github.com/microsoft/botframework-skills/issues/new/choose) on the Bot Framework Skills repository.
0 commit comments