No registered action found for name 'action_set_reminder'

it seems i am getting this for all my actions

I have set my code snippets as follows

domain.yml intents:

  • ask_remind_call: triggers: action_set_reminder

enpoints.yml action_endpoint: url: “http://localhost:5079/webhook

i am running my action server with command: rasa run actions --actions actions -p 5079 --debug

after make all rasa servers on when i hit message for “ask_remind_call” intent, then I get the following error.

(reminder) C:\Users\msi1\Desktop\Gray Matrix Projects\Experiments\reminderbot>rasa run actions --actions actions -p 5079 --debug 2020-09-09 14:03:42 INFO rasa_sdk.endpoint - Starting action endpoint server… 2020-09-09 14:03:42 INFO rasa_sdk.endpoint - Action endpoint is up and running on http://localhost:5079 2020-09-09 14:03:42 DEBUG rasa_sdk.utils - Using the default number of Sanic workers (1). 2020-09-09 14:03:53 DEBUG rasa_sdk.executor - Received request to run ‘action_set_reminder’ 2020-09-09 14:03:53 ERROR rasa_sdk.endpoint - No registered action found for name ‘action_set_reminder’.

@MuraliChandran14, @flore, @alkak95, @MahimaVenu could you please help?

Hi @omkarcpatil , can you please let me know whether you have added your action name (action_set_reminder) under actions in domain file

yes it is added.

@omkarcpatil Can you share the snippet of your custom action code and how you’r calling the ReminderScheduled function and your domain file as well in all places where you have registered your action

action_set_reminder.py (1.4 KB) domain.yml (1.3 KB)

please refer above documents

No this doesnt work because the code isnt reaching to “ask_remind_call” only

@omkarcpatil can you tell me from where this action “action_set_reminder” is getting called. have you defined this in your stories flow or somewhere else

in my domain.yml file in have set trigger to the intent

refer this link Scheduling Reminders — Rasa Core 0.9.8 documentation you need to first call the action_set_reminder from your story and then try with your previous code.