SimpliFi / backend /app /__init__.py
Rsr2425's picture
Fixed broken python tests
787e2fd
raw
history blame contribute delete
233 Bytes
import os
from dotenv import load_dotenv, find_dotenv
# Load environment variables from .env file in project root
load_dotenv(find_dotenv())
if os.getenv("OPENAI_API_KEY") is None:
raise ValueError("OPENAI_API_KEY is not set")