forked from kotrakesh/alexa-mann
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlidl_example2.py
More file actions
69 lines (38 loc) · 1.08 KB
/
lidl_example2.py
File metadata and controls
69 lines (38 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
from flask import Flask, render_template
from flask_ask import Ask, statement, question, session
app = Flask(__name__)
ask = Ask(app, "/")
# logging.getLogger("flask_ask").setLevel(logging.DEBUG)
@ask.launch
def invoke():
msg = render_template('welcome')
return question(msg)
@ask.intent('DinnerIntent')
def dtone():
msg = render_template('dinnertype1')
return question(msg)
@ask.intent('RomanticIntent')
def dttwo():
msg = render_template('dinnertype2')
return question(msg)
@ask.intent('VegetarianIntent')
def dtthree():
msg = render_template('dinnerproposal1')
return question(msg)
@ask.intent('WineIntent')
def dtwine():
msg = render_template('wineproposal1')
return question(msg)
@ask.intent('ConfirmwineIntent')
def dtconf():
msg = render_template('anythingelse')
return question(msg)
@ask.intent('CompletedIntent')
def dtone():
msg = render_template('prepared')
return question(msg)
@ask.intent("AMAZON.StopIntent")
def stop():
return statement('Bye')
if __name__ == '__main__':
app.run(debug=True)