chat-agent-demo / Model /intents.json
Ajay-user's picture
app files
70c7b07
{
"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": "items",
"patterns": [
"what are your products ?",
"products",
"products for sale",
"what are the categories you have ?",
"Which items do you have?",
"What kinds of items are there?",
"What do you sell?",
"What are you selling?",
"what items are there for sale"
],
"responses": [
"We sell fashion πŸ‘—πŸ₯»",
"We have the best designer clothing πŸ‘—πŸ₯»"
]
},
{
"tag": "payments",
"patterns": [
"Do you take credit cards?",
"Do you accept Mastercard?",
"Can I pay with Paypal?",
"Are you cash only?",
"payment options",
"payment methods",
"accept card",
"card",
"can I pay using card",
"what are the different payment options available"
],
"responses": [
"We accept VISA, Mastercard and Paypal πŸ’³",
"πŸ’³ We accept most major credit cards, and Paypal"
]
},
{
"tag": "delivery",
"patterns": [
"How long does delivery take?",
"How long does shipping take?",
"When do I get my delivery?",
"delivery",
"delivery options",
"how fast can you delviver ?",
"how long will it take ?",
"tell me about delivery options",
"In how many days can you deliver the products",
"when will products arrive if I order it today"
],
"responses": [
"⌚ Delivery takes 2-4 days",
"βŒ› Shipping takes 2-4 days"
]
},
{
"tag": "location",
"patterns": [
"Where are you located?",
"location",
"store location",
"office location",
"where is your store located?",
"your nearest outlet?",
"where is the nearest shop?"
],
"responses": [
"Our main office 🏒 is in Newyork but we have outlets πŸ›οΈ in all major cities",
"We are global platform. Our Main branch 🏒 is in NY USA , we have presence in all major cities."
]
},
{
"tag": "contact",
"patterns": [
"How can I contact you ?",
"Contact info",
"How can I reach you?",
"Can I talk to your representative directly",
"Can you share your phone number",
"mobile number",
"contact details please"
],
"responses": [
"πŸ“± 999-9999-999",
"☎️ 222-2222-222",
"πŸ“ž 777-7777-777"
]
},
{
"tag": "details",
"patterns": [
"I need a Tee shirt, can you help me?",
"I want to buy a shirt",
"I want to buy a jeans",
"I like to purchase the latest designer clothing",
"I like to know the details about your latest designer clothing",
"I want to buy some things for my father can you help",
"I'm looking for new designer clothings",
"Can I get some details",
"I want some help",
"Size related query, can you help",
"help me find a matching size",
"I can't find a better fit, can you help me?",
"I need a refund",
"I have some complaint",
"I received a damaged product",
"I need your help to cancel my order",
"I received a different product",
"Help me return this product",
"The product I ordered is not the one I received"
],
"responses": [
"I'm forwarding you to our customer support agent πŸ§‘β€πŸ’» please dial : 999-9999-999",
"Please reach out to our agent πŸ‘©β€πŸ’», 222-2222-222",
"Please call us 777-7777-777. Our agent πŸ‘¨β€πŸ’» will help you!"
]
},
{
"tag": "funny",
"patterns": [
"Tell me a joke!",
"joke",
"tell me a funny story",
"I like to hear a joke",
"Tell me something funny!",
"Do you know a joke?"
],
"responses": [
"Why did the hipster burn his mouth? He drank the coffee before it was cool.",
"What did the buffalo say when his son left for college? Bison."
]
}
]
}