Upload intents.json
Browse files- intents.json +28 -0
intents.json
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{"intents": [
|
2 |
+
{"tag": "greeting",
|
3 |
+
"patterns": ["Hi", "How are you", "Is anyone there?", "Hello", "Good day"],
|
4 |
+
"responses": ["Hello, thanks for visiting", "Good to see you again", "Hi there, how can I help?"],
|
5 |
+
"context_set": ""
|
6 |
+
},
|
7 |
+
{"tag": "goodbye",
|
8 |
+
"patterns": ["Bye", "See you later", "Goodbye"],
|
9 |
+
"responses": ["See you later, thanks for visiting", "Have a nice day", "Bye! Come back again soon."]
|
10 |
+
},
|
11 |
+
{"tag": "thanks",
|
12 |
+
"patterns": ["Thanks", "Thank you", "That's helpful"],
|
13 |
+
"responses": ["Happy to help!", "Any time!", "My pleasure", "You are welcome.."]
|
14 |
+
},
|
15 |
+
{"tag": "hours",
|
16 |
+
"patterns": ["What hours are you open?", "What are your hours?", "When are you open?" ],
|
17 |
+
"responses": ["We're open every day 9am-9pm", "Our hours are 9am-9pm every day"]
|
18 |
+
},
|
19 |
+
{"tag": "payments",
|
20 |
+
"patterns": ["Do you take credit cards?", "Do you accept Mastercard?", "Are you cash only?" ],
|
21 |
+
"responses": ["We accept VISA, Mastercard and AMEX", "We accept most major credit cards"]
|
22 |
+
},
|
23 |
+
{"tag": "opentoday",
|
24 |
+
"patterns": ["Are you open today?", "When do you open today?", "What are your hours today?"],
|
25 |
+
"responses": ["We're open every day from 9am-9pm", "Our hours are 9am-9pm every day"]
|
26 |
+
}
|
27 |
+
]
|
28 |
+
}
|