Spaces:
Runtime error
Runtime error
File size: 4,271 Bytes
41c5642 |
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 158 159 160 |
{
"intents": [
{
"tag": "greeting",
"patterns": [
"Hi there",
"How are you",
"Is anyone there?",
"Hey",
"Hola",
"Hello",
"Good day"
],
"responses": [
"Hello, thanks for asking",
"Good to see you again",
"Hi there, how can I help?"
],
"context": [""]
},
{
"tag": "goodbye",
"patterns": [
"Bye",
"See you later",
"Goodbye",
"Nice chatting to you, bye",
"Till next time"
],
"responses": [
"See you!",
"Have a nice day",
"Bye! Come back again soon."
],
"context": [""]
},
{
"tag": "thanks",
"patterns": [
"Thanks",
"Thank you",
"That's helpful",
"Awesome, thanks",
"Thanks for helping me"
],
"responses": ["Happy to help!", "Any time!", "My pleasure"],
"context": [""]
},
{
"tag": "noanswer",
"patterns": [],
"responses": [
"Sorry, can't understand you",
"Please give me more info",
"Not sure I understand"
],
"context": [""]
},
{
"tag": "options",
"patterns": [
"How you could help me?",
"What you can do?",
"What help you provide?",
"How you can be helpful?",
"What support is offered"
],
"responses": [
"I can guide you through Adverse drug reaction list, Blood pressure tracking, Hospitals and Pharmacies",
"Offering support for Adverse drug reaction, Blood pressure, Hospitals and Pharmacies"
],
"context": [""]
},
{
"tag": "adverse_drug",
"patterns": [
"How to check Adverse drug reaction?",
"Open adverse drugs module",
"Give me a list of drugs causing adverse behavior",
"List all drugs suitable for patient with adverse reaction",
"Which drugs dont have adverse reaction?"
],
"responses": ["Navigating to Adverse drug reaction module"],
"context": [""]
},
{
"tag": "blood_pressure",
"patterns": [
"Open blood pressure module",
"Task related to blood pressure",
"Blood pressure data entry",
"I want to log blood pressure results",
"Blood pressure data management"
],
"responses": ["Navigating to Blood Pressure module"],
"context": [""]
},
{
"tag": "blood_pressure_search",
"patterns": [
"I want to search for blood pressure result history",
"Blood pressure for patient",
"Load patient blood pressure result",
"Show blood pressure results for patient",
"Find blood pressure results by ID"
],
"responses": ["Please provide Patient ID", "Patient ID?"],
"context": ["search_blood_pressure_by_patient_id"]
},
{
"tag": "search_blood_pressure_by_patient_id",
"patterns": [],
"responses": ["Loading Blood pressure result for Patient"],
"context": [""]
},
{
"tag": "pharmacy_search",
"patterns": [
"Find me a pharmacy",
"Find pharmacy",
"List of pharmacies nearby",
"Locate pharmacy",
"Search pharmacy"
],
"responses": ["Please provide pharmacy name"],
"context": ["search_pharmacy_by_name"]
},
{
"tag": "search_pharmacy_by_name",
"patterns": [],
"responses": ["Loading pharmacy details"],
"context": [""]
},
{
"tag": "hospital_search",
"patterns": [
"Lookup for hospital",
"Searching for hospital to transfer patient",
"I want to search hospital data",
"Hospital lookup for patient",
"Looking up hospital details"
],
"responses": ["Please provide hospital name or location"],
"context": ["search_hospital_by_params"]
},
{
"tag": "search_hospital_by_params",
"patterns": [],
"responses": ["Please provide hospital type"],
"context": ["search_hospital_by_type"]
},
{
"tag": "search_hospital_by_type",
"patterns": [],
"responses": ["Loading hospital details"],
"context": [""]
}
]
}
|