@@ -71,10 +71,12 @@ USAGE
7171OPTIONS
7272 -h, --help show CLI help
7373 --accountName=accountName (required) Account name
74- --appId=appId (required) LUIS application Id (defaults to config:LUIS:appId)
7574
76- --armToken=armToken (required) The bearer authorization header to use; containing the user`s
77- ARM token used to validate azure accounts information
75+ --appId=appId (required) LUIS application Id (defaults to config:set:luis --appId
76+ {APPLICATION_ID})
77+
78+ --armToken=armToken (required) User`s ARM token used to validate azure accounts information
79+ (default: config:set:luis --armToken {ARM_TOKEN})
7880
7981 --azureSubscriptionId=azureSubscriptionId (required) Azure Subscription Id
8082
@@ -85,7 +87,7 @@ OPTIONS
8587 --resourceGroup=resourceGroup (required) Resource Group
8688
8789 --subscriptionKey=subscriptionKey (required) LUIS cognitive services subscription key (default:
88- config:LUIS: subscriptionKey)
90+ config:set:luis -- subscriptionKey {SUBSCRIPTION_KEY} )
8991```
9092
9193_ See code: [ src/commands/luis/application/assignazureaccount.ts] ( https://github.com/microsoft/botframework-cli/tree/master/packages/luis/src/commands/luis/application/assignazureaccount.ts ) _
@@ -422,14 +424,13 @@ OPTIONS
422424
423425 --config=config Path to config file of mapping rules
424426
425- --intentName=intentName [default: _Interruption] Interruption intent name
426-
427- --log Writes out log messages to console
427+ --[no-]inner-dialog Only do inner dialog cross train
428428
429- --inner-dialog Only performs the inner dialog cross train, defalt is true, to set it as false, use --no-inner-dialog
429+ --intentName=intentName [default: _Interruption] Interruption intent name
430430
431- --intra-dialog Only performs the intra dialog cross train, defalt is true, to set it as false, use --no-intra-dialog
431+ --[no-] intra-dialog Only do intra dialog cross train
432432
433+ --log Writes out log messages to console
433434```
434435
435436_ See code: [ src/commands/luis/cross-train.ts] ( https://github.com/microsoft/botframework-cli/tree/master/packages/luis/src/commands/luis/cross-train.ts ) _
@@ -596,16 +597,29 @@ USAGE
596597 $ bf luis:translate
597598
598599OPTIONS
599- -f, --force If --out flag is provided with the path to an existing file, overwrites that file
600- -h, --help luis:translate help
601- -i, --in=in Source .lu file(s) or LUIS application JSON model
602- -o, --out=out Output folder name. If not specified stdout will be used as output
603- -r, --recurse Indicates if sub-folders need to be considered to file .lu file(s)
604- --srclang=srclang Source lang code. Auto detect if missing.
605- --tgtlang=tgtlang (required) Comma separated list of target languages.
606- --translate_comments When set, machine translate comments found in .lu file
607- --translate_link_text When set, machine translate link description in .lu file
608- --translatekey=translatekey (required) Machine translation endpoint key.
600+ -f, --force If --out flag is provided with the path to an existing file, overwrites
601+ that file
602+
603+ -h, --help luis:translate help
604+
605+ -i, --in=in Source .lu file(s) or LUIS application JSON model
606+
607+ -o, --out=out Output folder name. If not specified stdout will be used as output
608+
609+ -r, --recurse Indicates if sub-folders need to be considered to file .lu file(s)
610+
611+ --srclang=srclang Source lang code. Auto detect if missing.
612+
613+ --subscription_region=subscription_region Required request header if using a Cognitive Services Resource. Optional if
614+ using a Translator Resource.
615+
616+ --tgtlang=tgtlang (required) Comma separated list of target languages.
617+
618+ --translate_comments When set, machine translate comments found in .lu file
619+
620+ --translate_link_text When set, machine translate link description in .lu file
621+
622+ --translatekey=translatekey (required) Machine translation endpoint key.
609623```
610624
611625_ See code: [ src/commands/luis/translate.ts] ( https://github.com/microsoft/botframework-cli/tree/master/packages/luis/src/commands/luis/translate.ts ) _
0 commit comments