microsoftgraph/botframework-csharp-excelbot-rest-sample

LUIS import fails

sjwaight opened this issue · 2 comments

The current ExceBot.json fails to import into LUIS with 'BadRequest': regex too complicated when any of the existing regex statements are present. When removing them the import runs fine.

I am wondering, if it is this regex that is causing the issue:

{

  "name": "Name",

  "pattern": "[a-z_\\\\][\\w\\d\\._]*",

  "activated": true

}

Try changing the pattern to: [a-z_][\w\d._]*

I will try that, but in the meantime I removed all the regex expressions to import the json.