Rasa recognising entities but not filling the slots in a form

config.yml (1.5 KB) credentials.yml (980 Bytes) domain.yml (3.5 KB) endpoints.yml (1.4 KB) actions.py (1.2 KB) nlu.yml (2.6 KB) rules.yml (633 Bytes) stories.yml (1.3 KB)

In the slot add the below requested_slot. This is my example. Add your own slots values like college etc. Also in the activating rule add the below steps. Again add your own requested slot values.

requested_slot: type: categorical values: - name - email - GPE - contact influence_conversation: true mappings: - type: custom

  • rule: Activate form steps:
    • intent: inform_form_details
    • action: utter_bot_will_ask
    • action: user_details_form
    • active_loop: user_details_form
    • slot_was_set:
      • requested_slot: name
    • slot_was_set:
      • requested_slot: email
    • slot_was_set:
      • requested_slot: GPE
    • slot_was_set:
      • requested_slot: contact