This repository was archived by the owner on Jan 15, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 10 files changed +13
-13
lines changed
Expand file tree Collapse file tree 10 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ Tool for parsing chat files and outputting replayable activities
1414
1515## ` bf chatdown `
1616
17- Converts chat dialog files in <filename >.chat format into transcript file . Writes corresponding <filename >.transcript for each .chat file
17+ Converts chat dialog files in <filename >.chat format into transcript files . Writes corresponding <filename >.transcript for each .chat file.
1818
1919```
2020USAGE
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ const intercept = require('intercept-stdout')
1313const path = require ( 'path' )
1414
1515export default class ChatdownConvert extends Command {
16- static description = 'Converts chat dialog files in <filename>.chat format into transcript file . Writes corresponding <filename>.transcript for each .chat file'
16+ static description = 'Converts chat dialog files in <filename>.chat format into transcript files . Writes corresponding <filename>.transcript for each .chat file. '
1717
1818 static examples = [ `
1919 $ bf chatdown
Original file line number Diff line number Diff line change 1717
1818## ` bf config `
1919
20- The config plugin allows users to configure various settings within the cli.
20+ Allows users to configure various settings within the cli.
2121
2222```
2323USAGE
Original file line number Diff line number Diff line change 66import { Command , flags } from '@oclif/command'
77
88export default class ConfigIndex extends Command {
9- static description = 'The config plugin allows users to configure various settings within the cli.'
9+ static description = 'Configure various settings within the cli.'
1010
1111 static flags = {
1212 help : flags . help ( { char : 'h' } ) ,
Original file line number Diff line number Diff line change 2929
3030## ` bf luis `
3131
32- Convert, translate luis/lu files or generate source code
32+ Converts, translates luis/lu files or generates source code.
3333
3434```
3535USAGE
3636 $ bf luis
3737
3838OPTIONS
39- -h, --help Display Luis available commnads
39+ -h, --help Display Luis available commands
4040```
4141
4242_ See code: [ src/commands/luis/index.ts] ( https://github.com/microsoft/botframework-cli/tree/master/packages/lu/src/commands/luis/index.ts ) _
@@ -127,7 +127,7 @@ _See code: [src/commands/luis/translate.ts](https://github.com/microsoft/botfram
127127
128128## ` bf qnamaker:convert `
129129
130- Convert .lu file(s) to a QnA application JSON model or vice versa
130+ Converts .lu file(s) to QnA application JSON models or vice versa.
131131
132132```
133133USAGE
Original file line number Diff line number Diff line change 66import { Command , flags } from '@microsoft/bf-cli-command'
77
88export default class LuisIndex extends Command {
9- static description = 'Convert, translate luis/lu files or generate source code'
9+ static description = 'Converts, translates luis/lu files or generates source code. '
1010
1111 static flags = {
12- help : flags . help ( { char : 'h' , description : 'Display Luis available commnads ' } ) ,
12+ help : flags . help ( { char : 'h' , description : 'Display Luis available commands ' } ) ,
1313 }
1414
1515 async run ( ) {
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ const qnaConverter = require('./../../parser/converters/qnajsontoqnaconverter')
1212const fileExtEnum = require ( './../../parser/lufile/helpers' ) . FileExtTypeEnum
1313
1414export default class QnamakerConvert extends Command {
15- static description = 'Convert .lu file(s) to a QnA application JSON model or vice versa'
15+ static description = 'Converts .lu file(s) to QnA application JSON models or vice versa. '
1616
1717 static flags : flags . Input < any > = {
1818 in : flags . string ( { char : 'i' , description : 'Source .qna file(s) or QnA KB JSON file' } ) ,
Original file line number Diff line number Diff line change 4242 $ bf qnamaker
4343
4444OPTIONS
45- -h, --help Display QnA Maker CLI available commnads
45+ -h, --help Display QnA Maker CLI available commands
4646```
4747
4848_ See code: [ src/commands/qnamaker/index.ts] ( https://github.com/microsoft/botframework-cli/tree/master/packages/qnamaker/src/commands/qnamaker/index.ts ) _
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ export default class QnamakerIndex extends Command {
99 static description = 'QnA Maker'
1010
1111 static flags : flags . Input < any > = {
12- help : flags . help ( { char : 'h' , description : 'Display QnA Maker CLI available commnads ' } ) ,
12+ help : flags . help ( { char : 'h' , description : 'Display QnA Maker CLI available commands ' } ) ,
1313 }
1414
1515 async run ( ) {
Original file line number Diff line number Diff line change 11# ChatDown Dev Spec One-Pager
22
33## Summary
4- Converts chat dialog files in * .chat* format into transcript file . Writes corresponding * .transcript* for each .chat file.
4+ Converts chat dialog files in * .chat* format into transcript files . Writes corresponding * .transcript* for each .chat file.
55
66## Requirements
77### Prerequisites
You can’t perform that action at this time.
0 commit comments