Created
June 1, 2020 07:16
-
-
Save velotiotech/756237d13d8c55d85b5e08559d9c0b66 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