I have implemented 2 intents in Rasa. I am getting action_listen as the response of both the intents in Rasa-X. I tried to run NLU as server & checked the response, where I am getting proper response. But it is not working with the Rasa X.
config.yml %YAML 1.1
language: en
pipeline: “supervised_embeddings”
name: ner_duckling_http
policies:
-
name: MemoizationPolicy
-
name: KerasPolicy
-
name: MappingPolicy
domain.yml intents:
- dashboard
- balance actions:
- utter_view_dashboard
- utter_view_balance
templates:
utter_view_dashboard:
- text: “view dashboard” utter_view_balance:
- text: View my roster
nlu.md
intent:dashboard
- show home screen
- show my home screen
- display my home screen
- display my dashboard
- go home screen
- go dashboard
- go to home
- go to dashboard
- show my dashboard
- show main screen
- view main screen
- view main dashboard
- i want see my dashboard
- i want see my home screen
intent:balance
- show balance
- show balances
- show my balance
- show my balances
- display my balance
- display my balances
- go to balance
- go to balances
- view my balance
- view my balances
stories.md
path1
- dashboard
- utter_view_dashboard
path 2
- balance
- utter_view_balance