-
Notifications
You must be signed in to change notification settings - Fork 482
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
External Entities & Dynamic lists #3300
Conversation
…ognizer. Improved MockLuis to pay attention to parameters.
…ng them in LUIS Recognizer without introducing cycles.
…ding expressions. This is also a breaking change because appid, etc. now is expressions. Fixed bug in ArrayExpressionConverter where other convertes would not be used.
…lization issues. Add test that uses expression.
Get rid of lg and memorypath roles.
Pull Request Test Coverage Report for Build 102465
💛 - Coveralls |
✔️ No Binary Compatibility issues for Microsoft.Bot.Builder.dll compared against version 4.6.3 |
✔️ No Binary Compatibility issues for Microsoft.Bot.Builder.dll compared against version 4.6.3 |
libraries/Microsoft.Bot.Builder.Dialogs.Adaptive/Actions/BaseInvokeDialog.cs
Show resolved
Hide resolved
libraries/Microsoft.Bot.Builder.Dialogs.Adaptive/LUIS/LuisAdaptiveRecognizer.cs
Outdated
Show resolved
Hide resolved
libraries/Microsoft.Bot.Builder.Dialogs.Adaptive/LUIS/LuisAdaptiveRecognizer.cs
Outdated
Show resolved
Hide resolved
libraries/Microsoft.Bot.Builder.Dialogs.Adaptive/Memory/DialogContextExtensions.cs
Show resolved
Hide resolved
...crosoft.Bot.Builder.Dialogs.Adaptive/Schemas/Recognizers/Microsoft.QnAMakerRecognizer.schema
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
✔️ No Binary Compatibility issues for Microsoft.Bot.Builder.dll compared against version 4.6.3 |
✔️ No Binary Compatibility issues for Microsoft.Bot.Builder.dll compared against version 4.6.3 |
Fix for #3156 which now enables external entity recognizers and dynamic lists for declarative LUIS recognizers.
*** Breaking change for declarative LUIS Recognizers ***
They now use expressions so to bind you need to do "=luis.settings.endpointKey" rather than "{luis.settings.endpointKey}". There is also a PR to update bf-cli.
Dropped $role of lg and memorypath since not used.
Changed it so $role of expression would add string type.
Updated TestBot to include settings.
Moved all of the PropertyExpression stuff to its own library. Once it no longer depends on .lg we can move it into the actual expression library.