ai-103 Practice Question 1990

Exam: ai-103
Domain: Implement natural language processing solutions
Topic: Process natural language text
Difficulty: medium
An organization wants to build a chatbot that can understand and respond to customer inquiries in a conversational manner. They plan to use Azure OpenAI Service for this purpose. Which Azure OpenAI Service component should they use to ensure the chatbot can understand the intent behind the customer’s messages and provide appropriate responses?

Answer Options

A
Use the Completions API to generate text based on the input prompt.
B
Use the Chat API to understand the intent behind the customer’s messages.
C
Use the Text Generation API to generate text based on a specific topic.
D
Use the Azure Cognitive Search to perform keyword searches on customer inquiries.

Correct Answer

B: Use the Chat API to understand the intent behind the customer’s messages.

Explanation

The correct answer is B because the Azure OpenAI Service's Chat API is designed for conversational interactions and can understand the intent behind the customer’s messages, providing appropriate responses. Option A is incorrect because the Completions API generates text based on the input prompt but does not understand the context or intent of the message. Option C is incorrect because the Text Generation API is not available in Azure OpenAI Service and is not suitable for understanding conversational intent. Option D is incorrect because the Azure Cognitive Search is used for searching and indexing content, not for understanding conversational intent.

Related Practice Questions