fastsdcpu / models /settings.py
rupeshs's picture
App update
8c39361
raw history blame
No virus
339 Bytes
from pydantic import BaseModel
from backend.models.lcmdiffusion_setting import LCMDiffusionSetting, LCMLora
from paths import FastStableDiffusionPaths
class Settings(BaseModel):
results_path: str = FastStableDiffusionPaths().get_results_path()
lcm_diffusion_setting: LCMDiffusionSetting = LCMDiffusionSetting(lcm_lora=LCMLora())