Spaces:
Sleeping
Sleeping
File size: 268 Bytes
372720a |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import os
from dotenv import load_dotenv
load_dotenv()
class Settings:
provider = os.getenv("LLM_PROVIDER", "groq")
supabase_url = os.getenv("SUPABASE_URL")
supabase_key = os.getenv("SUPABASE_SERVICE_KEY")
# Add other settings
settings = Settings()
|