Hi,
I have trouble to understand the Slots doumentation.
Theere it is stated that:
If your NLU model picks up an entity, and your domain contains a slot with the same name, the slot will be set automatically. For example:
# story_01 * greet{"name": "Ali"} - slot{"name": "Ali"} - utter_greet
In this case, you don’t have to include the
- slot{}
part in the story, because it is automatically picked up.
Does the you don’t have to include the - slot{ } part
-part refer to the third line of the example?
So would be
# story_01
* greet{"name": "Ali"}
- utter_greet
correct in this case?