## intent:with_whom
- book with [mhaneef@provenconsult.com](att_email)
- book with [tsheikh@provenconsult.com](att_email)
- book with [lverma@provenconsult.com](att_email)
- with [ssheikh@provenconsult.com](att_email),[msuaib@provenconsult.com](att_email),[ysai@provenconsult.com](att_email) and [uatre@provenconsult.com](att_email)
My story is :-
attendies flow
with_whom
action_with_whom
And my action file is :-
class ActionWithWhom(Action):
def name(self):
return "action_with_whom"
def run(self, dispatcher, tracker, domain):
print('this is all attendies ',tracker.latest_message['entities'])
dispatcher.utter_message('your room is booked fake 2')
And problem is when i am saying "book with lverma@provenconsult.com and mhaneef@provenconsult.com
but i am getting only one last entity why one only? i need both.
in dialogflow they automatically gives you the array of entity with auto generated entity names with all values but in rasa how we can get all etities values???