1
1
mirror of https://github.com/leon-ai/leon.git synced 2024-12-21 07:41:39 +03:00
leon/skills/games/akinator/config/en.json

155 lines
3.5 KiB
JSON
Raw Normal View History

2022-07-03 19:47:10 +03:00
{
"actions": {
"choose_thematic": {
2022-07-03 19:47:10 +03:00
"type": "dialog",
"utterance_samples": [
"[Let's play|I want to play|I wanna play] with Akinator"
],
"slots": [
{
"name": "thematic",
"item": {
"type": "entity",
"name": "thematic"
},
"questions": [
"What thematic would you like to play with?",
"What thematic do you choose?"
],
"suggestions": [
"Characters",
"Objects",
"Animals"
]
}
],
"entities": [
{
"type": "enum",
"name": "thematic",
"options": {
"characters": {
"synonyms": ["characters", "character"]
},
"objects": {
"synonyms": ["objects", "object"]
},
"animals": {
"synonyms": ["animals", "animal"]
}
}
}
],
"next_action": "setup"
},
"setup": {
"type": "logic",
"next_action": "guess"
2022-07-03 19:47:10 +03:00
},
"guess": {
"type": "logic",
"loop": {
"expected_item": {
"type": "skill_resolver",
"name": "answer"
2022-07-03 19:47:10 +03:00
}
},
"suggestions": [
"Yes",
"No",
"Don't know",
"Probably",
"Probably not"
],
"next_action": "retry"
},
"retry": {
"type": "logic",
"loop": {
"expected_item": {
"type": "global_resolver",
"name": "affirmation_denial"
}
},
"suggestions": [
"Yes",
"No thanks"
]
2022-07-03 19:47:10 +03:00
}
},
"resolvers": {
"answer": {
"intents": {
"yes": {
"utterance_samples": [
"[Yes|Yep|Yup|Yeah]",
"Sure",
"Correct"
],
"value": "y"
2022-07-03 19:47:10 +03:00
},
"no": {
"utterance_samples": [
"[No|Nope|Nah]"
],
"value": "n"
2022-07-03 19:47:10 +03:00
},
"idk": {
"utterance_samples": [
"I do not know",
"Do not know",
"[Dont|Don't] know",
"No idea",
2022-07-03 19:47:10 +03:00
"Not sure"
],
"value": "idk"
},
"probably": {
"utterance_samples": [
"Probably",
"Probably yes"
],
"value": "p"
2022-07-03 19:47:10 +03:00
},
"probably_not": {
"utterance_samples": [
"Probably [no|not]"
],
"value": "pn"
2022-07-03 19:47:10 +03:00
}
}
}
},
"answers": {
2022-07-13 18:26:15 +03:00
"network_error": [
"I cannot reach Akinator, you may verify your network.",
"Akinator isn't reachable at the moment. Please check your network.",
"It looks like your network cannot reach Akinator."
],
"calling_akinator": [
"I'm calling my friend Akinator...",
"Alright, let me call Akinator, wait a sec...",
"Sure, let me get in touch with Akinator. Please wait a sec..."
],
"guessed": [
"I take the shot, you are thinking of %name%. %description%.",
"I guess you think of %name%. %description%."
],
"guessed_img": [
"<img src=\"%url%\" alt=\"%name%\" style=\"max-width:200px\" />"
],
"ask_for_retry": [
"Do you want to go for another one?",
"Should we go for another try?"
],
"confirm_retry": [
"Gotcha!",
"Let's go for another try then!"
],
"deny_retry": [
"Got it, take care.",
"Let me know anytime you want I call Akinator."
]
2022-07-03 19:47:10 +03:00
}
}