File size: 286 Bytes
634785b
581fcec
 
09ce98e
581fcec
 
 
 
 
 
 
fed5666
581fcec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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()