-
Notifications
You must be signed in to change notification settings - Fork 6
/
settings.json
25 lines (25 loc) · 1.18 KB
/
settings.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"settings" : {
"Multistage_Pipeline" : true,
"Verbose_Output" : false,
"Result_Size" : 10,
"Pipeline_Output_Size" : 100,
"botConfig" : [ {
"displayName" : "Confidence Threshold",
"name" : "system.intentConfidenceThreshold",
"description" : "The minimum confidence score required to match a skill's intent with user input. If there is no match, the transition action is set to 'unresolvedIntent'.(Minimum value 0, maximum value 1)",
"type" : "float",
"value" : 0.5
}, {
"displayName" : "Confidence Win Margin",
"name" : "system.intentConfidenceWinMargin",
"description" : "Only the top intent that exceeds the confidence threshold is picked if it is the highest ranking intent which exceeds the confidence threshold. If other intents that exceed the confidence threshold have scores that are within that of the top intent by less than the win margin, these intents are also presented to the user. (Minimum value 0, maximum value 1)",
"type" : "float",
"value" : 0
} ]
},
"conversationHistoryEnabled" : false,
"insightsEnabled" : true,
"intentResultHistoryEnabled" : false,
"qnAResultHistoryEnabled" : false
}