What if an example can match two or more intents?

To fill a word such as “meeting” into different slots in different forms, how should I write the nlu part?

@AlenChuan You can try this concept

excluded_intents:
    - excluded_intent_1 
    - excluded_intent_2

forms:
  your_form:
    slot_name:
    - type: from_intent
      value: my_value
      intent: intent_name
      not_intent: 
         excluded_intents

  your_form_2:
    slot_name:
    - type: from_intent
      value: my_value
      intent: intent_name
      not_intent: 
         excluded_intents

Ref link: Forms

Check: from_intent and from_trigger_intent section

thanks! I think this is what I want btw, do I need to declare this: excluded_intents: - excluded_intent_1 - excluded_intent_2 if yes, where should I put it?

@AlenChuan For entities please check this link: Domain and for intents please check this link: Forms

ok

@AlenChuan Ok :slight_smile: