allow api_key assignment to occur after imports

This commit is contained in:
Ajay Raj 2023-03-20 10:49:20 -07:00
commit d1118d375e
9 changed files with 43 additions and 60 deletions

View file

@ -4,4 +4,4 @@ from dotenv import load_dotenv
load_dotenv()
api_key = os.getenv("VOCODE_API_KEY")
BASE_URL = os.getenv("VOCODE_BASE_URL", "api.vocode.dev")
base_url = os.getenv("VOCODE_BASE_URL", "api.vocode.dev")