
Comprehensive Detailed Explanation
The requirement:
You have an Azure OpenAI resource.
You want to build an app (App1) that writes press releases.
The solution must minimize development effort.
Step 1 – Select the model deployment
Since press release generation requires natural language generation, the best choice is GPT-3.5 Turbo.
The text-embedding-ada-002 model is used for semantic search and embeddings, not text generation, so it’s not appropriate here.
Step 2 – Apply a system message template
Azure OpenAI Studio provides pre-built system message templates to speed up development.
For writing press releases, the correct template is the Marketing Writing Assistant template.
This minimizes development effort since it already configures prompt engineering for marketing copywriting.
Step 3 – Deploy the solution
Once the deployment and template are configured, you deploy the solution to a new web app so it can be used as App1.
Correct Sequence:
Create a deployment that uses the GPT-3.5 Turbo model.
Apply the Marketing Writing Assistant system message template.
Deploy the solution to a new web app.
Microsoft References
Azure OpenAI Studio – Getting Started
Azure OpenAI GPT-3.5 models
Azure OpenAI Studio system message templates