File tree Expand file tree Collapse file tree 14 files changed +162
-4
lines changed
botbuilder-dialogs-adaptive-runtime Expand file tree Collapse file tree 14 files changed +162
-4
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "extends" : " ../../.eslintrc.json"
3
+ }
Original file line number Diff line number Diff line change
1
+ _ts3.4
2
+ lib
3
+ node_modules
4
+ runtime.json
Original file line number Diff line number Diff line change
1
+ # botbuilder-ai-luis
2
+
3
+ The [ LuisBotComponent] ( https://github.com/microsoft/botbuilder-js/blob/main/libraries/botbuilder-ai/src/luisBotComponent.ts )
4
+ repackaged for consumption as a component in the Adaptive Dialogs runtime.
5
+
6
+ See the [ botbuilder-ai] ( https://github.com/microsoft/botbuilder-js/blob/main/libraries/botbuilder-ai/README.md )
7
+ package for more details.
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " botbuilder-ai-luis" ,
3
+ "preview" : true ,
4
+ "author" : " Microsoft Corp." ,
5
+ "version" : " 4.1.6" ,
6
+ "license" : " MIT" ,
7
+ "description" : " Luis component for Microsoft BotBuilder Adaptive Dialogs runtime" ,
8
+ "keywords" : [
9
+ " botbuilder" ,
10
+ " botframework" ,
11
+ " bots" ,
12
+ " chatbots"
13
+ ],
14
+ "bugs" : {
15
+ "url" : " https://github.com/Microsoft/botbuilder-js/issues"
16
+ },
17
+ "repository" : {
18
+ "type" : " git" ,
19
+ "url" : " https://github.com/Microsoft/botbuilder-js.git"
20
+ },
21
+ "main" : " lib/index.js" ,
22
+ "types" : " lib/index.d.ts" ,
23
+ "typesVersions" : {
24
+ "<3.9" : {
25
+ "*" : [
26
+ " _ts3.4/*"
27
+ ]
28
+ }
29
+ },
30
+ "dependencies" : {
31
+ "botbuilder-ai" : " 4.1.6"
32
+ },
33
+ "scripts" : {
34
+ "build" : " tsc -b" ,
35
+ "clean" : " rimraf _ts3.4 lib tsconfig.tsbuildinfo" ,
36
+ "lint" : " eslint . --ext .js,.ts" ,
37
+ "postbuild" : " downlevel-dts lib _ts3.4/lib --checksum"
38
+ },
39
+ "files" : [
40
+ " _ts3.4" ,
41
+ " lib" ,
42
+ " src"
43
+ ]
44
+ }
Original file line number Diff line number Diff line change
1
+ // Copyright (c) Microsoft Corporation.
2
+ // Licensed under the MIT License.
3
+
4
+ import { LuisBotComponent } from 'botbuilder-ai' ;
5
+
6
+ export default LuisBotComponent ;
Original file line number Diff line number Diff line change
1
+ {
2
+ "extends" : " ../../tsconfig.json" ,
3
+ "compilerOptions" : {
4
+ "esModuleInterop" : true ,
5
+ "outDir" : " lib" ,
6
+ "rootDir" : " src" ,
7
+ "strict" : true ,
8
+ "strictNullChecks" : true ,
9
+ "target" : " es6"
10
+ },
11
+ "include" : [
12
+ " src/**/*"
13
+ ]
14
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "extends" : " ../../.eslintrc.json"
3
+ }
Original file line number Diff line number Diff line change
1
+ _ts3.4
2
+ lib
3
+ node_modules
4
+ runtime.json
Original file line number Diff line number Diff line change
1
+ # botbuilder-ai-qna
2
+
3
+ The [ QnAMakerBotComponent] ( https://github.com/microsoft/botbuilder-js/blob/main/libraries/botbuilder-ai/src/qnaMakerBotComponent.ts )
4
+ repackaged for consumption as a component in the Adaptive Dialogs runtime.
5
+
6
+ See the [ botbuilder-ai] ( https://github.com/microsoft/botbuilder-js/blob/main/libraries/botbuilder-ai/README.md )
7
+ package for more details.
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " botbuilder-ai-qna" ,
3
+ "preview" : true ,
4
+ "author" : " Microsoft Corp." ,
5
+ "version" : " 4.1.6" ,
6
+ "license" : " MIT" ,
7
+ "description" : " QnAMaker component for Microsoft BotBuilder Adaptive Dialogs runtime" ,
8
+ "keywords" : [
9
+ " botbuilder" ,
10
+ " botframework" ,
11
+ " bots" ,
12
+ " chatbots"
13
+ ],
14
+ "bugs" : {
15
+ "url" : " https://github.com/Microsoft/botbuilder-js/issues"
16
+ },
17
+ "repository" : {
18
+ "type" : " git" ,
19
+ "url" : " https://github.com/Microsoft/botbuilder-js.git"
20
+ },
21
+ "main" : " lib/index.js" ,
22
+ "types" : " lib/index.d.ts" ,
23
+ "typesVersions" : {
24
+ "<3.9" : {
25
+ "*" : [
26
+ " _ts3.4/*"
27
+ ]
28
+ }
29
+ },
30
+ "dependencies" : {
31
+ "botbuilder-ai" : " 4.1.6"
32
+ },
33
+ "scripts" : {
34
+ "build" : " tsc -b" ,
35
+ "clean" : " rimraf _ts3.4 lib tsconfig.tsbuildinfo" ,
36
+ "lint" : " eslint . --ext .js,.ts" ,
37
+ "postbuild" : " downlevel-dts lib _ts3.4/lib --checksum"
38
+ },
39
+ "files" : [
40
+ " _ts3.4" ,
41
+ " lib" ,
42
+ " src"
43
+ ]
44
+ }
Original file line number Diff line number Diff line change
1
+ // Copyright (c) Microsoft Corporation.
2
+ // Licensed under the MIT License.
3
+
4
+ import { QnAMakerBotComponent } from 'botbuilder-ai' ;
5
+
6
+ export default QnAMakerBotComponent ;
Original file line number Diff line number Diff line change
1
+ {
2
+ "extends" : " ../../tsconfig.json" ,
3
+ "compilerOptions" : {
4
+ "esModuleInterop" : true ,
5
+ "outDir" : " lib" ,
6
+ "rootDir" : " src" ,
7
+ "strict" : true ,
8
+ "strictNullChecks" : true ,
9
+ "target" : " es6"
10
+ },
11
+ "include" : [
12
+ " src/**/*"
13
+ ]
14
+ }
Original file line number Diff line number Diff line change 29
29
},
30
30
"dependencies" : {
31
31
"botbuilder" : " 4.1.6" ,
32
- "botbuilder-ai" : " 4.1.6" ,
32
+ "botbuilder-ai-luis" : " 4.1.6" ,
33
+ "botbuilder-ai-qna" : " 4.1.6" ,
33
34
"botbuilder-applicationinsights" : " 4.1.6" ,
34
35
"botbuilder-azure" : " 4.1.6" ,
35
36
"botbuilder-azure-blobs" : " 4.1.6" ,
Original file line number Diff line number Diff line change @@ -6,16 +6,17 @@ import fs from 'fs';
6
6
import path from 'path' ;
7
7
import { Configuration } from './configuration' ;
8
8
9
- import { DialogsBotComponent , MemoryScope , PathResolver } from 'botbuilder-dialogs' ;
9
+ import LuisBotComponent from 'botbuilder-ai-luis' ;
10
+ import QnAMakerBotComponent from 'botbuilder-ai-qna' ;
10
11
import { AdaptiveBotComponent , LanguageGenerationBotComponent } from 'botbuilder-dialogs-adaptive' ;
11
12
import { ApplicationInsightsTelemetryClient , TelemetryInitializerMiddleware } from 'botbuilder-applicationinsights' ;
12
13
import { BlobsStorage , BlobsTranscriptStore } from 'botbuilder-azure-blobs' ;
14
+ import { ComponentDeclarativeTypes , ResourceExplorer } from 'botbuilder-dialogs-declarative' ;
13
15
import { ConfigurationResourceExporer } from './configurationResourceExplorer' ;
14
16
import { CoreBot } from './coreBot' ;
15
17
import { CoreBotAdapter } from './coreBotAdapter' ;
16
18
import { CosmosDbPartitionedStorage } from 'botbuilder-azure' ;
17
- import { ComponentDeclarativeTypes , ResourceExplorer } from 'botbuilder-dialogs-declarative' ;
18
- import { LuisBotComponent , QnAMakerBotComponent } from 'botbuilder-ai' ;
19
+ import { DialogsBotComponent , MemoryScope , PathResolver } from 'botbuilder-dialogs' ;
19
20
import { ServiceCollection } from 'botbuilder-dialogs-adaptive-runtime-core' ;
20
21
21
22
import {
You can’t perform that action at this time.
0 commit comments