I am a new to Rasa and creating a project. In just starting i am facing problems. I am sharing my files and bot responses. Config.yml
Configuration for Rasa NLU.
Components
language: en pipeline: supervised_embeddings
Configuration for Rasa Core.
Policies
policies:
- name: MemoizationPolicy
- name: KerasPolicy
- name: MappingPolicy
Domain.yml
intents:
- greet
- goodbye
- bot_challenge : {triggers: utter_iamabot}
actions:
- utter_greet
- utter_goodbye
- utter_iamabot
templates: utter_greet:
- text: “Hey Buddy! How are you?”
utter_goodbye:
- text: “Bye Bye Buddy”
utter_iamabot:
- text: “I am a Rasa bot, Developed by AK.” Nlu.md
intent:greet
- hey
- hello
- hi
- good morning
- good evening
- hey there
intent:goodbye
- bye
- goodbye
- see you around
- see you later
intent:bot_challenge
- are you a bot?
- are you a human?
- am I talking to a bot?
- am I talking to a human?
stories.md
happy path
- greet
- utter_greet
- goodbye
- utter_goodbye
My bot response ----------------------
What i want to resolve:
- I am creating a complex project which can answer not as per sequence story path based. when story path completes or same intent is triggering then bot failed to respond.
- While triggering action for particular intent, bot reponses well but triggering action even for non intent texts also.
please suggest how to do action triggering for specific intents without out story path.