mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-03 07:04:16 +00:00
19 lines
500 B
Python
19 lines
500 B
Python
![]() |
# api/config.py
|
||
|
from pydantic_settings import BaseSettings
|
||
|
|
||
|
|
||
|
class Settings(BaseSettings):
|
||
|
DATABASE_URI: str = "sqlite:///./autogen.db"
|
||
|
API_DOCS: bool = False
|
||
|
CLEANUP_INTERVAL: int = 300 # 5 minutes
|
||
|
SESSION_TIMEOUT: int = 3600 # 1 hour
|
||
|
CONFIG_DIR: str = "configs" # Default config directory relative to app_root
|
||
|
DEFAULT_USER_ID: str = "guestuser@gmail.com"
|
||
|
UPGRADE_DATABASE: bool = False
|
||
|
|
||
|
class Config:
|
||
|
env_prefix = "AUTOGENSTUDIO_"
|
||
|
|
||
|
|
||
|
settings = Settings()
|