diff --git a/rasa/cli/project_templates/tutorial/actions.py b/rasa/cli/project_templates/tutorial/actions.py index f023605fe014..312c3a47c5d5 100644 --- a/rasa/cli/project_templates/tutorial/actions.py +++ b/rasa/cli/project_templates/tutorial/actions.py @@ -4,9 +4,9 @@ from rasa_sdk.events import SlotSet -class ActionSufficientFunds(Action): +class ActionCheckSufficientFunds(Action): def name(self) -> Text: - return "action_sufficient_funds" + return "action_check_sufficient_funds" def run( self, diff --git a/rasa/cli/project_templates/tutorial/domain.yml b/rasa/cli/project_templates/tutorial/domain.yml index e06882f8f3d1..dc2854563712 100644 --- a/rasa/cli/project_templates/tutorial/domain.yml +++ b/rasa/cli/project_templates/tutorial/domain.yml @@ -18,4 +18,4 @@ responses: - text: "How much money would you like to send?" utter_transfer_complete: - - text: "All done. ${amount} has been sent to {recipient}." + - text: "All done. {amount} has been sent to {recipient}."