Reputation: 61
I am developing an Alexa skill with a required slot "name"
for which I have added a prompt of "What is your name".
The utterances for the intent are:
1. note my name
2. note my name as {name}
For both the utterances, I get the prompt what is your name.
Upvotes: 1
Views: 78
Reputation: 1498
Utterances for your intent should be something like these :
Prompts for your slot "name"
Utterances for your slot "name"
Even though you are using AMAZON.US_FIRST_NAME
, it would be wise to provide some slot values for the slot "name".
For example:
Slot value samples for the slot "name"
If still AMAZON.FallBackIntent
is called, then please show me your complete code.
Upvotes: 1