You are developing the chatbot.
You create the following components:
✑ A QnA Maker resource
✑ A chatbot by using the Azure Bot Framework SDK
You need to integrate the components to meet the chatbot requirements.
Which property should you use?
You are developing the chatbot.
You create the following components:
✑ A QnA Maker resource
✑ A chatbot by using the Azure Bot Framework SDK
You need to integrate the components to meet the chatbot requirements.
Which property should you use?
To integrate the QnA Maker resource with the chatbot effectively, especially to address the requirement that AI solution responses must have a confidence score of at least 70%, you should use the 'QnAMakerOptions.ScoreThreshold' property. This property allows you to set a minimum confidence score for answers, ensuring that the chatbot only considers responses that meet this threshold. If an answer's confidence score is below this threshold, the chatbot can trigger alternative actions, such as providing different response options or escalating to a human agent.
Answer should be D. QnAMakerOptions.ScoreThreshold Technical Requirements says "AI solution responses must have a confidence score that is equal to or greater than 70 percent" and "When the response confidence score is low, ensure that the chatbot can provide other response options to the customers" https://docs.microsoft.com/en-us/azure/cognitive-services/qnamaker/concepts/confidence-score#set-threshold
D. QnAMakerOptions.ScoreThreshold This property allows you to set a minimum confidence score for answers. If an answer's confidence score is below this threshold, you can trigger alternative actions, such as providing different response options or escalating to a human agent, directly addressing the specified chatbot requirements.
QnAMakerOptions.ScoreThreshold is the property that controls the minimum confidence score required for a QnA Maker response to be considered valid. This directly addresses the requirement that AI responses must have a confidence score of at least 70%. By setting QnAMakerOptions.ScoreThreshold to 0.7 (or 70%), you ensure that the chatbot only provides answers from QnA Maker that have a high level of confidence, meeting the specified requirement.
James2033 is right. D (but he marked "C")
"AI solution responses must have a confidence score that is equal to or greater than 70 percent." --> So choose "D. QnAMakerOptions.ScoreThreshold" . See https://learn.microsoft.com/en-us/dotnet/api/microsoft.bot.builder.ai.qna.qnamakeroptions.scorethreshold?view=botbuilder-dotnet-stable
Correct answer is D
I'm going for answer D based on https://docs.microsoft.com/en-us/azure/cognitive-services/qnamaker/concepts/best-practices
QnAMakerOptions.ScoreThreshold, others make no sense
Selected Answer: D
I say this answer is D. I assume this question is part of the lab type question.
D is the correct answer.
D is correct
https://learn.microsoft.com/en-us/azure/ai-services/qnamaker/concepts/confidence-score
Complete chatbot constraints from Case Study: Contoso identifies the following requirements for the chatbot: * Provide customers with answers to the FAQs. * Ensure that the customers can chat to a customer service agent. * Ensure that the members of a group named Management-Accountants can approve the FAQs. * Ensure that the members of a group named Consultant-Accountants can create and amend the FAQs. * Ensure that the members of a group named the Agent-CustomerServices can browse the FAQs. * Ensure that access to the customer service agents is managed by using Omnichannel for Customer Service. * When the response confidence score is low. ensure that the chatbot can provide other response options to the customers.
should be D
https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=&cad=rja&uact=8&ved=2ahUKEwilta3-tZD5AhXpGFkFHWGzAMAQFnoECAoQAw&url=https%3A%2F Choosing Ranker type " By default, QnA Maker searches through questions and answers. If you want to search through questions only, to generate an answer, use the RankerType=QuestionOnly in the POST body of the GenerateAnswer request. " from %2Fdocs.microsoft.com%2Fen-us%2Fazure%2Fcognitive-services%2Fqnamaker%2Fconcepts%2Fbest-practices&usg=AOvVaw3agfuSigl7RLnYFlhA-vb3 I think it is D because "Gets or sets the minimum score threshold, used to filter returned results." https://docs.microsoft.com/en-us/dotnet/api/microsoft.bot.builder.ai.qna.qnamakeroptions.scorethreshold?view=botbuilder-dotnet-stable