Hi, I am using the ask for slot in a bot flow.
I want to confirm the slot selection if the confidence level is below a certain point.
I know that the ask for slot has a verification section and it accepts: always or never
I can get creative and accomplish the behavior I want by using an expression like:
Session.LastCollectionConfidence < 0.4 ? "always" : "never"
But I want to know if the ask for slot can make use of the confidence thresholds available in the user input section to accomplish this same task. I tried playing around with the confidence thresholds but they had no bearing on the ask for slots verification/confirmation mode.
Am I missing anything or does the user input -> confidence thresholds not have anything to do with confirmation for ask for slot?