Inspite of installing utils when performing the following import
from utils import get_openai_api_key
openai_api_key = get_openai_api_key()os.environ[“OPENAI_MODEL_NAME”] = ‘gpt-3.5-turbo’
I get the following error
ImportError: cannot import name ‘get_openai_api_key’ from ‘utils’ (/usr/local/lib/python3.11/dist-packages/utils/init.py)
What am I missing in my import?