-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresponse_data.json
163 lines (163 loc) · 5.7 KB
/
response_data.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
[
{
"intent": "Greet",
"user_input": ["hello", "hi", "meet", "you", "hey"],
"response": "Hello! Welcome to Apollo Hospitals. How are you feeling today?",
"required_words": []
},
{
"intent": "Greet",
"user_input": ["great", "well", "nice", "fine", "good"],
"response": "Great! Would you like to book an appointment, buy medicine or get medical insurance?",
"required_words": []
},
{
"intent": "Greet",
"user_input": ["bad", "not", "great", "well", "nice", "fine", "good"],
"response": "What's wrong?",
"required_words": []
},
{
"intent": "book",
"user_input": ["book", "appointment", "doctor", "meet"],
"required_words": []
},
{
"intent": "NO",
"user_input": ["no", "not", "really", "don't", "haven't", "I"],
"required_words": []
},
{
"intent": "YES",
"user_input": ["yes", "sometimes", "do", "have", "I"],
"required_words": []
},
{
"intent": "MAYBE",
"user_input": ["I", "don't", "know"],
"required_words": []
},
{
"intent": "Time",
"user_input": ["before", "ago","for", "months", "years", "month", "hour", "hours", "minutes", "minute", "second", "seconds", "year"],
"required_words": []
},
{
"intent": "Daily",
"user_input": ["daily", "everyday", "continuously"],
"required_words": []
},
{
"intent": "symptom",
"user_input": ["I", "have", "my", "aches", "pains", "head", "ache", "headache", "pain", "is", "splitting"],
"name": "headache",
"required_words": [],
"probing question": "Do you have a headache?",
"time": "How long have you been having the headache?",
"frequency": "How often have you been having the headache?",
"where": "Where does your head ache?",
"intensity": "What does your headache feel like?"
},
{
"intent": "symptom",
"user_input": ["I", "have", "stomach", "ache", "pain", "in", "pain", "pains", "aches"],
"name": "stomach ache",
"required_words": ["stomach"],
"probing question": "Do you have a stomach ache?",
"time": "How long have you been having the stomache ache?"
},
{
"intent": "symptom",
"user_input": ["I", "have", "muscle", "ache", "pain", "in", "pain", "pains", "aches"],
"name": "muscle ache",
"required_words": ["muscle"],
"probing question": "Do your muscles ache?"
},
{
"intent": "symptom",
"user_input": ["I", "nausea", "vomit", "vomitting"],
"name": "nausea",
"required_words": [],
"probing question": "Do you feel like vomitting?",
"time": "How long have you been feeling nausea?"
},
{
"intent": "symptom",
"user_input": ["hurt", "head", "banged", "my"],
"name": "head injury",
"required_words": ["head"],
"probing question": "Have you had a head injury recently?",
"time": "When did you have the injury?"
},
{
"intent": "symptom",
"user_input": ["taking", "drinking", "eating", "medicine", "for"],
"name": "on medication",
"required_words": [],
"probing question": "Have you been taking any medication?",
"time": "How long have you been taking medication?"
},
{
"intent": "symptom",
"user_input": ["stress", "tension", "I", "have", "been"],
"name": "stressed",
"required_words": [],
"probing question": "Have you been stressed lately?"
},
{
"intent": "symptom",
"user_input": ["red", "eyes", "teary", "my", "get"],
"name": "red and teary eyes",
"required_words": ["eyes"],
"probing question": "Do your eyes get red and teary?"
},
{
"intent": "symptom",
"user_input": ["worse", "with", "stress", "increased", "stressed", "when", "more", "painful"],
"name": "response to stress",
"required_words": [],
"probing question": "Does it get worse with stress?"
},
{
"intent": "symptom",
"user_input": ["worse", "with", "movement", "increased", "move", "when", "exercise", "I", "more", "painful"],
"name": "response to movement",
"required_words": [],
"probing question": "Does it get worse when you move?"
},
{
"intent": "symptom",
"user_input": ["worse", "increased", "stressed", "when", "I", "drink", "alcohol", "consume", "more", "painful"],
"name": "response to alcohol",
"required_words": [],
"probing question": "Does it get worse when you consume alcohol?"
},
{
"intent": "symptom",
"user_input": ["can't", "don't", "sleep", "trouble", "sleeping", "have", "insomnia"],
"name": "insomnia",
"required_words": [],
"probing question": "Do you have trouble sleeping?"
},
{
"intent": "symptom",
"user_input": ["angry", "feeling", "get", "irritable", "irritated"],
"name": "irritability",
"required_words": [],
"probing question": "Have you been feeling irritable?"
},
{
"intent": "symptom",
"user_input": ["tired", "lethargic", "I", "feel", "no", "energy"],
"name": "tired",
"required_words": [],
"probing question": "Have you been feeling more tired than usual?"
},
{
"intent": "symptom",
"user_input": ["sensitive", "to", "light", "sound"],
"name": "sensitivity to light or noise",
"required_words": [],
"probing question": "Have you been feeling irritable?"
}
]