AI-Blog-Writer / config.py
shreeramy
Add application file
6a7fdb0
raw
history blame contribute delete
219 Bytes
import os
# Securely fetch API Key from environment variable
GROQ_API_KEY = os.getenv("GROQ_API_KEY")
if not GROQ_API_KEY:
raise ValueError("⚠️ GROQ_API_KEY is missing! Set it in your environment variables.")