All - Activity - faiza_conte - Rasa Community Forum
Is it possible to make a Django website interface for rasa to receive input from a user instead of a chat widget?
hello i have some questions on rasa…can we build another interface like a website or other instead of a chatbot UI for rasa…like everything background for nlp rasa stays as it is but to receive input from a user instead of chatbot or chat widget other like website…is that possible?
Failed to extract requested slot 'department'
It’s nothing much just make sure that the slot name is actually exists or the spelling most of the time this kind of errors exists.
How to connect Healthcare dataset to rasa chatbot and train
@forwitai …I have used separately a data with machine learning …I just used a little conversation data of mine in rasa and a diseases prediction using machine learning using rasa custom action by passing a slot using formaction…that’s could also be another choice to go with healthcare …then u can do …
How does using custom action to ask for the next slot works in forms
@tahakapadia …1.make sure your rasa version is more than 2…and second make sure your action is written under action in domain.yml file
Can anyone explain me about testing tools(hardware/software)
I developed a chatbot using rasa and now am going to write a test plan document…can anyone give me some idea what am suppose to write about testing tools in terms of this chatbot that is developed on top of rasa??..
Can we hide a password while a person is typing in a chatbot widget?
Is it possible to encrypt or to make a password hidden while a user is typing in a chatbot widget???..if so how can we do it can anyone give me some ideas how to implement that ???
Dispachter is not printing out the out put of a function from another python file
input_x1=tracker.get_slot("indigestion")
input_x2=tracker.get_slot("loss_of_appetite")
input_x3=tracker.get_slot("abdominal_pain")
input_x4=tracker.get_slot("passage_of_gases")
input_x5=tracker.get_slot("internal_itching")
dispatcher.utter_message(vomitting(input_x1,input_x2,input_x3,input_x4,input_x5))
How can rasa connect with external channel like a website?
can anyone explain me how rasa connect with other channel through rest channel…how is the scenario works when we communicate with a website chat wedge …how is the test from the chat wedge go to rasa and the output comes to us through the website chat wedge ??
How can we hundle which formaction to be performed based on slot value in custom action
@jjuzl…yes I seen some how to call an action like this If slot_value=='something' Dispatcher.utter_message(action='action_something') Elif slot_value=='something' Dispatcher.utter_message(I want it to perform a formaction here)
I need some help from rasa community, how i can identify frequently asked questions to the chatbot and store them
@tiny_imod thanks…the reason I add that in the title is mostly it tooks people too long to respond to my question that’s why…since u r here now I also need urgent solution to the following question… Assume I have this code
If slot_value=='something'
Dispatcher.utter_message(text="somet..."
How can we hundle story or predict next action based on slot values
Based on slot value??
Need help with Conditional Intent
@akelad…we can do a custom action if the weather is cold or hot to do another action based on the slot value…but what if I want to do a formaction based on slot value…if I put as action what about the active loop ??..can anyone help here
After all this time looks like am going to give up on rasa
@jonathanpwheat…okay…I have another question …I wanted to do a conditional flow in a story…assume the story goes like this the user asks for a treatment then the the bot asks an initial symptom by providing a button selection then if a user selects one of the buttons as initial symptom then based on that the Bot will ask further question relat…
I have a question whether the user has the symptoms or not …the question is with button of yes or no…but in formaction how can we handle it because a user not only say yes but also can say no at the same time...
How can we collect user input such as yes/no?
how can we use a formaction to collect user input such as yes/no? i dont know if this is the right way to do it…please anyone correct me . how can we allow user to select yes or no then collect them to do a custom action.
How to prevent a slot from being overwritten?
@UlisesVD…what is the use of making auto_fill: False .?? and i want to override the slots if a new form is activated but it just takes pre-filled slots and validates it why is that?
Understanding Rasa NLU
@Juste…i also wanted to know about this things more specificy,can you please explain more of the steps you said here how the user input gets in and processed and prediction get produced…after the bag of words it is confusing me hoe sentence representation gets created , fed to svm and prediction pro…