ai-agent / config.py
abdibrahem's picture
Add authorization to the project
4339866
raw
history blame contribute delete
217 Bytes
from pydantic_settings import BaseSettings
class Settings(BaseSettings):
SECRET_KEY: str
ALGORITHM: str
ACCESS_TOKEN_EXPIRE_MINUTES: int
class Config:
env_file = ".env"
settings = Settings()