testlcm / models /settings.py
michaelj's picture
Upload folder using huggingface_hub
360d274
raw
history blame
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())