Hi, I need to call an action when some specific entities appear in the user phrase with certain intent. With one entity I’m using:
- story: keyDescription
steps:
- intent: description
entities:
- concept: "key"
- action: keyDescriptionAction
but I don’t know if I can write:
- story: keyDescription
steps:
- intent: description
entities:
- concept: "key" OR "dniE" OR "place"
- action: keyDescriptionAction
¿Is it correct? ¿Is there any other option? ¿What about if I need differente entities with diferente values? Thanks.