picpilot-server / config_settings.py
VikramSingh178's picture
chore: Update S3ManagerService to use settings from config_settings.py
fed5666
raw
history blame
No virus
250 Bytes
from pydantic import BaseSettings
class Settings(BaseSettings):
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()