Hi Team, I want to populate conversations and set slots for testing purpose (I want to test with large number of users talking with rasa bot). How can i automate data populations, kindly guide me how can I achieve this
Thanks 
Hi Team, I want to populate conversations and set slots for testing purpose (I want to test with large number of users talking with rasa bot). How can i automate data populations, kindly guide me how can I achieve this
Thanks 
I found the tracker/events api to be usefull for setting slots.
http://127.0.0.1:5005/conversations/user1/tracker/events – post data in array format [{ “event”:“slot”, “name”:“slot_name”, “value”:slot_value" }]
I have looped number of random generated data to this api.
Thanks… 