From acdb602d598692cb967f6acdd62911e7a9e74166 Mon Sep 17 00:00:00 2001 From: Tien Suwandy <10739108+tsuwandy@users.noreply.github.com> Date: Tue, 3 Oct 2017 14:00:57 -0700 Subject: [PATCH] Updated README Updated outdated/non existent links --- Node/intelligence-LUIS/README.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/Node/intelligence-LUIS/README.md b/Node/intelligence-LUIS/README.md index d6fd0e9533..d3903c2c75 100644 --- a/Node/intelligence-LUIS/README.md +++ b/Node/intelligence-LUIS/README.md @@ -15,25 +15,26 @@ The minimum prerequisites to run this sample are: * **[Recommended]** Visual Studio Code for IntelliSense and debugging, download it from [here](https://code.visualstudio.com/) for free. #### 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 [.env](.env#L6) file and update the `LUIS_MODEL_URL` variable with your's Model URL. #### Where to find the Model URL -In the LUIS application's dashboard, click the "Publish App" button in the right side bar, select an Endpoint Key and then click the "Publish" button. After a couple of moments, you will see a url that makes your models available as a web service. +In the LUIS application's dashboard, click the "Publish App" button in the left side bar, select an Endpoint Key and then click the "Publish" button. After a couple of moments, you will see a url that makes your models available as a web service. ![Publishing a Model](images/prereqs-publish.png) ### Code Highlights -One of the key problems in human-computer interactions is the ability of the computer to understand what a person wants, and to find the pieces of information that are relevant to their intent. In the LUIS application, you will bundle together the intents and entities that are important to your task. Read more about [Planning an Application](https://www.microsoft.com/cognitive-services/en-us/LUIS-api/documentation/Plan-your-app) in the LUIS Help +One of the key problems in human-computer interactions is the ability of the computer to understand what a person wants, and to find the pieces of information that are relevant to their intent. In the LUIS application, you will bundle together the intents and entities that are important to your task. Read more about [Planning an Application](https://docs.microsoft.com/en-us/azure/cognitive-services/LUIS/plan-your-app) in the LUIS Help #### Intent Recognizers @@ -216,8 +217,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 Node and LUIS please review the following resources: * [Bot Builder for Node.js Reference](https://docs.microsoft.com/en-us/bot-framework/nodejs/) * [Understanding Natural Language](https://docs.botframework.com/en-us/node/builder/guides/understanding-natural-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) * [IntentDialog](https://docs.botframework.com/en-us/node/builder/chat/IntentDialog/) * [EntityRecognizer](https://docs.botframework.com/en-us/node/builder/chat-reference/classes/_botbuilder_d_.entityrecognizer.html) * [Alarm Bot in Node](https://github.com/Microsoft/BotBuilder/tree/master/Node/examples/basics-naturalLanguage)