Code QuizBeginner

Reading token usage

Find the wrong attribute name for total tokens used.

Codepython
response = client.chat.completions.create(
    model="gpt-4o-mini",
    messages=[{"role": "user", "content": "Hi"}],
)
print(response.usage.tokens)

What is the bug when reading token usage?