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 Jan 15, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+1-11Lines changed: 1 addition & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -95,21 +95,11 @@ Per above, Microsoft will only collect anonymous data to help improve the CLI. T
95
95
96
96
Nightly builds are generated using the latest code. Therefore, they may not be stable, and most likely lack up to date documentation. These builds are better suited for more experienced users, although everyone is welcome to use them and provide feedback.
97
97
98
-
You can get the latest nightly build of bot framework cli from the [BotBuilder MyGet](https://botbuilder.myget.org/gallery) feed. To install the nightly -
99
-
100
-
```shell
101
-
npm config set registry https://botbuilder.myget.org/F/botframework-cli/npm/
102
-
```
103
-
104
98
Install using npm:
105
99
```shell
106
-
npm i -g @microsoft/botframework-cli
100
+
npm i -g @microsoft/botframework-cli@next
107
101
```
108
102
109
-
To reset registry:
110
-
```shell
111
-
npm config set registry https://registry.npmjs.org/
You can use the available validateLUISBlob() function to verify if the parsed LUIS blob is valid. This helps catch name conflicts, invalid labelled utterances etc.
You can take advantage of the [Microsoft text translation API](https://docs.microsoft.com/en-us/azure/cognitive-services/translator/) to automatically machine translate .lu files to one or more than [60+ languages](https://aka.ms/translate-langs) supported by the Microsoft text translation cognitive service.
218
-
219
-
To translate lu file content, you can simply use the parseAndTranslate() method. Here's a code snippet.
220
-
221
-
```js
222
-
constludown=require('@microsoft/bf-lu');
223
-
constluContent=`# Greeting
224
-
- hi
225
-
$userName:first=
226
-
-vishwac`;
227
-
constlog=false;
228
-
consttargetLanguage='de';
229
-
constsubscriptionKey='<YOUR TEXT TRANSLATION KEY>';
0 commit comments