Challenge 2 - Create LUIS Intents to direct conversations

< Previous Challenge - Home - Next Challenge>

Introduction

We are going to build out a LUIS triggered dialog flow to help answer the current stock price, we’ll implement returning the actual price in the next challenge. For now we are just going to recognize that the utterance is Stock based and pull out the Ticker Symbol entity that is included in the utterance. Below goes into more depth.

Description

  1. Add a new trigger by Intent for recognizing Stock Price questions
  2. Train your LUIS model with trigger phrases to recognize the intent and entities.
  3. Add dialog in this trigger action to print back out the stock that they are asking for, we will add additional functionality in future challenges. The flow of the Bot should essentially look like this to the user:

    • Bot: <Greeting and prompt for a question>
    • User: “ What is the stock price of MSFT?”
    • Bot: “You want to know the stock price of MSFT?”

    • User: “TSLA stock price?”
    • Bot: “You want to know the stock price of TSLA?”
  4. Test your bot locally with unknown phrases and entities

Success Criteria

Resources

Next Challenge - Make API Calls from your Bot >