I’m following the Building Assistants: Bot Starts Conversation guide on Rasa Pro. My bot responds correctly but then asks “How else can I help you?” right after and i don’t want bot to behave like that.
Thank you for the response but I want to disable the default pattern_completed only for this specific flow, but keep it enabled for other flows. How can I achieve this?
You can modify your pattern_completed so that it does not happen after certain flows. See example below:
flows:
pattern_completed:
description: a flow has been completed and there is nothing else to be done
steps:
- noop:
next:
- if: context.previous_flow_name == 'start_conversation' or context.previous_flow_name == 'another_flow'
then:
- action: action_cancel_flow
next: END
- else:
- action: utter_can_do_something_else
next: END