File size: 314 Bytes
372720a
 
 
 
9eaec92
372720a
 
9eaec92
 
 
 
372720a
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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()


settings = Settings()