example works
This commit is contained in:
parent
b241fab780
commit
678727369e
|
|
@ -0,0 +1,47 @@
|
||||||
|
import logging
|
||||||
|
import os
|
||||||
|
from flask import Flask
|
||||||
|
from flask_ask import Ask, request, session, question, statement
|
||||||
|
|
||||||
|
|
||||||
|
app = Flask(__name__)
|
||||||
|
ask = Ask(app, "/")
|
||||||
|
logging.getLogger('flask_ask').setLevel(logging.DEBUG)
|
||||||
|
|
||||||
|
|
||||||
|
@ask.launch
|
||||||
|
def launch():
|
||||||
|
speech_text = 'Welcome to the Alexa Skills Kit, you can say hello'
|
||||||
|
return question("how ya doin?")
|
||||||
|
|
||||||
|
|
||||||
|
@ask.intent('HelloWorldIntent')
|
||||||
|
def hello_world():
|
||||||
|
return "Hello"
|
||||||
|
|
||||||
|
|
||||||
|
@ask.intent('YesIntent')
|
||||||
|
def share_headlines():
|
||||||
|
return statement("the world is shit")
|
||||||
|
|
||||||
|
@ask.intent('NoIntent')
|
||||||
|
def no():
|
||||||
|
return statement("the world is shit")
|
||||||
|
|
||||||
|
@ask.intent('AMAZON.HelpIntent')
|
||||||
|
def help():
|
||||||
|
speech_text = 'You can say hello to me!'
|
||||||
|
return question(speech_text).reprompt(speech_text).simple_card('HelloWorld', speech_text)
|
||||||
|
|
||||||
|
|
||||||
|
@ask.session_ended
|
||||||
|
def session_ended():
|
||||||
|
return "{}", 200
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
if 'ASK_VERIFY_REQUESTS' in os.environ:
|
||||||
|
verify = str(os.environ.get('ASK_VERIFY_REQUESTS', '')).lower()
|
||||||
|
if verify == 'false':
|
||||||
|
app.config['ASK_VERIFY_REQUESTS'] = False
|
||||||
|
app.run(debug=True)
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
{
|
||||||
|
"intents": [
|
||||||
|
{
|
||||||
|
"intent": "HelloWorldIntent"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"intent": "AMAZON.HelpIntent"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
HelloWorldIntent say hello
|
||||||
|
HelloWorldIntent say hello world
|
||||||
|
HelloWorldIntent hello
|
||||||
|
HelloWorldIntent say hi
|
||||||
|
HelloWorldIntent say hi world
|
||||||
|
HelloWorldIntent hi
|
||||||
|
HelloWorldIntent how are you
|
||||||
Loading…
Reference in New Issue