I am trying to set the slot using NLU. I am going through the tutorial Slots
Unfortunately slot values are not reflected. Please refer to the details below:
- Snippet from stories.md
Name introduction 1
- name_introduction{“name”,“himanshu”}
- slot{“name”:“himanshu”}
- utter_name_introduction
- Snippet from domain.yml
intents:
- name_introduction intents: slots: name: type: text
entities:
- name
templates: utter_name_introduction:
- text: “My name is {name}.”
actions:
- utter_name_introduction
- nlu.md
intent:name_introduction
- Tell me your name
- What is your name
On running it always print the " My name is None."
Am I doing anything wrong ?? Please suggest