Skip to content

Instantly share code, notes, and snippets.

@velotiotech
Created June 1, 2020 07:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save velotiotech/756237d13d8c55d85b5e08559d9c0b66 to your computer and use it in GitHub Desktop.
Save velotiotech/756237d13d8c55d85b5e08559d9c0b66 to your computer and use it in GitHub Desktop.
{
"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