Hi,
How would I do the following:
I want the user to ask if he / she is allowed to bring [noun] to camp. I started of by creating a trigger which looks for the following:
can i bring a
can i have
am i allowed to bring
am i allowed to have
etc…
Now what i would like to do is create a group of nouns and use that group to run against the contains filter. For example If the user were to ask “Can i bring a dog” It would check the [allowed-pets] category which contains a list of all the pets that are allowed in camp. Currently
I am doing the following as a workaround for the moment but as you can see its going to become very difficult to maintain.
{{new_message.message}} contains cat
-or-
{{new_message.message}} contains dog
-or-
{{new_message.message}} contains fish
-or-
{{new_message.message}} contains pig
Any ideas / suggestions are welcome!
Thanks!