AI-102 Exam QuestionsBrowse all questions from this exam

AI-102 Exam - Question 176


You have an Azure AI service model named Model1 that identifies the intent of text input.

You develop a Python app named App1.

You need to configure App1 to use Model1.

Which package should you add to App1?

Show Answer
Correct Answer: BD

To configure a Python app to use an Azure AI service model for identifying the intent of text input, the appropriate package is azure-ai-language-conversations. This package is specifically designed for tasks involving natural language understanding in conversational contexts, which includes extracting intents from text input. It offers more specialized functionality for intent recognition compared to other options.

Discussion

14 comments
Sign in to comment
warrior1234Option: A
Mar 2, 2024

The correct package for working with Azure AI service for text intent identification, like Model1, is: A. azure-cognitiveservices-language-textanalytics Therefore, you should add the azure-cognitiveservices-language-textanalytics package to App1 for configuring it to use Model1. This package provides functionalities for working with the Language API in Azure Cognitive Services, which includes text analytics capabilities, such as identifying language and sentiment, and can be used for processing text input to determine intent.

9ae4fb5Option: B
Mar 18, 2024

answer is B. "Conversation App: It's used in extracting intents and entities in conversations" - https://learn.microsoft.com/ko-kr/python/api/overview/azure/ai-language-conversations-readme?view=azure-python "The (Text Analytics) API can be used to analyze unstructured text for tasks such as sentiment analysis, key phrase extraction and language detection." https://learn.microsoft.com/en-us/python/api/azure-cognitiveservices-language-textanalytics/azure.cognitiveservices.language.textanalytics.textanalyticsclient?view=azure-python-previous

anto69
Apr 4, 2024

Agree 100%

Harry300Option: B
Mar 2, 2024

Should be B. Source: https://pypi.org/project/azure-ai-language-conversations/ "Conversation App: It's used in extracting intents and entities in conversations"

6675ae6Option: B
Jun 3, 2024

Answer is B. Both the text analytics package and the conversations package satisfy the requirement for identifying intent of speech, however Text analytics is more for generic use, not specialised intent recognition. Conversations package is more developed for specialized intent recognition, the package is tailored for tasks involving natural language understanding in conversational contexts, making it more effective and efficient for intent recognition in an app designed to understand and respond to user inputs

HaraTadahisaOption: B
Jun 22, 2024

I say this answer is B.

GHill1982Option: B
Mar 10, 2024

B. azure-ai-language-conversations This package is part of the Azure AI SDK for Python and contains functionality for building applications that can understand user intent using language models.

chandiochanOption: B
Mar 28, 2024

Must be B

MurtuzaOption: B
Apr 8, 2024

B is correct

QwertySunnyOption: B
Apr 27, 2024

......................

takaimomoGcupOption: D
May 22, 2024

When identifying text input intent, it is usually aggregated to cognitiveservices. not just Microsoft, but mega cloud products and solutions have too many similar names and should be aggregated.

nanaw770Option: B
May 28, 2024

B is right answer.

reigenchimpoOption: B
Jun 12, 2024

B is answer.

mon2002Option: D
Jun 13, 2024

azure-cognitiveservices-speech.

krzkrzkraOption: B
Jul 14, 2024

Selected Answer: B