-
Notifications
You must be signed in to change notification settings - Fork 0
/
helpers.py
13 lines (10 loc) · 839 Bytes
/
helpers.py
1
2
3
4
5
6
7
8
9
10
11
12
13
# Add your utilities or helper functions to this file.
import os
from dotenv import load_dotenv, find_dotenv
# these expect to find a .env file at the directory above the lesson. # the format for that file is (without the comment) #API_KEYNAME=AStringThatIsTheLongAPIKeyFromSomeService
def load_env():
_ = load_dotenv(find_dotenv())
def get_openai_api_key():
load_env()
openai_api_key = os.getenv("OPENAI_API_KEY")
return openai_api_key