STT-project / settings.py
risqaliyevds's picture
Application files
858fdec
raw
history blame contribute delete
203 Bytes
from pydantic import BaseSettings
class Settings(BaseSettings):
LANGUAGE: str
SUMMARIZER_MODEL: str
URL: str
API: str
class Config:
env_file = ".env"
settings = Settings()