Do I need any environment variables set to execute some code, call openai's api, and return a response?
Advertisements I was going through a course in OpenAI’s API using an in-browser jupyter notebook page but wanted to copy some example code from there into a local IDE. I installed Python and the jupyter extention in VS Code and the OpenAI library. My code is below: import openai import os # from dotenv import… Read More Do I need any environment variables set to execute some code, call openai's api, and return a response?