howdyai / botkit-cms

An open tool for designing, building and managing interactive dialog systems
https://botkit.ai
MIT License
265 stars 92 forks source link

Is a variation of doesn't seem to work #22

Closed mdemin914 closed 5 years ago

mdemin914 commented 5 years ago

Hey,

I have a simple script configured to say yes or no based on the condition if is variation of

Screen Shot 2019-05-22 at 7 48 03 PM

However, it never seems to branch to the no condition.

Screen Shot 2019-05-22 at 7 49 07 PM

I am using the following:

 "botbuilder-adapter-slack": "^1.0.2",
"botbuilder-storage-mongodb": "^0.9.5",
"botkit": "^4.0.2",
"botkit-plugin-cms": "^1.0.1"

And botkit-cms version 0.0.3

Is there a config I am missing? Thanks!

benbrown commented 5 years ago

This functionality is not currently in Botkit 4. However, the ability to recreate it will likely be included in an upcoming version.

Meanwhile, the regex pattern is still available --- and honestly, that's all that was happening behind the scenes anyways. The patterns for the 3 included utterances are in the file linked below:

https://github.com/howdyai/botkit/blob/legacy/lib/utterances.json

mdemin914 commented 5 years ago

Thanks!