coach-gph / src /config.py
jntak's picture
Upload folder using huggingface_hub
40050e3 verified
Raw
History Blame Contribute Delete
313 Bytes
import os
from dotenv import load_dotenv, find_dotenv
load_dotenv(find_dotenv(), override=True)
# Add your Gemini API key here
# GEMINI_API_KEY = ??
GEMINI_API_KEY = os.getenv("GEMINI_API_KEY")
if GEMINI_API_KEY is None:
raise ValueError("Please set the GEMINI_API_KEY environment variable")