iDevBuddy
feat: Add Slack Events integration, Dockerfiles, and Hugging Face deployment config
5f138d4
raw
history blame
545 Bytes
import os
from dotenv import load_dotenv
from pydantic_settings import BaseSettings
load_dotenv()
class Settings(BaseSettings):
# Supabase
SUPABASE_URL: str
SUPABASE_SERVICE_ROLE_KEY: str
# LLM (All on NVIDIA NIM — FREE)
NVIDIA_API_KEY: str
NVIDIA_NIM_BASE_URL: str = "https://integrate.api.nvidia.com/v1"
# Service auth
PYTHON_AI_SERVICE_SECRET: str
# Config
LOG_LEVEL: str = "INFO"
class Config:
env_file = "../../../.env"
extra = "ignore"
settings = Settings()