Last active
April 23, 2017 14:13
-
-
Save ArjunHariharan/497e703d97c170b30975142ecd66939c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"rasa_nlu_data": { | |
"common_examples": [ | |
{ | |
"text": "hi", | |
"intent": "greet", | |
"entities": [] | |
}, | |
{ | |
"text": "my phone isn't turning on.", | |
"intent": "device_failure", | |
"entities": [ | |
{ | |
"start": 3, | |
"end": 8, | |
"value": "phone", | |
"entity": "device" | |
} | |
] | |
}, | |
{ | |
"text": "my phone is not working.", | |
"intent": "device_failure", | |
"entities": [ | |
{ | |
"start": 3, | |
"end": 8, | |
"value": "phone", | |
"entity": "device" | |
} | |
] | |
}, | |
{ | |
"text": "My phone crashed and isn’t working anymore.", | |
"intent": "device_failure", | |
"entities": [ | |
{ | |
"start": 3, | |
"end": 8, | |
"value": "phone", | |
"entity": "device" | |
} | |
] | |
} | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment