forked from ugik/notebooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
intents_Rx.json
31 lines (30 loc) · 1.15 KB
/
intents_Rx.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
{"intents": [
{"tag": "greeting",
"patterns": ["Hi", "How are you", "Is anyone there?", "Hello", "Good day"],
"responses": ["Hello, thanks for visiting", "Good to see you again", "Hi there"]
},
{"tag": "goodbye",
"patterns": ["Bye", "See you later", "Goodbye"],
"responses": ["See you later", "Have a nice day", "Bye! Come back again soon."]
},
{"tag": "thanks",
"patterns": ["Thanks", "Thank you", "That's helpful"],
"responses": ["Happy to help!", "Any time!", "My pleasure"]
},
{"tag": "med",
"patterns": ["I'm looking for cheap meds", "want to find a deal", "where are the cheapest meds", "where can I buy meds for less money" ],
"responses": ["What's the name of the medication?"],
"context": "getRx"
},
{"tag": "handleRx",
"patterns": [],
"responses": [],
"context": "handleRx"
},
{"tag": "coupon",
"patterns": ["what is the coupon", "send me the coupon"],
"responses": ["Sorry, no coupon", "No coupon available"],
"context": "coupon"
}
]
}