Skip to content
This repository has been archived by the owner on May 27, 2024. It is now read-only.

Latest commit

 

History

History
37 lines (22 loc) · 1.21 KB

README.md

File metadata and controls

37 lines (22 loc) · 1.21 KB

Comfy Model Fetcher

This project automaticaly search the model for you and redirect you to download url.

For Example,

If You want to install this model to your ComfyUI: "sd_xl_refiner_1.0.safetensors", then:

Add a prefix 'https://comfy-dl.vercel.app/' into your model filename name:

https://comfy-dl.vercel.app/sd_xl_refiner_1.0.safetensors

It will find the model file for you and redirect into

https://huggingface.co/stabilityai/stable-diffusion-xl-refiner-1.0/resolve/main/sd_xl_refiner_1.0.safetensors?download=true

And you could try install it with comfy-cli

pip install comfy-cli
comfy model download --url https://comfy-dl.vercel.app/sd_xl_refiner_1.0.safetensors
  • Note: curretly only support hugginface.co

Further with comfy-cli...

Currently comfy-cli abilities:

  1. comfy model download --url https://huggingface.co/stabilityai/stable-diffusion-xl-refiner-1.0/resolve/main/sd_xl_refiner_1.0.safetensors?download=true
  2. comfy model download --url https://comfy-dl.vercel.app/sd_xl_refiner_1.0.safetensors

And we could make things even simpler by:

  1. comfy model download --search sd_xl_refiner_1.0.safetensors
  2. comfy model get checkpoints/sd_xl_refiner_1.0.safetensors

2024-05-25 by @snomiao