Work with intents with similar examples

Hi, in the bot I’m working on (a laptop recommender bot) I have two Intents with very similar examples that perform two different actions, for example:

intent: ask_for_recommendation --> used to recommend a laptop for an app or use
 examples: |
 - I want a laptop to use [autocad](apps)
 - Im looking for a pc to play [lol](apps)
 - What laptop is good for [gaming](uses)
  .
  .
  .
intent: ask_if_runs --> used to return if the current laptop can run an app or use
 examples: |
 - Works well with [autocad](apps)
 - Can I play  [lol](apps) with this notebook
 - Is it good for [gaming](uses)
  .
  .
  .

Those intents uses the same entities but I can not merge those two intents since they are used in different forms with different actions. Is this a good way to model the NLU data? Should I seek a different approach?

2 Likes