From 81e61063e68c49377b15c1224afa5c3549d26c9c Mon Sep 17 00:00:00 2001 From: Tien Suwandy <10739108+tsuwandy@users.noreply.github.com> Date: Tue, 3 Oct 2017 11:10:30 -0700 Subject: [PATCH] README.md Updated links and steps (especially how to get subscription key, https://www.luis.ai/home/keys no longer exists). --- CSharp/intelligence-LUIS/README.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/CSharp/intelligence-LUIS/README.md b/CSharp/intelligence-LUIS/README.md index 0e21b9528a..a6bc2e461a 100644 --- a/CSharp/intelligence-LUIS/README.md +++ b/CSharp/intelligence-LUIS/README.md @@ -15,13 +15,14 @@ The minimum prerequisites to run this sample are: #### LUIS Application -If you want to test this sample, you have to import the pre-build [LuisBot.json](LuisBot.json) file to your LUIS account. The first step to using LUIS is to create or import an application. Go to the home page, www.luis.ai, and log in. After creating your LUIS account you'll be able to Import an Existing Application where can you can select a local copy of the LuisBot.json file an import it. ![Import an Existing Application](images/prereqs-import.png) -Once you imported the application you'll need to "train" the model ([Training](https://www.microsoft.com/cognitive-services/en-us/LUIS-api/documentation/Train-Test)) before you can "Publish" the model in an HTTP endpoint. For more information, take a look at [Publishing a Model](https://www.microsoft.com/cognitive-services/en-us/LUIS-api/documentation/PublishApp). +If you want to test this sample, you have to import the pre-build [LuisBot.json](LuisBot.json) file to your LUIS account. + +Once you imported the application you'll need to "train" the model ([Training](https://docs.microsoft.com/en-us/azure/cognitive-services/luis/train-test)) before you can "Publish" the model in an HTTP endpoint. For more information, take a look at [Publishing a Model](https://docs.microsoft.com/en-us/azure/cognitive-services/luis/publishapp). Finally, edit the [RootLuisDialog.cs](Dialogs/RootLuisDialog.cs#L14) file and update the LuisModel attribute placeholders with the values corresponding to your Subscription and Application. @@ -49,7 +50,7 @@ You'll need these two values to configure the LuisDialog through the LuisModel a 2. Subscription Key - In the [My keys page](https://www.luis.ai/home/keys), copy the Programmatic API Key. + Click on the Publish App link from the LUIS application dashboard. Once your app is published, copy the subscription key from the app endpoint url on the Publish App page. ![Programmatic API Key](images/prereqs-apikey.png) @@ -130,8 +131,8 @@ You will see the following in the Bot Framework Emulator when opening and runnin To get more information about how to get started in Bot Builder for .NET and Conversations please review the following resources: * [Bot Builder for .NET](https://docs.microsoft.com/en-us/bot-framework/dotnet/) * [Add language understanding to a bot](https://docs.microsoft.com/en-us/bot-framework/cognitive-services-add-bot-language) -* [LUIS Help Docs](https://www.luis.ai/home/help) -* [Cognitive Services Documentation](https://www.microsoft.com/cognitive-services/en-us/luis-api/documentation/home) +* [LUIS Help Docs](https://www.luis.ai/help#luis-help) +* [Cognitive Services Documentation](https://docs.microsoft.com/en-us/azure/cognitive-services/luis/home) * [Specify initial form state and entities](https://docs.microsoft.com/en-us/bot-framework/dotnet/bot-builder-dotnet-formflow-advanced#specify-initial-form-state-and-entities) * Other examples using LUIS * [Alarm Bot](https://docs.microsoft.com/en-us/bot-framework/dotnet/bot-builder-dotnet-luis-dialogs#alarm-bot-implementation)