AXS-C01 · Question #27
What is required for a skill to support multi-turn conversations?
The correct answer is D. The skill must return shouldEndSession=false in a response. shouldEndSession is a parameter in the Response object that tells Alexa whether or not to keep the session open. True means that the session should end after Alexa speaks the response, and false that the session should remain active. If not provided, it defaults to true…
Question
What is required for a skill to support multi-turn conversations?
Options
- AThe skill must have slots marked "required" with prompt text.
- BThe skill must respond to the user by asking a follow-up question.
- CThe skill must define session attributes to store the questions and responses.
- DThe skill must return shouldEndSession=false in a response.
How the community answered
(45 responses)- A4% (2)
- B13% (6)
- C2% (1)
- D80% (36)
Explanation
shouldEndSession is a parameter in the Response object that tells Alexa whether or not to keep the session open. True means that the session should end after Alexa speaks the response, and false that the session should remain active. If not provided, it defaults to true. Session attributes are not required when using a dialog model because the user's responses are sent to the skill in the intent's slot values.
Topics
Community Discussion
No community discussion yet for this question.