IIntentDialogOptions interface

Options used to configure an IntentDialog.

Extends

Properties

intentThreshold

(optional) Minimum score needed to trigger the recognition of an intent. The default value is 0.1.

processLimit

(Optional) Maximum number of recognizers to evaluate at one time when recognizerOrder is parallel.

recognizeMode

(Optional) Controls the dialogs processing of incoming user utterances. The default is RecognizeMode.onBeginIfRoot. The default prior to v3.2 was RecognizeMode.onBegin.

recognizeOrder

(Optional) The order in which the configured recognizers should be evaluated. The default order is parallel.

recognizers

(Optional) list of intent recognizers to run the users utterance through.

stopIfExactMatch

(Optional) If true the recognition will stop when a score of 1.0 is encountered. The default value is true.

Property Details

intentThreshold

(optional) Minimum score needed to trigger the recognition of an intent. The default value is 0.1.

intentThreshold?: number

Property Value

number

processLimit

(Optional) Maximum number of recognizers to evaluate at one time when recognizerOrder is parallel.

processLimit?: number

Property Value

number

recognizeMode

(Optional) Controls the dialogs processing of incoming user utterances. The default is RecognizeMode.onBeginIfRoot. The default prior to v3.2 was RecognizeMode.onBegin.

recognizeMode?: RecognizeMode

Property Value

recognizeOrder

(Optional) The order in which the configured recognizers should be evaluated. The default order is parallel.

recognizeOrder?: RecognizeOrder

Property Value

recognizers

(Optional) list of intent recognizers to run the users utterance through.

recognizers?: IIntentRecognizer[]

Property Value

stopIfExactMatch

(Optional) If true the recognition will stop when a score of 1.0 is encountered. The default value is true.

stopIfExactMatch?: boolean

Property Value

boolean