Skip to content

Latest commit

 

History

History
47 lines (29 loc) · 2.62 KB

page1.md

File metadata and controls

47 lines (29 loc) · 2.62 KB

Setup VUI in Developer Console

Now go back to developer.amazon.com

Once you've signed in, click on "Developer Console" on the top right of the blue bar. Search for "Alexa Skills Kit" on the top gray menu.

The Developer Console

You will be using the developer console to set up the Voice User Interface (VUI)

  1. Press the blue "Create Skill" button on the right side of the screen
  2. Enter a skill name and press "Next"
  3. Of the four options, choose "Custom", then press the blue "Create Skill button at the top right"
  4. Choose "Invocation name" and type the "wake up" name for the skill. For example, "share love."
  5. From the menu on the left side of your screen, press "Add" next to the "Intents" option
  6. Enter a name for your intent in camel case followed by the word "Intent" i.e. ShareLoveIntent
  7. Come up with utterances, or phrases a user might say to Alexa to invoke your skill. In this case, for example a sample utterance might be "Ask ShareLove to share love with {ContactName}". Be sure to include the name of your skill in the utterance along with a target. In the provided example, the target is {ContactName} which is actually a slot type discussed more in the next step. Just make sure the target is inlcuded inside curly braces {}. Make sure all of your utterances use the same target name.
  8. After adding utterances, go to the menu on the left again and press "Add" next to the "Slot Types". option
  9. Enter a name for your Slot Type, make sure you type it exactly as you did in the curly braces of your utterances.
  10. Now add values for your Slot Type. The values will be the recipients of your messages. Examples of values inlude: Mom, Dad, Jacob, Ashley, etc. Do not add all recipients in one line. After adding each recipient, press the add button on the right side of the bar to continue adding individual values.
  11. Finally, using the menu on the left hand side, navigate back to your custom Intent. Below your utterances, there will be a table of "Intent Slots". You should see your Slot in this table. Now you must connect the Slot Type to the utterances by using the dropdown menu under "SLOT TYPE" and selecting your custom Slot name that shows up.
  12. When you are satisfied, click "Save model" and then click "Build model" to finalize your VUI.
  13. Once the model has been built: Congratulations, the VUI is now set up!