-
Notifications
You must be signed in to change notification settings - Fork 0
/
intents.json
157 lines (157 loc) · 4.41 KB
/
intents.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
{
"intents": [
{
"tag": "greeting",
"patterns": [
"Hi",
"Hey",
"How are you",
"Is anyone there?",
"Hello",
"Good day"
],
"responses": [
"Hey :-)",
"Hello, thanks for visiting",
"Hi there, what can I do for you?",
"Hi there, how can I help?"
]
},
{
"tag": "goodbye",
"patterns": ["Bye", "See you later", "Goodbye"],
"responses": [
"See you later, thanks for visiting",
"Have a nice day",
"Bye! Come back again soon."
]
},
{
"tag": "thanks",
"patterns": ["Thanks", "Thank you", "That's helpful", "Thank's a lot!"],
"responses": ["Happy to help!", "Any time!", "My pleasure"]
},
{
"tag": "camera",
"patterns": [
"Which cameras do you have?",
"What kinds of equipments are there?",
"What is the resolution of your pictures?"
],
"responses": [
"We have sony and nikon cameras",
"We have drones, action cameras, video cameras and many more for diffrent type of shoots"
]
},
{
"tag": "payments",
"patterns": [
"Do you take cards?",
"Do you accept cheque payments?",
"Can I pay with Paytm?",
"Are you cash only?"
],
"responses": [
"We accept Credit cards, debit cards, cheques and Paytm",
"We accept credit cards, and Paytm"
]
},
{
"tag": "shoot time",
"patterns": [
"How long does shooting take?",
"When will I get my album?",
"How long it will take to print the album"
],
"responses": [
"Shoot takes 2-4 days",
"processing the images and videos takes 2-4 days",
"Album would be ready in 1 week after the shoot"
]
},
{
"tag": "location",
"patterns": [
"Where are you located?",
"What's your address?"
],
"responses": [
"We are located at New Delhi.",
"Our office is in Delhi, at xyzz."
]
},
{
"tag": "services",
"patterns": [
"What services do you offer?",
"Tell me about your photography services."
],
"responses": [
"We offer a range of photography services including weddings, events, portraits, and more.",
"Our services include photography for special occasions, corporate events, and individual portraits."
]
},
{
"tag": "packages",
"patterns": [
"What are your photography packages?",
"Tell me about your pricing."
],
"responses": [
"We have different packages to suit various needs. You can find detailed pricing on our website or contact us for more information."
]
},
{
"tag": "editing",
"patterns": [
"Do you provide photo editing services?",
"Can I get my photos retouched?"
],
"responses": [
"Yes, we offer professional photo editing services to enhance and retouch your images."
]
},
{
"tag": "availability",
"patterns": [
"When are you available for a photoshoot?",
"What are your working hours?"
],
"responses": [
"Our team is available for photoshoots during 6 from 10:00 to 00:00."
]
},
{
"tag": "refund policy",
"patterns": [
"What is your refund policy?",
"Can I get a refund if I cancel?"
],
"responses": [
"Our refund policy is that we process refunds for orders cancelled before 7 days from the date of event. Please refer to our terms and conditions for more details."
]
},
{
"tag": "reviews",
"patterns": [
"Can I see customer reviews?",
"What do your clients say about your services?"
],
"responses": [
"You can find customer reviews on our website or social media pages. We take pride in our positive feedback."
]
},
{
"tag": "funny",
"patterns": [
"Tell me a joke!",
"Tell me something funny!",
"Do you know a joke?"
],
"responses": [
"What kind of candy do astronauts like? Mars bars.",
"What's an egg's favorite vacation spot?New Yolk City"
]
}
]
}