# How add login(user enter username and password) system in rasa chatbot

how implement user login system in rasa chatbot but user enter password not show in input section(secure password)???

# How reset action(current running actions) But not reset slot value?

I fixed it no worry. at the time action_slot_reset and store all slot value in one slot.
like
return [Restart(), (SlotSet(“slot_name”, all_slot_value_in_dictionary))]

I have flight booking chatbot and i have also filter system after result
user : i want to book from ABC to CDE for tomorrow
– slot(save_from_location, save_to_location, save_date_location) these slot fill by some action action_save_from_location, action_save_to_location, action_save_date all right…

How reset action(current running actions) But not reset slot value ?
I want to reset only actions not slot. is it possible .

# How predict action from action.py file

this is my “action_save_location” method return
return [SlotSet(‘location’, location)]
and this is my “action_save_date” method return
return [SlotSet(‘date_hotel’, date_hotel)]
But my be user can type “i want to book hotel in India(country) for 5 july” but also i have validation on action_save_loc…

my story look like ;
Generated Story -9123541417746865941

hotel.book

utter_location

hotel.book{“location”: “surat”}

slot{“location”: “surat”}
action_save_location_hotel
slot{“location”: “surat”}
slot{“venue-facility”: null}
slot{“map-sort”: null}
slot{“filter-value_stack”: null}
utter_date

I am asking that I have a hotel booking chatbot so if user enter "Book hotel in india for tomorrow " then I want to perform both action like action_save_location and action_save_date. all right but when I apply validation on action_save_location(where you want to go in india) then next action it as…

# I need help in nlu data extraction(ner_cref)

i used dialogflow data and i have enough data for training but i try on new version then it give some result no any improvement in nlu model.

I have two type of entity(return date and departure date) but rasa nlu can’t figure which is departure date and which is return date
eg:- “can you help me to find flight from goa to chennai on 10 december 2019” this i my sentence here 10 december is departure entity in training set but after train i…

# How send post template to facebook using dispatcher?

I wan to display list of result in facebook chatbot using dispatcher.utter_template or other(any which work for template) the problem is that all things are right but bot not display any result with respect to template.?? any solution for it???
