transcript-api / app /config /settings.py
Hamzaaly234's picture
feat/setup
21b2f8c
raw
history blame contribute delete
207 Bytes
from pydantic_settings import BaseSettings
class Settings(BaseSettings):
ALLOWED_AUDIO_FORMATS: list = [".wav", ".mp3", ".m4a"]
MAX_FILE_SIZE: int = 10 * 1024 * 1024 # 10MB
settings = Settings()