Whatever and whenever user speaks I want to pass it to my API and send API response to Alexa using python flask-ask.
I don't want to use AWS lambda. I want to know is it possible and if it does then how can I achieve it.
eg:
UserVoiceInput = anything that user says
def anyfunc():
abc = MyApiUrl?message=UserVoiceInput
return statement(abc["Response_Message"])
how can I achieve the above logic using python flask-ask