1
1
mirror of https://github.com/leon-ai/leon.git synced 2024-12-18 22:31:32 +03:00
leon/test/assets/expressions.json

58 lines
979 B
JSON
Raw Normal View History

2019-05-11 18:37:59 +03:00
{
"color": {
"run": {
"expressions": [
"I like that color"
],
"entities": [
{
"type": "regex",
"name": "color",
"regex": "blue|white|red"
}
]
}
},
"unittest": {
"do_not_support_entity": {
"expressions": [
"Just an expression"
],
"entities": [
{
"type": "not_supported_entity"
}
]
}
},
"mockingbird": {
"test": {
"expressions": [
"Whistle as a bird"
],
"entities": [
{
"type": "trim",
"name": "start",
"conditions": [
{
"type": "before",
"to": "bird"
}
]
},
{
"type": "trim",
"name": "animal",
"conditions": [
{
"type": "after_last",
"from": "a"
}
]
}
]
}
}
}