# How to Stop Bot's Default Follow-Up Question After Initial Response?

**URL:** https://forum.rasa.com/t/how-to-stop-bots-default-follow-up-question-after-initial-response/62844
**Category:** Rasa CALM
**Created:** [July 30, 2024, 2:42pm UTC](https://forum.rasa.com/t/how-to-stop-bots-default-follow-up-question-after-initial-response/62844 "2024-07-30T14:42:39Z")
**Posts on this page:** 1
**Showing post:** 4

<div class="post-metadata">

### Author: ![l2nguyen](https://dub1.discourse-cdn.com/flex013/user_avatar/forum.rasa.com/l2nguyen/32/23881_2.png) [@l2nguyen](https://forum.rasa.com/u/l2nguyen)
#### Post date: [July 31, 2024, 9:20am UTC](https://forum.rasa.com/t/how-to-stop-bots-default-follow-up-question-after-initial-response/62844/4 "2024-07-31T09:20:44Z")

</div>

You can modify your `pattern_completed` so that it does not happen after certain flows. See example below:

```yaml
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

```

---

_[View the full topic](https://forum.rasa.com/t/how-to-stop-bots-default-follow-up-question-after-initial-response/62844)._
