Code QuizBeginner

Importing the OpenAI SDK

Spot the mistake when importing the OpenAI client class.

Codepython
# after: pip install openai
from openai import openai

client = openai(api_key="sk-...")

What is the bug in this import statement?