Want to know about intent handling

i have an intent like bot_profile

intent: bot_profile

  • what is your name
  • who are you
  • where are you from

So, now user asks a question like “what is my name”, then also the bot is identifying the above intent. can you please help me how to handle this. thanks in advance.

Create another intent for the user asking about him or herself.

  1. Provide lots of training data
  2. You can add regex features for both intents to improve classification
  3. You can also call a custom action after either intent and do some manual checking in the action’s run method

thanks for the response

can you provide me with an example because i am new to rasa so please help me with that.