AI-102 Exam QuestionsBrowse all questions from this exam

AI-102 Exam - Question 291


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?

Show Answer
Correct Answer: CD

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.

Discussion

16 comments
Sign in to comment
ManAtWorkAtNightOption: D
May 12, 2022

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

EltoothOption: D
Jul 24, 2022

I'm going for answer D based on https://docs.microsoft.com/en-us/azure/cognitive-services/qnamaker/concepts/best-practices

SSJAOption: D
Dec 18, 2022

Correct answer is D

james2033Option: C
Aug 18, 2023

"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

ExamDevOption: D
Sep 4, 2023

James2033 is right. D (but he marked "C")

evangelistOption: D
Jan 27, 2024

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.

evangelistOption: D
Feb 10, 2024

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.

RamonKausOption: D
Jul 24, 2022

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

Tin_TinOption: D
Jun 29, 2023

should be D

propantherOption: D
Oct 29, 2023

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.

rdemontisOption: D
Nov 10, 2023

https://learn.microsoft.com/en-us/azure/ai-services/qnamaker/concepts/confidence-score

MurtuzaOption: D
Mar 24, 2024

D is correct

nanaw770Option: D
Jun 14, 2024

D is the correct answer.

HaraTadahisaOption: D
Jun 22, 2024

I say this answer is D. I assume this question is part of the lab type question.

krzkrzkraOption: D
Jul 12, 2024

Selected Answer: D

anto69Option: D
Jul 21, 2024

QnAMakerOptions.ScoreThreshold, others make no sense