from __future__ import annotations from pydantic_settings import BaseSettings class Settings(BaseSettings): """Design Agent 설정.""" anthropic_api_key: str = "" kei_api_url: str = "http://localhost:8000" log_level: str = "DEBUG" # 슬라이드 크기 slide_width: int = 1280 slide_height: int = 720 model_config = {"env_file": ".env", "env_file_encoding": "utf-8"} settings = Settings()