1
1
mirror of https://github.com/leon-ai/leon.git synced 2024-12-23 08:41:57 +03:00
leon/skills/social_communication/mbti/nlu/en.json

63 lines
1.6 KiB
JSON
Raw Normal View History

{
"actions": {
"setup": {
"type": "dialog",
"utterance_samples": [
"I want to know my MBTI personality type",
"Start a personality type [quiz|questionnaire|test]"
],
"answers": [
"Alright, let's go!<br><br>1/20<br>At a party do you:<ul><li>a. Interact with many, including strangers</li><li>b. Interact with a few, known to you</li></ul>"
],
"next_action": "quiz"
},
"quiz": {
"type": "logic",
"loop": {
"expected_item": {
"type": "resolver",
2022-06-30 20:07:48 +03:00
"name": "form"
}
}
}
},
"resolvers": {
2022-06-30 20:07:48 +03:00
"form": {
"intents": {
"1_a": {
"utterance_samples": [
"Interact with many",
"Including strangers",
"[Like|Love] to [interact|communicate|talk]"
],
"value": "1_a"
},
"1_b": {
"utterance_samples": [
"Interact with a few",
"Known to [me|you]"
],
"value": "1_b"
},
"2_a": {
"utterance_samples": [
"Head in the clouds",
"My head in the clouds"
],
"value": "2_a"
},
"2_b": {
"utterance_samples": [
"In a rut"
],
"value": "2_b"
}
}
}
},
"answers": {
"2": ["%question%/20<br>Is it worse to:<ul><li>a. Have your \"head in the clouds\"</li><li>b. Be \"in a rut\"</li></ul>"],
"3": ["%question%/20<br>Is it worse to:<ul><li>a. Have your \"head in the clouds\"</li><li>b. Be \"in a rut\"</li></ul>"]
}
}