File size: 290 Bytes
372720a
 
 
 
9eaec92
372720a
 
9eaec92
 
 
1
2
3
4
5
6
7
8
9
10
11
import os
from dotenv import load_dotenv

class Settings:
    llm_provider = os.getenv("LLM_PROVIDER", "groq")  # <- This line is critical!
    supabase_url = os.getenv("SUPABASE_URL")
    supabase_key = os.getenv("SUPABASE_SERVICE_KEY")
    # ... any other settings

settings = Settings()