Creating a survey in amazon Alexa with open ended questions - alexa

I am trying to create a simple survey skill in Amazon Alexa where Alexa asks the user a question and they respond in any manner they feel like (open-ended). For example, if Alexa asks "Do you cook?", a user may respond in many ways such as "Yes I do cook", "My son does the cooking" etc.
The issue I am getting is that the questions can have similar responses so when I create an utterance in the Alexa dev console they overlap (utterance conflicts) and I am redirected to the error handler. (note each question has its own intent)
Is there any other way I can go about creating a survey without using intents?
Can I capture the full user response to a slot?
The reason being I want to store the user's response in a database.

Unfortunately, Alexa Skills aren't designed to do Speech To Text.
When a user talks to a device, the request goes through multiple steps:
Automated Speech Recognition > It does Speech To Text internally
Natural Language Understanding (NLU) > Using Machine Learning, it will understand what the user want to do (Stop a skill, play music, switch on the light, ...)
Depending of the context, if the NLU understand that the user is trying to respond to your skill (the interaction model match what the user is saying), it will send a POST request to your skill. But it will not send you the Speech To Text.
Documentation
Although, the intent AMAZON.SearchQuery will do the job but you will have to use a prefix: My answer is {query} and not directly {query} because all requests will be redirected to this intent otherwise. It will not look like a good & smooth user experience.

Related

REST/Python call to get Amazon Alexa answers

I need to send a list of questions to be asked from Alexa, and get the responses in the form of text (not voice). The responses must be exactly the same as what the Alexa app provides. All the documentation/examples I've seen so far is for the case where the goal is to create a new Alexa skill which is not my goal.
I'd appreciate it if someone could point me to an example or documentation for what I'm trying to accomplish.
Alexa responses and requests are in a JSON format. It's easier to see the interaction when you're testing a skill so even though it's not your end goal it would probably be useful to create a dummy skill and test it in the alexa developer console.
If you're trying to make a chatbot type project you would create an API Gateway endpoint for your Alexa Skill's lambda function and then use that with dialogflow and its text based integrations such as messenger, web demo, twilio, etc.
Here is an example in the documentation of what a response and request looks like:
https://developer.amazon.com/docs/custom-skills/request-and-response-json-reference.html

Alexa Skill - Retrieve User's mail within multi-turn dialog

I am developping an Alexa Skill within the one the user has to provide a serie of answers to my backend (node.js) in order to get the right result. I would like to send this result by email.
Is it possible to retrieve the user's email through the API put at disposal by AWS using the Dialog.delegate method?
Thanks !
There is no built in method can get you the current user email id or any personal info.
But with authentication you can. See this blog post. You'll need to create an Amazon App and link it to your amazon skill using Account Linking. For the first time when you ask for the email, user has to accept access with their Alexa app. You can then save this email in your DB for future purposes. This is a long but recommended method.
The simplest method: Whenever the game is finished you can manually ask the user for email address. But Alexa may not recognize email address spoken by users properly and might break your app. I don't know, but maybe Alexa will reject your app for asking personal info this way!

Integrate Alexa app into existing website

Given the scenario:
I have an existing website
I have an alexa skill kit app
Is there anyway that a user can press a button on the webpage, speak and aws backend will process it and send it to my request handlers?
If this is not available with alexa would I be able to do this with lex?
Yes, Lex is able to do this instead of Alexa.
But be aware that Lex and Alexa have surprisingly different Request and Response JSON formatting so be prepared to restructure your Alexa request handlers to accept and respond appropriately to Lex.
Side Note: the Lex request does have one large perk over Alexa's which is that Lex provides you with the exact user input (or the audio input interpretation) in a field named 'inputTranscript'. So while in Alexa you have to rely on the slots being filled based solely on Alexa's interpretation of the input, in Lex you can parse the input yourself and improve your bot's recognition of slot values.

Alexa skill ki manual input

I am new in Alexa skill kit development
I have already read Tutorials on Alexa Skill Kit
I have to implement Alexa Skill , In which I need to manually send command and want Alexa to speak it.
i.e When user login in system I can fire API as Alexa request and I want Alexa device to Speak that for example "Welcome Have a great day"
Is it Possible ? Or Any other alternatives. ?
Notifications for Alexa skill are in still in beta. You can apply for the access to it by filling up this form here : https://alexa.au1.qualtrics.com/jfe/form/SV_72lplGGegxNZ9Ln
If Push Notifications is what you're looking for, then the answer is YES.
Since in the comments you said, "You are not asking for HOW TO DO IT", so I'll just let this link here for your reference. https://developer.amazon.com/docs/alexa-voice-service/notifications-overview.html
I think you may want to use proactive events for your skill. They are now commercially available. You will be able to send a notification to your skill and the Amazon device will blink (yellow). However you will still need to say "Alexa check my notifications" to retrieve the actual message
https://developer.amazon.com/docs/smapi/proactive-events-api.html
Another idea would be to use "progressive response" feature: https://developer.amazon.com/docs/custom-skills/send-the-user-a-progressive-response.html
You can fire the interaction to alexa when your API is invoked and send a progressive response. Not really a notification but it might serve you. This way you will not need to ask to check the notifications to Alexa but directly get the voice message in the progressive responses

How to get the second utterance- Alexa

I am trying to build a conversational skill in Amazon Alexa. Once I start my skill, how can I know what the user said for the second time when I set should_end_session as false?
How do you mean what the user said for the second time? Any response a user provides in a live session should match one of the utterances for your skill and those utterances are linked to intents.
What response are you trying to get from the user? Please provide more information.

Resources