I have an Alexa skill with multiple intents and a customer back-end built with Python SDK. I currently can use the skill on my speaker. The thing that I would like to try and fix is keeping the session open, or the blue light on the speaker in between intents. So instead of:
Me: Alexa, start the quiz
Alexa: Hi, tell me your name
Me: my name is Jeff
Alexa: Nice to meet you Jeff, where are you from?
Me: Alexa, I'm from Texas
^ I need to wake up the speaker to tell her where I'm from when wanting to use the CaptureCustomerLivingIntentHandler() class after giving her my name. I'd like for the speaker to listen in on the next intent. Something like below:
Me: Alexa, start the quiz
Alexa: Hi, please tell me your name
Me: My name is Jeff
Alexa: Nice to meet you Jeff, where are you from?
Me: I'm from Texas
What do I need to add to my code to keep the speaker on in between each intent so the speaker doesn't shut off? I tried finding some documentation around this but had trouble finding something that would explain on how to tackle this problem using Python as the back-end to build the skill.