-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhealthme.json
131 lines (99 loc) · 1.82 KB
/
healthme.json
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
#sample trigger phrase Task
#hi there/hello --> Hola World
#---Tasks----
#hola world Task
{
"actions": [
{
"say": "Hi, how can i help you achieve better health today?"
},
{
"listen": true
}
]
}
#sample trigger phrase Task
#my mouth hurts/i feel sick --> Intent
#Intent Task
{
"actions": [
{
"say": "Sorry to hear that. Do you want to see your primary care doctor or your dentist?"
},
{
"listen": true
}
]
}
#sample trigger phrase Task
#dentist/i want to see my dentist --> dentist lookup
#dentist lookup
{
"actions": [
{
"say": "Would you like a dentist near your home or work?"
},
{
"listen": true
}
]
}
#sample trigger phrase Task
# no. i want the best dentist/best dentist in town --> bestdentist
#bestdentist
{
"actions": [
{
"say": "Ok. We'll get you the best dentist in town. When are you available?"
},
{
"listen": true
}
]
}
#sample trigger phrase Task
#monday/i'm free monday --> availability-monday
#availability-monday
{
"actions": [
{
"say": "The earliest availability is on Monday at nine or ten in the morning. A two o' clock appointment is also available. Which one do you prefer?"
},
{
"listen": true
}
]
}
#sample trigger phrase Task
#two/two o'clock --> timeofday
#timeofday
{
"actions": [
{
"say": "Ok. You're booked for two in the afternoon on Monday. I emailed you the confirmation and I'll remind you the day before. Do you need anything else?"
},
{
"listen": true
}
]
}
#sample trigger phrase Task
#no/i'm good --> wrap-up
#wrap-up
{
"actions": [
{
"say": "Glad I was able to help. let me know if you need anything else"
}
]
}
#sample trigger phrase Task
#bye/goodbye --> goodbye
#goodbye
{
"actions": [
{
"say": "Ok. I'll be here if you need me again."
}
]
}