11 questions
0
votes
1
answer
153
views
Supporting multi-modal input in an Alexa skill with both voice dialogs and on-screen APL components
I am working on an Alexa skill where we are setting up a user's profile for future interactions and notifications. We have successfully built a purely voice-driven skill utilizing the proper intents ...
0
votes
1
answer
112
views
how to get information from user on alexa skill launch
I've got an Alexa app that on first launch looks for the user's id in a dynamoDB. If it isn't there I'd like it to ask the user for their ip address.
I have an intent that can collect the IP but I was ...
2
votes
0
answers
104
views
Amazon Alexa adding a custom utterance to an intent that would get triggered while music streaming is playing
I am currently developing an Alexa Custom Skill that need to stream a radio station. I managed to get the streaming on with handlerInput.responseBuilder.addAudioPlayerPlayDirective('REPLACE_ALL', url, ...
1
vote
0
answers
115
views
How to regain control after dialogState == COMPLETED, Alexa delegateDialog
I have a dialog that works correctly, I delegate this dialog to Alexa for the intent BeginDiagnosisIntent which prompts the user to fill the slot values for age and gender, which are slots of ...
0
votes
1
answer
655
views
How to pass list of value to an alexa slot in an intent
I want to define an order intent something like "I want two pencil,one notebook, four cardbox".
In alexa build model it looks something like the following
I want {itemQuantity}{itemList}
here {...
0
votes
1
answer
312
views
Alexa Skill - Programmatically Enable/Disable Slot Matching
I have an Alexa skill that at one point asks for names, and at another point asks for numbers. The names are being mapped to a slot of type AMAZON.FirstName and the numbers to a slot of type AMAZON....