Watson Assistant - 如何获取特定实体的大小

Watson Assistant - How to get size of specific entities

例如我有 3 个不同的实体

@action = eat,run,walk
@person = Michael, John, Fred 
@emotion = angry,sad,happy

我想计算用户输入的操作和人物实体

If bot recognizes
entities['action'].size() + entities['person'].size() > 2

还有其他方法可以实现吗?

要说明未被识别的实体之一,您可以使用三元运算符 <Expression> ? <what_to_do_when_true> : <what_to_do_when_false>

因此,在您的示例中,条件如下所示: ((entities['action'] != null ? entities['action'].size() : 0) + (entities['action'] != null ? entities['person'].size() : 0)) > 2

当其中一个实体不被识别时(null),计数的值将是0