Issue with form while trying to fill the values of the form

I am new to rasa. I am trying to fill the form with rasa but encountering an error.

details: when I am trying to call my form after filling my first response. sometimes my whole form is skipped and I am getting one more extra slot which I have not defined in domain.yml

Current slot values:

    name: None
    requested_slot: None
    ssn: None
    subject: None

But I have not defined requested_slot. I have only defined name,ssn,subject.

my logs are:

2020-07-04 14:43:37.778137: W tensorflow/core/kernels/data/generator_dataset_op.cc:103] Error occurred when finalizing GeneratorDataset iterator: Cancelled: Operation was cancelled

2020-07-04 14:43:37 DEBUG    rasa.core.policies.mapping_policy  - There is no mapped action for the predicted intent, 'admission_enquiry'.

2020-07-04 14:43:37 DEBUG    rasa.core.policies.form_policy  - There is no active form

2020-07-04 14:43:37 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_1_TEDPolicy

2020-07-04 14:43:37 DEBUG    rasa.core.processor  - Predicted next action 'action_listen' with confidence 0.88.

2020-07-04 14:43:37 DEBUG    rasa.core.processor  - Action 'action_listen' ended with events '[]'.
2020-07-04 14:43:37 DEBUG    rasa.core.lock_store  - Deleted lock for conversation 'd6c7784e256d426489cac81448922f58'.

your following admission details are: - name: None
 - ssn: None
 - subject: None
what is the overall experience?

I am sure that my action server is up and running and the error in my action server is as follows:

error:rasa_sdk.endpoint - Failed to extract slot name with action admission_form

My files are as follows:

nlu.md (1.3 KB) stories.md (225 Bytes) config.yml (643 Bytes) credentials.yml (776 Bytes) domain.yml (940 Bytes) endpoints.yml (1.4 KB)

Hi! Can you post your actions file as well?

@GeovanaRamos Thanks alot for replying. I have figured out what my issue was. I was missing slot values and now I have included slot mappings and everything is working like a charm now.

1 Like