diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-06-27 06:05:53 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-27 06:05:53 +0000 |
commit | 4147fd6b2f905f76c6bc20c3d9de2ea0842fa853 (patch) | |
tree | e7915af4d068912cd8509f1638e05460445a5eea /modules/api/models.py | |
parent | f603275d84301b5ee952683e951dd1aad72ba615 (diff) | |
parent | bedcd2f377a38ef4da58c11dbe222d32b954be2f (diff) | |
download | stable-diffusion-webui-gfx803-4147fd6b2f905f76c6bc20c3d9de2ea0842fa853.tar.gz stable-diffusion-webui-gfx803-4147fd6b2f905f76c6bc20c3d9de2ea0842fa853.tar.bz2 stable-diffusion-webui-gfx803-4147fd6b2f905f76c6bc20c3d9de2ea0842fa853.zip |
Merge branch 'dev' into 10141-gradio-user-exif
Diffstat (limited to 'modules/api/models.py')
-rw-r--r-- | modules/api/models.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/modules/api/models.py b/modules/api/models.py index 1ff2fb33..b3a745f0 100644 --- a/modules/api/models.py +++ b/modules/api/models.py @@ -241,6 +241,9 @@ class UpscalerItem(BaseModel): model_url: Optional[str] = Field(title="URL") scale: Optional[float] = Field(title="Scale") +class LatentUpscalerModeItem(BaseModel): + name: str = Field(title="Name") + class SDModelItem(BaseModel): title: str = Field(title="Title") model_name: str = Field(title="Model Name") @@ -249,6 +252,10 @@ class SDModelItem(BaseModel): filename: str = Field(title="Filename") config: Optional[str] = Field(title="Config file") +class SDVaeItem(BaseModel): + model_name: str = Field(title="Model Name") + filename: str = Field(title="Filename") + class HypernetworkItem(BaseModel): name: str = Field(title="Name") path: Optional[str] = Field(title="Path") |