Skip to content

Instantly share code, notes, and snippets.

@rcolepeterson
Created February 8, 2017 06:29
Show Gist options
  • Save rcolepeterson/2e328d61c8a108f62239a684cc01d86d to your computer and use it in GitHub Desktop.
Save rcolepeterson/2e328d61c8a108f62239a684cc01d86d to your computer and use it in GitHub Desktop.
most-common-chatbot-questions
{
"luis_schema_version": "1.3.1",
"versionId": "0.1",
"name": "your app",
"desc": "",
"culture": "en-us",
"intents": [
{
"name": "Age"
},
{
"name": "Appearance"
},
{
"name": "Help"
},
{
"name": "Hobby"
},
{
"name": "Language"
},
{
"name": "Location"
},
{
"name": "Name"
},
{
"name": "None"
},
{
"name": "Reality"
},
{
"name": "State"
},
{
"name": "Time"
}
],
"entities": [],
"composites": [],
"closedLists": [],
"bing_entities": [],
"actions": [],
"model_features": [],
"regex_features": [],
"utterances": [
{
"text": "are you real?",
"intent": "Reality",
"entities": []
},
{
"text": "what is your name?",
"intent": "Name",
"entities": []
},
{
"text": "how old are you?",
"intent": "Age",
"entities": []
},
{
"text": "where do you live?",
"intent": "Location",
"entities": []
},
{
"text": "how can you help me?",
"intent": "Help",
"entities": []
},
{
"text": "which languages do you speak?",
"intent": "Language",
"entities": []
},
{
"text": "how are you? are you doing ok?",
"intent": "State",
"entities": []
},
{
"text": "what time is it?",
"intent": "Time",
"entities": []
},
{
"text": "what are your hobbies?",
"intent": "Hobby",
"entities": []
},
{
"text": "what do you look like?",
"intent": "Appearance",
"entities": []
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment