mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2026-03-07 06:11:21 -08:00
change hash to sha256
This commit is contained in:
parent
82725f0ac4
commit
a95f135308
9 changed files with 159 additions and 51 deletions
|
|
@ -224,7 +224,8 @@ class UpscalerItem(BaseModel):
|
|||
class SDModelItem(BaseModel):
|
||||
title: str = Field(title="Title")
|
||||
model_name: str = Field(title="Model Name")
|
||||
hash: str = Field(title="Hash")
|
||||
hash: Optional[str] = Field(title="Short hash")
|
||||
sha256: Optional[str] = Field(title="sha256 hash")
|
||||
filename: str = Field(title="Filename")
|
||||
config: str = Field(title="Config file")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue