Is it good to include a general response selector if one has specific response selectors?

Hi, I have a best practice question. If we have specific response selectors e.g. for chitchat and FAQ like:

pipeline:
# Other components
- name: ResponseSelector
  epochs: 100
  retrieval_intent: faq
- name: ResponseSelector
  epochs: 100
  retrieval_intent: chitchat

would it be adviseable to still have an selector for the other responses so that we have in the end a config like this?:

pipeline:
# Other components
- name: ResponseSelector
  epochs: 100
- name: ResponseSelector
  epochs: 100
  retrieval_intent: faq
- name: ResponseSelector
  epochs: 100
  retrieval_intent: chitchat

Many thanks!