From ff689479eb95d2c2b423db0a6ecb4383f7acf1df Mon Sep 17 00:00:00 2001 From: Rodrigo Rodriguez Date: Fri, 1 Mar 2019 15:38:10 -0300 Subject: [PATCH] chore(docs): Refactoring of .md. --- FEATURES.md | 8 ++++++++ ROADMAP.md | 6 ++++++ .../azuredeployer.gbapp/services/AzureDeployerService.ts | 2 ++ 3 files changed, 16 insertions(+) create mode 100644 FEATURES.md create mode 100644 ROADMAP.md diff --git a/FEATURES.md b/FEATURES.md new file mode 100644 index 000000000..a6eb62191 --- /dev/null +++ b/FEATURES.md @@ -0,0 +1,8 @@ +# General Bots Features + +| Feature | BF | GB | +|----------------------------------------------------------------------------|----|----| +| Use of conversational administration to manage bot packages (Talk to admin | - | X | +| F5 to run on VSCode | - | X | +| Isolated code on packages | - | X | +| Breaking changes protected | - | X | diff --git a/ROADMAP.md b/ROADMAP.md new file mode 100644 index 000000000..41824d4de --- /dev/null +++ b/ROADMAP.md @@ -0,0 +1,6 @@ +# Roadmap + +| Title | Priority | Release | Status | +|-------------------------------|------------------------------------------------------------------------------------------------------------|---------|--------| +| Isolation of .gbapp per .gbot | Today .gbapp loaded is shared across all bot instances and must be associated to one or more individually. | Medium | 2019Q4 | +| Python based .gbapps | Write conversational login in Python | Low | - | diff --git a/packages/azuredeployer.gbapp/services/AzureDeployerService.ts b/packages/azuredeployer.gbapp/services/AzureDeployerService.ts index 3ea78a423..6f9195f36 100644 --- a/packages/azuredeployer.gbapp/services/AzureDeployerService.ts +++ b/packages/azuredeployer.gbapp/services/AzureDeployerService.ts @@ -324,6 +324,8 @@ export class AzureDeployerService extends GBService { instance.textAnalyticsEndpoint = textAnalytics.endpoint; instance.textAnalyticsKey = keys.key1; + // TODO: Check quotes being added when NLP field is filled. + logger.info(`Deploying NLP...`); const nlp = await this.createNLP(name, `${name}-nlp`, instance.cloudLocation); keys = await this.cognitiveClient.accounts.listKeys(name, nlp.name);