Model Downloader Improvements (#650)

* use new download_path value in download api

from https://github.com/comfyanonymous/ComfyUI/pull/4621

* add in-UI refusal for ckpt files
This commit is contained in:
Alex "mcmonkey" Goodwin
2024-08-27 05:56:57 -07:00
committed by GitHub
parent 9cdefca481
commit b19cbd9111
2 changed files with 16 additions and 13 deletions

View File

@@ -77,6 +77,7 @@ const zDownloadModelStatus = z.object({
status: z.string(),
progress_percentage: z.number(),
message: z.string(),
download_path: z.string(),
already_existed: z.boolean()
})