Code QuizBeginner

Temperature Out of Range

Identify the invalid temperature value used for a deterministic task.

Codejavascript
// We want a consistent, deterministic extraction result
const result = await client.chat.completions.create({
  model: "gpt-4o",
  messages,
  temperature: 2.5
});

What is the bug in this configuration?