File size: 237 Bytes
c24bfc8 |
1 2 3 4 5 6 7 8 9 |
import os
from groq import Groq
def get_groq_client():
api_key = os.environ.get("GROQ_API_KEY")
if not api_key:
raise ValueError("GROQ_API_KEY not set in environment variables.")
return Groq(api_key=api_key)
|