-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathintents.json
100 lines (91 loc) · 2.64 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
{
"intents": [
{
"tag": "greeting",
"patterns": [
"Hi",
"Hey",
"How are you",
"Is anyone there?",
"Hello",
"Howdy",
"Greetings",
"I need help",
"Can you help",
"Good day",
"Hi there",
"Good morning",
"Good evening",
"Good afternoon"
],
"responses": [
"Hey, how can I be of assistance?",
"Hello, thanks for visiting.",
"Hi there, what can I do for you?",
"Hi there, how can I help?",
"Welcome , How may I be of assistance?"
]
},
{
"tag": "goodbye",
"patterns": ["Bye", "See you later", "Goodbye", "thanks for you help", "that's all for today"],
"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", "Thanks a lot!", "thank you for your assistance"],
"responses": ["Happy to help!", "Any time!", "My pleasure"]
},
{
"tag": "services",
"patterns": [
"What type of service do you have?",
"What are your services"
],
"responses": [
"We will help you detect diseases",
"we will help you manage your hospitals"
]
},
{
"tag": "prediction",
"patterns": [
"Do you predict diseases",
"Do you show diet ans symptoms",
"what diseases you predict"
],
"responses": [
"we predict vatious diseases",
"We predict and show symptoms and precautions"
]
},
{
"tag": "bookings",
"patterns": [
"How departments you have to book",
"How many doctors",
"how to book appointments"
],
"responses": [
"we offer variety of departments you can view by loging in",
"our departments are cardiology,neurology,etc"
]
},
{
"tag": "appointments",
"patterns": [
"how to book appointments",
"show appointments",
"Delete appointments"
],
"responses": [
"by logining in to system you see the departments to book appointments",
"By using dashboard we can easily delete,view,book appointments"
]
}
]
}