Hello, So I came up with a problem in which I am trying to create a chatbot for various product information automatization.
So what I am trying to do: For example I have 5 products. (Mixer, Refrigerator, Toaster, Microwave and Electric Grill) All these products have in some way same information:
For ex:
{
"Microwave":{power:500w, size:50x30x50, plug:EU},
"Refrigerator":{power:2000w, size:100x50x100, plug US},
"Toaster":{power:1000w,size:20x20x20,plug:EU}
...
}
And I want to make an chat assistant that could answer something simmilar to this situation:
- User: Whats the appliance power?
- Bot: Okay, whats the applience you have bought from us?
- User: An Microwave
- Bot: A our XNZ Microwave uses 500watts of power
- User: Thank you…
So Im in a pickle because I dont have any idea what would be the smartest way to have this “product” information saved and trained for rasa. I guess I could always write a ton of utter responses and intents for each of the applience questions. But I am trying to think of a smarter way to for example have only one story (“Whats the power?”) and let rasa handle the rest.
Thank you!