AI-102 Question 433
Select 3Your company wants to use the Azure OpenAI Service to generate product descriptions for an e-commerce platform. The descriptions should be tailored based on user-provided product details. Which steps should you take when designing the solution?
- A
Deploy an Azure OpenAI model, such as GPT-4, and fine-tune it with your own product data.
- B
Use Azure Cognitive Search to preprocess the product data before passing it to the OpenAI model.
- C
Integrate the Azure OpenAI model into your application using the REST API or SDK.
- D
Use Azure Event Grid to trigger the model whenever a new product is added to the database.
- E
Define a prompt engineering strategy to structure input for the OpenAI model.
Show answer and explanation
Correct answers: A, C, E
Explanation
To generate tailored product descriptions with Azure OpenAI Service, you need to fine-tune a model using your product data to improve its performance for your use case. Integration with REST APIs or SDKs connects the model to your application, and prompt engineering ensures that inputs are well-structured to produce the best results. While other Azure services like Event Grid or Cognitive Search are useful in specific scenarios, they are not directly relevant here.
- A. Correct.
Fine-tuning an Azure OpenAI model, such as GPT-4, allows you to tailor it to your specific dataset and domain, which is crucial for generating accurate product descriptions.
- B. Incorrect.
Azure Cognitive Search is not necessary for this scenario as its primary use is for processing and searching large datasets, not for preprocessing data for the OpenAI Service.
- C. Correct.
The Azure OpenAI Service can be integrated into applications using REST APIs or SDKs, enabling seamless communication between your application and the model.
- D. Incorrect.
Azure Event Grid is not required in this scenario as there is no explicit need for event-driven processing or triggering the model based on data changes.
- E. Correct.
Prompt engineering is critical when working with OpenAI models to ensure input is structured in a way that yields the desired output.