Courseiva

AI-102

Study mode — explanations shown

1

Implement generative AI solutions

hard

Refer to the exhibit. You are configuring an Azure OpenAI Service deployment for document summarization. The current parameters produce summaries that are often too verbose. You need to make the summaries more concise while maintaining factual accuracy. Which parameter change should you make?

Exhibit

{
  "completions": [
    {
      "prompt": "Generate a summary of the following text: ...",
      "parameters": {
        "temperature": 0.3,
        "max_tokens": 150,
        "top_p": 0.9,
        "frequency_penalty": 0.0,
        "presence_penalty": 0.0
      },
      "response": "..."
    }
  ]
}
0 of 180 answered