Explore Library
Code QuizIntermediate

Wrong Message Property Key

Find why this pushed chat message is missing its text.

Codejavascript
const messages = [];

messages.push({ role: "system", message: "You are a concise assistant." });
messages.push({ role: "user", content: "Summarize photosynthesis." });

await client.chat.completions.create({ model: "gpt-4o-mini", messages });

What is the bug when building this messages array?