michaelj's picture
Upload folder using huggingface_hub
e23d4ed
raw
history blame contribute delete
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())