Skip to content
This repository was archived by the owner on Jan 15, 2025. It is now read-only.

Commit 545fd77

Browse files
committed
Fixing flag description
1 parent fe47f8b commit 545fd77

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/qnamaker/src/commands/qnamaker/create/kb.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export default class QnamakerCreateKb extends Command {
1818
static flags: flags.Input<any> = {
1919
in: flags.string({description: 'File path to the CreateKbDTO object to send in the body of the request.'}),
2020
name: flags.string({description: 'Name of the kb you want to create. This will override the name of KB that might be present in the CreateKb DTO'}),
21-
save: flags.boolean({description: 'Save the kbId in config. (Only public API)'}),
21+
save: flags.boolean({description: 'Save the kbId in config.'}),
2222
subscriptionKey: flags.string({description: 'Specifies the qnamaker Ocp-Apim-Subscription Key (found in Keys under Resource Management section for your Qna Maker cognitive service). Overrides the subscriptionkey value present in the config'}),
2323
endpoint: flags.string({description: 'Overrides public endpoint https://westus.api.cognitive.microsoft.com/qnamaker/v4.0/'}),
2424
help: flags.help({char: 'h', description: 'qnamaker:create:kb command help'}),

packages/qnamaker/src/commands/qnamaker/init.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export default class QnamakerInit extends Command {
4343
const config = Object.assign({}, {subscriptionKey, kbId, endpoint})
4444

4545
if (subscriptionKey && kbId) {
46-
cli.action.start('Updating hostname')
46+
cli.action.start('Updating config file hostname and endpoint key')
4747
await this.updateKbId(config)
4848
cli.action.stop()
4949
}

0 commit comments

Comments
 (0)