ShAnSantosh commited on
Commit
8138fa1
1 Parent(s): 49b50fa

Upload intents.json

Browse files
Files changed (1) hide show
  1. intents.json +84 -0
intents.json ADDED
@@ -0,0 +1,84 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "intents": [
3
+ {
4
+ "tag": "greeting",
5
+ "patterns": [
6
+ "Hi",
7
+ "Hey",
8
+ "How are you",
9
+ "Is anyone there?",
10
+ "Hello",
11
+ "Good day"
12
+ ],
13
+ "responses": [
14
+ "Hey :-)",
15
+ "Hello, thanks for visiting",
16
+ "Hi there, what can I do for you?",
17
+ "Hi there, how can I help?"
18
+ ]
19
+ },
20
+ {
21
+ "tag": "goodbye",
22
+ "patterns": ["Bye", "See you later", "Goodbye"],
23
+ "responses": [
24
+ "See you later, thanks for visiting",
25
+ "Have a nice day",
26
+ "Bye! Come back again soon."
27
+ ]
28
+ },
29
+ {
30
+ "tag": "thanks",
31
+ "patterns": ["Thanks", "Thank you", "That's helpful", "Thank's a lot!"],
32
+ "responses": ["Happy to help!", "Any time!", "My pleasure"]
33
+ },
34
+ {
35
+ "tag": "items",
36
+ "patterns": [
37
+ "Which items do you have?",
38
+ "What kinds of items are there?",
39
+ "What do you sell?"
40
+ ],
41
+ "responses": [
42
+ "We sell coffee and tea",
43
+ "We have coffee and tea"
44
+ ]
45
+ },
46
+ {
47
+ "tag": "payments",
48
+ "patterns": [
49
+ "Do you take credit cards?",
50
+ "Do you accept Mastercard?",
51
+ "Can I pay with Paypal?",
52
+ "Are you cash only?"
53
+ ],
54
+ "responses": [
55
+ "We accept VISA, Mastercard and Paypal",
56
+ "We accept most major credit cards, and Paypal"
57
+ ]
58
+ },
59
+ {
60
+ "tag": "delivery",
61
+ "patterns": [
62
+ "How long does delivery take?",
63
+ "How long does shipping take?",
64
+ "When do I get my delivery?"
65
+ ],
66
+ "responses": [
67
+ "Delivery takes 2-4 days",
68
+ "Shipping takes 2-4 days"
69
+ ]
70
+ },
71
+ {
72
+ "tag": "funny",
73
+ "patterns": [
74
+ "Tell me a joke!",
75
+ "Tell me something funny!",
76
+ "Do you know a joke?"
77
+ ],
78
+ "responses": [
79
+ "Why did the hipster burn his mouth? He drank the coffee before it was cool.",
80
+ "What did the buffalo say when his son left for college? Bison."
81
+ ]
82
+ }
83
+ ]
84
+ }