Skip to content
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

fix: lu build bug when training empty intents #2201

Merged
merged 1 commit into from
Mar 9, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Composer/packages/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"@bfc/extensions": "*",
"@bfc/indexers": "*",
"@bfc/shared": "*",
"@microsoft/bf-lu": "4.8.0-preview.110925",
"@microsoft/bf-lu": "4.8.0-preview.111952",
"@emotion/core": "^10.0.7",
"@reach/router": "^1.2.1",
"axios": "^0.18.0",
Expand Down
2 changes: 1 addition & 1 deletion Composer/packages/lib/indexers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
},
"dependencies": {
"@bfc/shared": "*",
"@microsoft/bf-lu": "4.8.0-preview.110925",
"@microsoft/bf-lu": "4.8.0-preview.111952",
"botbuilder-lg": "^4.8.0-preview.106823",
"botframework-expressions": "^4.8.0-preview.106476",
"lodash": "^4.17.15"
Expand Down
2 changes: 1 addition & 1 deletion Composer/packages/lib/indexers/src/luIndexer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const { luParser } = sectionHandler;
function convertLuDiagnostic(d: any, source: string): Diagnostic {
const severityMap = {
ERROR: DiagnosticSeverity.Error,
WARNING: DiagnosticSeverity.Warning,
WARN: DiagnosticSeverity.Warning,
INFORMATION: DiagnosticSeverity.Information,
HINT: DiagnosticSeverity.Hint,
};
Expand Down
2 changes: 1 addition & 1 deletion Composer/packages/server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"@bfc/lg-languageserver": "*",
"@bfc/lu-languageserver": "*",
"@bfc/shared": "*",
"@microsoft/bf-lu": "4.8.0-preview.110925",
"@microsoft/bf-lu": "4.8.0-preview.111952",
"archiver": "^3.0.0",
"axios": "^0.18.0",
"azure-storage": "^2.10.3",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
},
"dependencies": {
"@microsoft/bf-cli-command": "https://botbuilder.myget.org/F/botbuilder-declarative/npm/@microsoft/bf-cli-command/-/@microsoft/bf-cli-command-1.0.1.tgz",
"@microsoft/bf-lu": "4.8.0-preview.110925",
"@microsoft/bf-lu": "4.8.0-preview.111952",
"@types/node": "^12.0.4",
"express": "^4.15.2",
"monaco-editor-core": "^0.17.0",
Expand Down
8 changes: 4 additions & 4 deletions Composer/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2714,10 +2714,10 @@
fs-extra "^7.0.1"
tslib "~1.10.0"

"@microsoft/[email protected].110925":
version "4.8.0-preview.110925"
uid "8905960d5858aa9f4d94c150fdc80ac4b6947e94"
resolved "https://botbuilder.myget.org/F/botframework-cli/npm/@microsoft/bf-lu/-/@microsoft/bf-lu-4.8.0-preview.110925.tgz#8905960d5858aa9f4d94c150fdc80ac4b6947e94"
"@microsoft/[email protected].111952":
version "4.8.0-preview.111952"
uid d1707a5f150ab204e67122f8b1d5796ad7f656c9
resolved "https://botbuilder.myget.org/F/botframework-cli/npm/@microsoft/bf-lu/-/@microsoft/bf-lu-4.8.0-preview.111952.tgz#d1707a5f150ab204e67122f8b1d5796ad7f656c9"
dependencies:
"@azure/cognitiveservices-luis-authoring" "3.0.1"
"@azure/ms-rest-azure-js" "2.0.1"
Expand Down