Entities extraction rasa 2

please i need help in extraction of entities basically it works if i type the examples i provided in nlu file but if i try new value it returns None and please let me know if i need to add some specific configurations in config file for example:

nlu file:

stories file:

  • story: search path 1 steps:
    • intent: greet
    • action: utter_greet
    • intent: search_formation entities:
      • search: odoo
    • slot_was_set:
      • search: odoo
    • action: utter_search_formation

domain file: intents:

  • greet
  • search_formation

entities:

  • search

slots: search: type: text

responses: utter_greet:

  • text: “Hey!”

utter_search_formation: - text: “I will back to ya with the result of {search}”

actions:

  • utter_search_formation

session_config: session_expiration_time: 60 carry_over_slots_to_new_session: true

Hi @omar_21 :wave: you likely need more training examples for the entity to generalize better. If you have a limited number of possible entities you would expect from your user you may consider using a Lookup Table to help with your entity extraction.

@m.vielkind i tried adding some more training data but still the same and in this case not limited entities because the user can search for anything i would like to get the specific value the user is looking for ?