picpilot-server / config_settings.py
VikramSingh178's picture
chore: Add LOGFIRE_TOKEN to config_settings.py
09ce98e
raw
history blame
No virus
286 Bytes
from pydantic_settings import BaseSettings
class Settings(BaseSettings):
LOGFIRE_TOKEN:str = ''
AWS_ACCESS_KEY_ID: str = ''
AWS_SECRET_ACCESS_KEY: str = ''
AWS_REGION: str = "ap-south-1"
AWS_BUCKET_NAME: str="diffusion-model-bucket"
settings = Settings()