Code QuizBeginner

Specifying the model

Find the wrong parameter name for selecting the model.

Codepython
response = client.chat.completions.create(
    models="gpt-4o-mini",
    messages=[{"role": "user", "content": "Hello"}],
)

What is the bug in specifying the model?