1
1
mirror of https://github.com/leon-ai/leon.git synced 2024-12-20 23:31:30 +03:00
leon/packages/calendar/data/expressions/en.json

107 lines
2.1 KiB
JSON
Raw Normal View History

2019-05-03 18:31:09 +03:00
{
"todolist": {
"create_list": {
"expressions": [
"Create the list",
"Create a list"
2019-05-10 03:45:43 +03:00
],
"entities": [
{
"type": "trim",
"name": "list",
"conditions": [
{
"type": "between",
"from": "the",
2019-05-10 03:45:43 +03:00
"to": "list"
},
{
"type": "between",
"from": "a",
2019-05-10 03:45:43 +03:00
"to": "list"
},
{
"type": "between",
"from": "an",
2019-05-10 03:45:43 +03:00
"to": "list"
},
{
"type": "between",
"from": "my",
2019-05-10 03:45:43 +03:00
"to": "list"
}
]
}
]
},
"rename_list": {
"expressions": [
"Rename the list to list",
"Rename my list to list"
],
"entities": [
{
"type": "trim",
"name": "old_list",
"conditions": [
{
"type": "between",
"from": "the",
"to": "list"
},
{
"type": "between",
"from": "a",
"to": "list"
},
{
"type": "between",
"from": "an",
"to": "list"
},
{
"type": "between",
"from": "my",
"to": "list"
}
]
},
{
"type": "trim",
"name": "new_list",
"conditions": [
{
"type": "after",
"from": "to"
}
]
}
]
},
"delete_list": {
"expressions": [
"Delete the list",
"Delete my list"
2019-05-03 18:31:09 +03:00
]
},
"add_todo": {
"expressions": [
"Add to the list",
"Add to my list"
]
},
"complete_todo": {
"expressions": [
"Complete from the list",
"Complete from my list"
]
2019-05-03 18:31:09 +03:00
},
"archive_todo": {
2019-05-03 18:31:09 +03:00
"expressions": [
"Archive from the list",
"Archive from my list"
2019-05-03 18:31:09 +03:00
]
}
}
}