I am making an alexa skill using Flask-Ask which has a custom slot - Gender. The main values are "Male", "Female" and the corresponding synonyms are "He", "she", "boy", "girl" etc
The skill simply responds with the gender of the person. Eg. An utterance of "He is 24 years old" should give "male" but is giving "he" as a response
I can see the correct values in the Json output of the skill but is there a simpler built-in function for handling resolutions in flask-ask than coding for that in the intent handler or parsing the json response?
Any help will be very appreciated