Similar to the question that was asked previously amazon lex transcript wide open slot. This dealing with the solution to that question and the comment under the solution. The intent I want to create has only one slot and I just want to respond appropriately after receiving the reply from the user. in this case, if I don't want to use elicitSlot. What should I do?
I have got the first part down:
slots = intent_request['currentIntent']['slots']
slots['anyString'] = intent_request['inputTranscript']
I tried to use elixit_slot. But it will only prompt me for the same transcript again, which is not what I want. I want to output a reply back to lex after the user entered a set of strings after the first time the inputTranscript is filled up.