Getting error in executing custom actions

Can you send the story on the right?

And the error you got this time

I am not getting any errors in actions log now.

(rasabot) D:\React\rasa_projects\myBot\actions>rasa run actions
2022-04-08 20:13:10 INFO     rasa_sdk.endpoint  - Starting action endpoint server...
2022-04-08 20:13:12 INFO     rasa_sdk.executor  - Registered function for 'user_details_form'.
2022-04-08 20:13:12 INFO     rasa_sdk.executor  - Registered function for 'action_submit'.
2022-04-08 20:13:12 INFO     rasa_sdk.executor  - Registered function for 'program_name_form'.
2022-04-08 20:13:12 INFO     rasa_sdk.executor  - Registered function for 'action_about_program'.
2022-04-08 20:13:12 INFO     rasa_sdk.executor  - Registered function for 'action_who_can_apply'.
2022-04-08 20:13:12 INFO     rasa_sdk.executor  - Registered function for 'action_deadline'.
2022-04-08 20:13:12 INFO     rasa_sdk.executor  - Registered function for 'action_how_to_apply'.
2022-04-08 20:13:12 INFO     rasa_sdk.executor  - Registered function for 'action_link'.
2022-04-08 20:13:12 INFO     rasa_sdk.executor  - Registered function for 'action_anotherProgram'.
2022-04-08 20:13:12 INFO     rasa_sdk.executor  - Registered function for 'getUserId'.
2022-04-08 20:13:12 INFO     rasa_sdk.executor  - Registered function for 'action_bussinessSupport'.
2022-04-08 20:13:12 INFO     rasa_sdk.executor  - Re-registered function for 'action_who_can_apply'.
2022-04-08 20:13:12 INFO     rasa_sdk.executor  - Registered function for 'action_programDetails'.
2022-04-08 20:13:12 INFO     rasa_sdk.endpoint  - Action endpoint is up and running on http://0.0.0.0:5055
c:\users\diyaa\anaconda3\envs\rasabot\lib\site-packages\rasa_sdk\executor.py:48: FutureWarning: Please pass the parameter `response` instead of `template` to `utter_message`. `template` will be deprecated in Rasa 3.0.0.
  FutureWarning,

story:

version: "2.0"
stories:
- story: Story from Conversation ID f2ec6ab4d268416c9f936fccf5cb6135
  steps:
  - intent: greet
  - action: utter_greet
  - intent: tell_new_user
  - action: utter_ask_user_details
  - intent: affirm_user_details
  - action: user_details_form
  - active_loop: user_details_form
  - slot_was_set:
    - requested_slot: email
  - intent: tell_old_user
  - action: user_details_form
  - slot_was_set:
    - email: testuser1234@gmail.com
  - intent: tell_old_user
  - action: user_details_form
  - slot_was_set:
    - password: testuser1234
  - intent: greet
  - action: user_details_form
  - slot_was_set:
    - userLanguage: english
  - intent: tell_old_user
  - action: user_details_form
  - active_loop: null
  - slot_was_set:
    - username: testuser1
  - action: action_submit

slots: image

Try talking to the bot in Rasa Shell instead of Rasa X.

Older versions of Rasa X had an issue where the response would not be displayed in the action takes a bit of time to execute.

okay, i will try to do that, thank you.

Okay, keep me updated :slight_smile:

yes sure. Sometimes its taking more time to respond. Other than that it is working fine

1 Like

Hmm so as I said, the issue now is from Rasa X. Don’t worry, when you build an app for your bot it will respond :slight_smile:

Anyway, your original issue was solved there.