Spaces:
No application file
No application file
Upload intents.json
Browse files- intents.json +73 -0
intents.json
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{"intents": [
|
| 2 |
+
{"tag": "greeting",
|
| 3 |
+
"patterns": ["Hi there", "How are you", "Is anyone there?","Hey","Hola", "Hello", "Good day"],
|
| 4 |
+
"responses": ["Hello, thanks for asking", "Good to see you again", "Hi there, how can I help?"],
|
| 5 |
+
"context": [""]
|
| 6 |
+
},
|
| 7 |
+
{"tag": "goodbye",
|
| 8 |
+
"patterns": ["Bye", "See you later", "Goodbye", "Nice chatting to you, bye", "Till next time"],
|
| 9 |
+
"responses": ["See you!", "Have a nice day", "Bye! Come back again soon."],
|
| 10 |
+
"context": [""]
|
| 11 |
+
},
|
| 12 |
+
{"tag": "thanks",
|
| 13 |
+
"patterns": ["Thanks", "Thank you", "That's helpful", "Awesome, thanks", "Thanks for helping me"],
|
| 14 |
+
"responses": ["Happy to help!", "Any time!", "My pleasure"],
|
| 15 |
+
"context": [""]
|
| 16 |
+
},
|
| 17 |
+
{"tag": "noanswer",
|
| 18 |
+
"patterns": [],
|
| 19 |
+
"responses": ["Sorry, can't understand you", "Please give me more info", "Not sure I understand"],
|
| 20 |
+
"context": [""]
|
| 21 |
+
},
|
| 22 |
+
{"tag": "options",
|
| 23 |
+
"patterns": ["How you could help me?", "What you can do?", "What help you provide?", "How you can be helpful?", "What support is offered"],
|
| 24 |
+
"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"],
|
| 25 |
+
"context": [""]
|
| 26 |
+
},
|
| 27 |
+
{"tag": "adverse_drug",
|
| 28 |
+
"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?" ],
|
| 29 |
+
"responses": ["Navigating to Adverse drug reaction module"],
|
| 30 |
+
"context": [""]
|
| 31 |
+
},
|
| 32 |
+
{"tag": "blood_pressure",
|
| 33 |
+
"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" ],
|
| 34 |
+
"responses": ["Navigating to Blood Pressure module"],
|
| 35 |
+
"context": [""]
|
| 36 |
+
},
|
| 37 |
+
{"tag": "blood_pressure_search",
|
| 38 |
+
"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" ],
|
| 39 |
+
"responses": ["Please provide Patient ID", "Patient ID?"],
|
| 40 |
+
"context": ["search_blood_pressure_by_patient_id"]
|
| 41 |
+
},
|
| 42 |
+
{"tag": "search_blood_pressure_by_patient_id",
|
| 43 |
+
"patterns": [],
|
| 44 |
+
"responses": ["Loading Blood pressure result for Patient"],
|
| 45 |
+
"context": [""]
|
| 46 |
+
},
|
| 47 |
+
{"tag": "pharmacy_search",
|
| 48 |
+
"patterns": ["Find me a pharmacy", "Find pharmacy", "List of pharmacies nearby", "Locate pharmacy", "Search pharmacy" ],
|
| 49 |
+
"responses": ["Please provide pharmacy name"],
|
| 50 |
+
"context": ["search_pharmacy_by_name"]
|
| 51 |
+
},
|
| 52 |
+
{"tag": "search_pharmacy_by_name",
|
| 53 |
+
"patterns": [],
|
| 54 |
+
"responses": ["Loading pharmacy details"],
|
| 55 |
+
"context": [""]
|
| 56 |
+
},
|
| 57 |
+
{"tag": "hospital_search",
|
| 58 |
+
"patterns": ["Lookup for hospital", "Searching for hospital to transfer patient", "I want to search hospital data", "Hospital lookup for patient", "Looking up hospital details" ],
|
| 59 |
+
"responses": ["Please provide hospital name or location"],
|
| 60 |
+
"context": ["search_hospital_by_params"]
|
| 61 |
+
},
|
| 62 |
+
{"tag": "search_hospital_by_params",
|
| 63 |
+
"patterns": [],
|
| 64 |
+
"responses": ["Please provide hospital type"],
|
| 65 |
+
"context": ["search_hospital_by_type"]
|
| 66 |
+
},
|
| 67 |
+
{"tag": "search_hospital_by_type",
|
| 68 |
+
"patterns": [],
|
| 69 |
+
"responses": ["Loading hospital details"],
|
| 70 |
+
"context": [""]
|
| 71 |
+
}
|
| 72 |
+
]
|
| 73 |
+
}
|