Instructions to use laichaoyi/MixupModels with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use laichaoyi/MixupModels with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="laichaoyi/MixupModels", filename="text_encoders/anima/Qwen3-0.6B-Base.Q8.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use laichaoyi/MixupModels with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf laichaoyi/MixupModels:Q4_K_M # Run inference directly in the terminal: llama cli -hf laichaoyi/MixupModels:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf laichaoyi/MixupModels:Q4_K_M # Run inference directly in the terminal: llama cli -hf laichaoyi/MixupModels:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf laichaoyi/MixupModels:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf laichaoyi/MixupModels:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf laichaoyi/MixupModels:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf laichaoyi/MixupModels:Q4_K_M
Use Docker
docker model run hf.co/laichaoyi/MixupModels:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use laichaoyi/MixupModels with Ollama:
ollama run hf.co/laichaoyi/MixupModels:Q4_K_M
- Unsloth Studio
How to use laichaoyi/MixupModels with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for laichaoyi/MixupModels to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for laichaoyi/MixupModels to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for laichaoyi/MixupModels to start chatting
- Pi
How to use laichaoyi/MixupModels with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf laichaoyi/MixupModels:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "laichaoyi/MixupModels:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use laichaoyi/MixupModels with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf laichaoyi/MixupModels:Q4_K_M
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default laichaoyi/MixupModels:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use laichaoyi/MixupModels with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf laichaoyi/MixupModels:Q4_K_M
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "laichaoyi/MixupModels:Q4_K_M" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- Docker Model Runner
How to use laichaoyi/MixupModels with Docker Model Runner:
docker model run hf.co/laichaoyi/MixupModels:Q4_K_M
- Lemonade
How to use laichaoyi/MixupModels with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull laichaoyi/MixupModels:Q4_K_M
Run and chat with the model
lemonade run user.MixupModels-Q4_K_M
List all available models
lemonade list
Upload models.json
Browse files- models.json +236 -25
models.json
CHANGED
|
@@ -1,4 +1,53 @@
|
|
| 1 |
-
[
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
"model name": "ideogram4_bf16.safetensors",
|
| 3 |
"type": "base model",
|
| 4 |
"base": "ideogram4",
|
|
@@ -43,19 +92,17 @@
|
|
| 43 |
"base": "anima",
|
| 44 |
"thumbnail": "https://i.ibb.co/0RWrK3sC/anima.png",
|
| 45 |
"url": "https://huggingface.co/circlestone-labs/Anima/resolve/main/split_files/diffusion_models/anima-preview3-base.safetensors",
|
| 46 |
-
|
| 47 |
"text_encoder": "qwen_3_06b_base.safetensors",
|
| 48 |
"text_encoder_url": "https://huggingface.co/circlestone-labs/Anima/resolve/main/split_files/text_encoders/qwen_3_06b_base.safetensors",
|
| 49 |
"vae": "qwen_image_vae.safetensors",
|
| 50 |
"vae_url": "https://huggingface.co/circlestone-labs/Anima/resolve/main/split_files/vae/qwen_image_vae.safetensors"
|
| 51 |
},
|
| 52 |
-
|
| 53 |
"model name": "anima-preview2_q8.gguf",
|
| 54 |
"type": "base model",
|
| 55 |
"base": "anima",
|
| 56 |
"thumbnail": "https://i.ibb.co/0RWrK3sC/anima.png",
|
| 57 |
"url": "https://huggingface.co/JusteLeo/Anima2-GGUF/resolve/main/anima-preview2_q8_0.gguf",
|
| 58 |
-
|
| 59 |
"text_encoder": "Qwen3-0.6B-Base.Q8.gguf",
|
| 60 |
"text_encoder_url": "https://huggingface.co/mradermacher/Qwen3-0.6B-Base-GGUF/resolve/main/Qwen3-0.6B-Base.Q8_0.gguf",
|
| 61 |
"vae": "qwen_image_vae.safetensors",
|
|
@@ -67,7 +114,6 @@
|
|
| 67 |
"base": "anima",
|
| 68 |
"thumbnail": "https://i.ibb.co/0RWrK3sC/anima.png",
|
| 69 |
"url": "https://huggingface.co/laichaoyi/MixupModels/resolve/main/base_models/anima/amn_photanima_v21Turbo.safetensors",
|
| 70 |
-
|
| 71 |
"text_encoder": "Qwen3-0.6B-Base.Q8.gguf",
|
| 72 |
"text_encoder_url": "https://huggingface.co/mradermacher/Qwen3-0.6B-Base-GGUF/resolve/main/Qwen3-0.6B-Base.Q8_0.gguf",
|
| 73 |
"vae": "qwen_image_vae.safetensors",
|
|
@@ -79,7 +125,6 @@
|
|
| 79 |
"base": "anima",
|
| 80 |
"thumbnail": "https://i.ibb.co/0RWrK3sC/anima.png",
|
| 81 |
"url": "https://huggingface.co/laichaoyi/MixupModels/resolve/main/base_models/anima/anm_base_photanima_v21.safetensors",
|
| 82 |
-
|
| 83 |
"text_encoder": "Qwen3-0.6B-Base.Q8.gguf",
|
| 84 |
"text_encoder_url": "https://huggingface.co/mradermacher/Qwen3-0.6B-Base-GGUF/resolve/main/Qwen3-0.6B-Base.Q8_0.gguf",
|
| 85 |
"vae": "qwen_image_vae.safetensors",
|
|
@@ -107,7 +152,7 @@
|
|
| 107 |
"vae": "flux2-vae.safetensors",
|
| 108 |
"vae_url": "https://huggingface.co/laichaoyi/MixupModels/resolve/main/vae/flux2-vae.safetensors"
|
| 109 |
},
|
| 110 |
-
|
| 111 |
"model name": "flux-2-klein-base-9b.safetensors",
|
| 112 |
"type": "base model",
|
| 113 |
"base": "flux",
|
|
@@ -118,7 +163,7 @@
|
|
| 118 |
"vae": "flux2-vae.safetensors",
|
| 119 |
"vae_url": "https://huggingface.co/laichaoyi/MixupModels/resolve/main/vae/flux2-vae.safetensors"
|
| 120 |
},
|
| 121 |
-
|
| 122 |
"model name": "flux-2-klein-base-9b-Q8.gguf",
|
| 123 |
"type": "base model",
|
| 124 |
"base": "flux",
|
|
@@ -129,7 +174,7 @@
|
|
| 129 |
"vae": "flux2-vae.safetensors",
|
| 130 |
"vae_url": "https://huggingface.co/laichaoyi/MixupModels/resolve/main/vae/flux2-vae.safetensors"
|
| 131 |
},
|
| 132 |
-
|
| 133 |
"model name": "flux-2-klein-9b.safetensors",
|
| 134 |
"type": "base model",
|
| 135 |
"base": "flux",
|
|
@@ -140,7 +185,7 @@
|
|
| 140 |
"vae": "flux2-vae.safetensors",
|
| 141 |
"vae_url": "https://huggingface.co/laichaoyi/MixupModels/resolve/main/vae/flux2-vae.safetensors"
|
| 142 |
},
|
| 143 |
-
|
| 144 |
"model name": "flux-2-klein-9b-Q8.gguf",
|
| 145 |
"type": "base model",
|
| 146 |
"base": "flux",
|
|
@@ -195,7 +240,6 @@
|
|
| 195 |
"vae": "ae.safetensors",
|
| 196 |
"vae_url": "https://huggingface.co/black-forest-labs/FLUX.1-schnell/resolve/main/ae.safetensors"
|
| 197 |
},
|
| 198 |
-
|
| 199 |
{
|
| 200 |
"model name": "z_image_turbo-Q8.gguf",
|
| 201 |
"type": "base model",
|
|
@@ -207,15 +251,14 @@
|
|
| 207 |
"vae": "ae.safetensors",
|
| 208 |
"vae_url": "https://huggingface.co/black-forest-labs/FLUX.1-schnell/resolve/main/ae.safetensors"
|
| 209 |
},
|
| 210 |
-
|
| 211 |
-
{
|
| 212 |
"model name": "Moody_Distillation_ZIT",
|
| 213 |
"type": "LoRA",
|
| 214 |
"base": "zimage",
|
| 215 |
"thumbnail": "https://i.ibb.co/LdRN9sDC/Moody-Distillation-ZIT.png",
|
| 216 |
"url": "https://huggingface.co/Andyhere/Z-images_models/resolve/main/Moody_Distillation_ZIT.zip"
|
| 217 |
},
|
| 218 |
-
|
| 219 |
"model name": "headswap",
|
| 220 |
"type": "LoRA",
|
| 221 |
"base": "flux",
|
|
@@ -226,25 +269,24 @@
|
|
| 226 |
"model name": "Flux2-Klein-Relight-LoRA_v2",
|
| 227 |
"type": "LoRA",
|
| 228 |
"base": "flux",
|
| 229 |
-
|
| 230 |
"thumbnail": "https://i.ibb.co/XxTW2Y5F/Flux2-Klein-Relight-Lo-RA-v2.jpg",
|
| 231 |
"url": "https://huggingface.co/Andyhere/Z-images_models/resolve/main/Flux2-Klein-Relight-LoRA_v2.zip"
|
| 232 |
},
|
| 233 |
-
|
| 234 |
"model name": "image_restore",
|
| 235 |
"type": "LoRA",
|
| 236 |
"base": "flux",
|
| 237 |
"thumbnail": "https://i.ibb.co/xqxSxPy3/screenimg.jpg",
|
| 238 |
"url": "https://huggingface.co/Andyhere/Z-images_models/resolve/main/image_restore.zip"
|
| 239 |
},
|
| 240 |
-
|
| 241 |
"model name": "uncrop_F2K9B",
|
| 242 |
"type": "LoRA",
|
| 243 |
"base": "flux",
|
| 244 |
"thumbnail": "https://i.ibb.co/KzrQ0xpc/uncrop-F2-K9-B.jpg",
|
| 245 |
"url": "https://huggingface.co/Andyhere/Z-images_models/resolve/main/uncrop_F2K9B.zip"
|
| 246 |
},
|
| 247 |
-
|
| 248 |
"model name": "Nano-Alcohol-Bright",
|
| 249 |
"type": "LoRA",
|
| 250 |
"base": "flux",
|
|
@@ -354,11 +396,180 @@
|
|
| 354 |
"type": "Others",
|
| 355 |
"thumbnail": "https://i.ibb.co/msQPWSQ/sam3.jpg",
|
| 356 |
"url": "https://huggingface.co/Andyhere/Z-images_models/resolve/main/SAM3.zip"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 357 |
}
|
| 358 |
-
|
| 359 |
-
|
| 360 |
-
|
| 361 |
-
]
|
| 362 |
-
|
| 363 |
-
|
| 364 |
-
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"model name": "Krea-2-Base-Q8_0.gguf",
|
| 4 |
+
"type": "base model",
|
| 5 |
+
"base": "krea2",
|
| 6 |
+
"thumbnail": "https://i.ibb.co/TnhhFDM/g.png",
|
| 7 |
+
"url": "https://huggingface.co/realrebelai/KREA-2_GGUFs/resolve/main/BASE/Krea-2-Base-Q8_0.gguf",
|
| 8 |
+
|
| 9 |
+
"text_encoder": "qwen3vl_4b_bf16.safetensors",
|
| 10 |
+
"text_encoder_url": "https://huggingface.co/Comfy-Org/Krea-2/resolve/main/text_encoders/qwen3vl_4b_bf16.safetensors",
|
| 11 |
+
"vae": "wan_2.1_vae.safetensors",
|
| 12 |
+
"vae_url": "https://huggingface.co/Comfy-Org/Wan_2.1_ComfyUI_repackaged/resolve/main/split_files/vae/wan_2.1_vae.safetensors"
|
| 13 |
+
},
|
| 14 |
+
{
|
| 15 |
+
"model name": "Krea-2-Turbo-Q8_0.gguf",
|
| 16 |
+
"type": "base model",
|
| 17 |
+
"base": "krea2",
|
| 18 |
+
"thumbnail": "https://i.ibb.co/TnhhFDM/g.png",
|
| 19 |
+
"url": "https://huggingface.co/realrebelai/KREA-2_GGUFs/resolve/main/TURBO/Krea-2-Turbo-Q8_0.gguf",
|
| 20 |
+
|
| 21 |
+
"text_encoder": "Qwen3VL-4B-Instruct-Q8_0.gguf",
|
| 22 |
+
"text_encoder_url": "https://huggingface.co/Qwen/Qwen3-VL-4B-Instruct-GGUF/resolve/main/Qwen3VL-4B-Instruct-Q8_0.gguf",
|
| 23 |
+
"vae": "wan_2.1_vae.safetensors",
|
| 24 |
+
"vae_url": "https://huggingface.co/Comfy-Org/Wan_2.1_ComfyUI_repackaged/resolve/main/split_files/vae/wan_2.1_vae.safetensors"
|
| 25 |
+
},
|
| 26 |
+
{
|
| 27 |
+
"model name": "boogu_image_base_bf16.safetensors",
|
| 28 |
+
"type": "base model",
|
| 29 |
+
"base": "boogu",
|
| 30 |
+
"thumbnail": "https://i.ibb.co/BHg1qBnr/rosjarpz7x9h1.png",
|
| 31 |
+
"url": "https://huggingface.co/Comfy-Org/Boogu-Image/resolve/main/diffusion_models/boogu_image_base_bf16.safetensors",
|
| 32 |
+
|
| 33 |
+
"text_encoder": "Qwen3-VL-8B-Instruct-Q8_0.gguf",
|
| 34 |
+
"text_encoder_url": "https://huggingface.co/unsloth/Qwen3-VL-8B-Instruct-GGUF/resolve/main/Qwen3-VL-8B-Instruct-Q8_0.gguf",
|
| 35 |
+
"vae": "ae.safetensors",
|
| 36 |
+
"vae_url": "https://huggingface.co/black-forest-labs/FLUX.1-dev/resolve/main/ae.safetensors"
|
| 37 |
+
},
|
| 38 |
+
{
|
| 39 |
+
"model name": "boogu_image_turbo_bf16.safetensors",
|
| 40 |
+
"type": "base model",
|
| 41 |
+
"base": "boogu",
|
| 42 |
+
"thumbnail": "https://i.ibb.co/BHg1qBnr/rosjarpz7x9h1.png",
|
| 43 |
+
"url": "https://huggingface.co/Comfy-Org/Boogu-Image/resolve/main/diffusion_models/boogu_image_turbo_bf16.safetensors",
|
| 44 |
+
|
| 45 |
+
"text_encoder": "Qwen3-VL-8B-Instruct-Q8_0.gguf",
|
| 46 |
+
"text_encoder_url": "https://huggingface.co/unsloth/Qwen3-VL-8B-Instruct-GGUF/resolve/main/Qwen3-VL-8B-Instruct-Q8_0.gguf",
|
| 47 |
+
"vae": "ae.safetensors",
|
| 48 |
+
"vae_url": "https://huggingface.co/black-forest-labs/FLUX.1-dev/resolve/main/ae.safetensors"
|
| 49 |
+
},
|
| 50 |
+
{
|
| 51 |
"model name": "ideogram4_bf16.safetensors",
|
| 52 |
"type": "base model",
|
| 53 |
"base": "ideogram4",
|
|
|
|
| 92 |
"base": "anima",
|
| 93 |
"thumbnail": "https://i.ibb.co/0RWrK3sC/anima.png",
|
| 94 |
"url": "https://huggingface.co/circlestone-labs/Anima/resolve/main/split_files/diffusion_models/anima-preview3-base.safetensors",
|
|
|
|
| 95 |
"text_encoder": "qwen_3_06b_base.safetensors",
|
| 96 |
"text_encoder_url": "https://huggingface.co/circlestone-labs/Anima/resolve/main/split_files/text_encoders/qwen_3_06b_base.safetensors",
|
| 97 |
"vae": "qwen_image_vae.safetensors",
|
| 98 |
"vae_url": "https://huggingface.co/circlestone-labs/Anima/resolve/main/split_files/vae/qwen_image_vae.safetensors"
|
| 99 |
},
|
| 100 |
+
{
|
| 101 |
"model name": "anima-preview2_q8.gguf",
|
| 102 |
"type": "base model",
|
| 103 |
"base": "anima",
|
| 104 |
"thumbnail": "https://i.ibb.co/0RWrK3sC/anima.png",
|
| 105 |
"url": "https://huggingface.co/JusteLeo/Anima2-GGUF/resolve/main/anima-preview2_q8_0.gguf",
|
|
|
|
| 106 |
"text_encoder": "Qwen3-0.6B-Base.Q8.gguf",
|
| 107 |
"text_encoder_url": "https://huggingface.co/mradermacher/Qwen3-0.6B-Base-GGUF/resolve/main/Qwen3-0.6B-Base.Q8_0.gguf",
|
| 108 |
"vae": "qwen_image_vae.safetensors",
|
|
|
|
| 114 |
"base": "anima",
|
| 115 |
"thumbnail": "https://i.ibb.co/0RWrK3sC/anima.png",
|
| 116 |
"url": "https://huggingface.co/laichaoyi/MixupModels/resolve/main/base_models/anima/amn_photanima_v21Turbo.safetensors",
|
|
|
|
| 117 |
"text_encoder": "Qwen3-0.6B-Base.Q8.gguf",
|
| 118 |
"text_encoder_url": "https://huggingface.co/mradermacher/Qwen3-0.6B-Base-GGUF/resolve/main/Qwen3-0.6B-Base.Q8_0.gguf",
|
| 119 |
"vae": "qwen_image_vae.safetensors",
|
|
|
|
| 125 |
"base": "anima",
|
| 126 |
"thumbnail": "https://i.ibb.co/0RWrK3sC/anima.png",
|
| 127 |
"url": "https://huggingface.co/laichaoyi/MixupModels/resolve/main/base_models/anima/anm_base_photanima_v21.safetensors",
|
|
|
|
| 128 |
"text_encoder": "Qwen3-0.6B-Base.Q8.gguf",
|
| 129 |
"text_encoder_url": "https://huggingface.co/mradermacher/Qwen3-0.6B-Base-GGUF/resolve/main/Qwen3-0.6B-Base.Q8_0.gguf",
|
| 130 |
"vae": "qwen_image_vae.safetensors",
|
|
|
|
| 152 |
"vae": "flux2-vae.safetensors",
|
| 153 |
"vae_url": "https://huggingface.co/laichaoyi/MixupModels/resolve/main/vae/flux2-vae.safetensors"
|
| 154 |
},
|
| 155 |
+
{
|
| 156 |
"model name": "flux-2-klein-base-9b.safetensors",
|
| 157 |
"type": "base model",
|
| 158 |
"base": "flux",
|
|
|
|
| 163 |
"vae": "flux2-vae.safetensors",
|
| 164 |
"vae_url": "https://huggingface.co/laichaoyi/MixupModels/resolve/main/vae/flux2-vae.safetensors"
|
| 165 |
},
|
| 166 |
+
{
|
| 167 |
"model name": "flux-2-klein-base-9b-Q8.gguf",
|
| 168 |
"type": "base model",
|
| 169 |
"base": "flux",
|
|
|
|
| 174 |
"vae": "flux2-vae.safetensors",
|
| 175 |
"vae_url": "https://huggingface.co/laichaoyi/MixupModels/resolve/main/vae/flux2-vae.safetensors"
|
| 176 |
},
|
| 177 |
+
{
|
| 178 |
"model name": "flux-2-klein-9b.safetensors",
|
| 179 |
"type": "base model",
|
| 180 |
"base": "flux",
|
|
|
|
| 185 |
"vae": "flux2-vae.safetensors",
|
| 186 |
"vae_url": "https://huggingface.co/laichaoyi/MixupModels/resolve/main/vae/flux2-vae.safetensors"
|
| 187 |
},
|
| 188 |
+
{
|
| 189 |
"model name": "flux-2-klein-9b-Q8.gguf",
|
| 190 |
"type": "base model",
|
| 191 |
"base": "flux",
|
|
|
|
| 240 |
"vae": "ae.safetensors",
|
| 241 |
"vae_url": "https://huggingface.co/black-forest-labs/FLUX.1-schnell/resolve/main/ae.safetensors"
|
| 242 |
},
|
|
|
|
| 243 |
{
|
| 244 |
"model name": "z_image_turbo-Q8.gguf",
|
| 245 |
"type": "base model",
|
|
|
|
| 251 |
"vae": "ae.safetensors",
|
| 252 |
"vae_url": "https://huggingface.co/black-forest-labs/FLUX.1-schnell/resolve/main/ae.safetensors"
|
| 253 |
},
|
| 254 |
+
{
|
|
|
|
| 255 |
"model name": "Moody_Distillation_ZIT",
|
| 256 |
"type": "LoRA",
|
| 257 |
"base": "zimage",
|
| 258 |
"thumbnail": "https://i.ibb.co/LdRN9sDC/Moody-Distillation-ZIT.png",
|
| 259 |
"url": "https://huggingface.co/Andyhere/Z-images_models/resolve/main/Moody_Distillation_ZIT.zip"
|
| 260 |
},
|
| 261 |
+
{
|
| 262 |
"model name": "headswap",
|
| 263 |
"type": "LoRA",
|
| 264 |
"base": "flux",
|
|
|
|
| 269 |
"model name": "Flux2-Klein-Relight-LoRA_v2",
|
| 270 |
"type": "LoRA",
|
| 271 |
"base": "flux",
|
|
|
|
| 272 |
"thumbnail": "https://i.ibb.co/XxTW2Y5F/Flux2-Klein-Relight-Lo-RA-v2.jpg",
|
| 273 |
"url": "https://huggingface.co/Andyhere/Z-images_models/resolve/main/Flux2-Klein-Relight-LoRA_v2.zip"
|
| 274 |
},
|
| 275 |
+
{
|
| 276 |
"model name": "image_restore",
|
| 277 |
"type": "LoRA",
|
| 278 |
"base": "flux",
|
| 279 |
"thumbnail": "https://i.ibb.co/xqxSxPy3/screenimg.jpg",
|
| 280 |
"url": "https://huggingface.co/Andyhere/Z-images_models/resolve/main/image_restore.zip"
|
| 281 |
},
|
| 282 |
+
{
|
| 283 |
"model name": "uncrop_F2K9B",
|
| 284 |
"type": "LoRA",
|
| 285 |
"base": "flux",
|
| 286 |
"thumbnail": "https://i.ibb.co/KzrQ0xpc/uncrop-F2-K9-B.jpg",
|
| 287 |
"url": "https://huggingface.co/Andyhere/Z-images_models/resolve/main/uncrop_F2K9B.zip"
|
| 288 |
},
|
| 289 |
+
{
|
| 290 |
"model name": "Nano-Alcohol-Bright",
|
| 291 |
"type": "LoRA",
|
| 292 |
"base": "flux",
|
|
|
|
| 396 |
"type": "Others",
|
| 397 |
"thumbnail": "https://i.ibb.co/msQPWSQ/sam3.jpg",
|
| 398 |
"url": "https://huggingface.co/Andyhere/Z-images_models/resolve/main/SAM3.zip"
|
| 399 |
+
},
|
| 400 |
+
{
|
| 401 |
+
"model name": "Krea-2-Base-Q4_K_M.gguf",
|
| 402 |
+
"type": "base model",
|
| 403 |
+
"base": "krea2",
|
| 404 |
+
"thumbnail": "https://huggingface.co/krea/Krea-2-Raw/resolve/main/images/raw-header.jpg",
|
| 405 |
+
"url": "https://huggingface.co/realrebelai/KREA-2_GGUFs/resolve/main/BASE/Krea-2-Base-Q4_K_M.gguf",
|
| 406 |
+
"text_encoder": "Qwen3VL-4B-Instruct-Q4_K_M.gguf",
|
| 407 |
+
"text_encoder_url": "https://huggingface.co/Qwen/Qwen3-VL-4B-Instruct-GGUF/resolve/main/Qwen3VL-4B-Instruct-Q4_K_M.gguf",
|
| 408 |
+
"vae": "wan_2.1_vae.safetensors",
|
| 409 |
+
"vae_url": "https://huggingface.co/Comfy-Org/Wan_2.1_ComfyUI_repackaged/resolve/main/split_files/vae/wan_2.1_vae.safetensors"
|
| 410 |
+
},
|
| 411 |
+
{
|
| 412 |
+
"model name": "Krea-2-Turbo-Q4_K_M.gguf",
|
| 413 |
+
"type": "base model",
|
| 414 |
+
"base": "krea2",
|
| 415 |
+
"thumbnail": "https://huggingface.co/krea/Krea-2-Turbo/resolve/main/images/turbo-header.jpg",
|
| 416 |
+
"url": "https://huggingface.co/realrebelai/KREA-2_GGUFs/resolve/main/TURBO/Krea-2-Turbo-Q4_K_M.gguf",
|
| 417 |
+
"text_encoder": "Qwen3VL-4B-Instruct-Q4_K_M.gguf",
|
| 418 |
+
"text_encoder_url": "https://huggingface.co/Qwen/Qwen3-VL-4B-Instruct-GGUF/resolve/main/Qwen3VL-4B-Instruct-Q4_K_M.gguf",
|
| 419 |
+
"vae": "wan_2.1_vae.safetensors",
|
| 420 |
+
"vae_url": "https://huggingface.co/Comfy-Org/Wan_2.1_ComfyUI_repackaged/resolve/main/split_files/vae/wan_2.1_vae.safetensors"
|
| 421 |
+
},
|
| 422 |
+
{
|
| 423 |
+
"model name": "boogu_image_base_bf16.safetensors",
|
| 424 |
+
"type": "base model",
|
| 425 |
+
"base": "boogu",
|
| 426 |
+
"thumbnail": "https://huggingface.co/Comfy-Org/Boogu-Image/resolve/main/images/boogu.jpg",
|
| 427 |
+
"url": "https://huggingface.co/Comfy-Org/Boogu-Image/resolve/main/diffusion_models/boogu_image_base_bf16.safetensors",
|
| 428 |
+
"text_encoder": "Qwen3-VL-8B-Instruct-Q4_K_M.gguf",
|
| 429 |
+
"text_encoder_url": "https://huggingface.co/unsloth/Qwen3-VL-8B-Instruct-GGUF/resolve/main/Qwen3-VL-8B-Instruct-Q4_K_M.gguf",
|
| 430 |
+
"vae": "ae.safetensors",
|
| 431 |
+
"vae_url": "https://huggingface.co/black-forest-labs/FLUX.1-dev/resolve/main/ae.safetensors",
|
| 432 |
+
"runtime_status": "recommended_safe"
|
| 433 |
+
},
|
| 434 |
+
{
|
| 435 |
+
"model name": "boogu_image_edit_bf16.safetensors",
|
| 436 |
+
"type": "base model",
|
| 437 |
+
"base": "boogu",
|
| 438 |
+
"thumbnail": "https://huggingface.co/Comfy-Org/Boogu-Image/resolve/main/images/boogu.jpg",
|
| 439 |
+
"url": "https://huggingface.co/Comfy-Org/Boogu-Image/resolve/main/diffusion_models/boogu_image_edit_bf16.safetensors",
|
| 440 |
+
"text_encoder": "Qwen3-VL-8B-Instruct-Q4_K_M.gguf",
|
| 441 |
+
"text_encoder_url": "https://huggingface.co/unsloth/Qwen3-VL-8B-Instruct-GGUF/resolve/main/Qwen3-VL-8B-Instruct-Q4_K_M.gguf",
|
| 442 |
+
"llm_vision": "mmproj-F16.gguf",
|
| 443 |
+
"llm_vision_url": "https://huggingface.co/unsloth/Qwen3-VL-8B-Instruct-GGUF/resolve/main/mmproj-F16.gguf",
|
| 444 |
+
"vae": "ae.safetensors",
|
| 445 |
+
"vae_url": "https://huggingface.co/black-forest-labs/FLUX.1-dev/resolve/main/ae.safetensors",
|
| 446 |
+
"runtime_status": "recommended_safe"
|
| 447 |
+
},
|
| 448 |
+
{
|
| 449 |
+
"model name": "boogu_image_base_fp8_scaled.safetensors",
|
| 450 |
+
"type": "base model",
|
| 451 |
+
"base": "boogu",
|
| 452 |
+
"thumbnail": "https://huggingface.co/Comfy-Org/Boogu-Image/resolve/main/images/boogu.jpg",
|
| 453 |
+
"url": "https://huggingface.co/Comfy-Org/Boogu-Image/resolve/main/diffusion_models/boogu_image_base_fp8_scaled.safetensors",
|
| 454 |
+
"text_encoder": "Qwen3-VL-8B-Instruct-Q4_K_M.gguf",
|
| 455 |
+
"text_encoder_url": "https://huggingface.co/unsloth/Qwen3-VL-8B-Instruct-GGUF/resolve/main/Qwen3-VL-8B-Instruct-Q4_K_M.gguf",
|
| 456 |
+
"vae": "ae.safetensors",
|
| 457 |
+
"vae_url": "https://huggingface.co/black-forest-labs/FLUX.1-dev/resolve/main/ae.safetensors",
|
| 458 |
+
"runtime_status": "experimental_blocked_by_default",
|
| 459 |
+
"runtime_note": "May load but can generate blank/invalid output on bundled sd-cli. Set boogu_allow_fp8_scaled=true to test."
|
| 460 |
+
},
|
| 461 |
+
{
|
| 462 |
+
"model name": "boogu_image_base_nvfp4.safetensors",
|
| 463 |
+
"type": "base model",
|
| 464 |
+
"base": "boogu",
|
| 465 |
+
"thumbnail": "https://huggingface.co/Comfy-Org/Boogu-Image/resolve/main/images/boogu.jpg",
|
| 466 |
+
"url": "https://huggingface.co/Comfy-Org/Boogu-Image/resolve/main/diffusion_models/boogu_image_base_nvfp4.safetensors",
|
| 467 |
+
"text_encoder": "Qwen3-VL-8B-Instruct-Q4_K_M.gguf",
|
| 468 |
+
"text_encoder_url": "https://huggingface.co/unsloth/Qwen3-VL-8B-Instruct-GGUF/resolve/main/Qwen3-VL-8B-Instruct-Q4_K_M.gguf",
|
| 469 |
+
"vae": "ae.safetensors",
|
| 470 |
+
"vae_url": "https://huggingface.co/black-forest-labs/FLUX.1-dev/resolve/main/ae.safetensors"
|
| 471 |
+
},
|
| 472 |
+
{
|
| 473 |
+
"model name": "boogu_image_edit_fp8_scaled.safetensors",
|
| 474 |
+
"type": "base model",
|
| 475 |
+
"base": "boogu",
|
| 476 |
+
"thumbnail": "https://huggingface.co/Comfy-Org/Boogu-Image/resolve/main/images/boogu.jpg",
|
| 477 |
+
"url": "https://huggingface.co/Comfy-Org/Boogu-Image/resolve/main/diffusion_models/boogu_image_edit_fp8_scaled.safetensors",
|
| 478 |
+
"text_encoder": "Qwen3-VL-8B-Instruct-Q4_K_M.gguf",
|
| 479 |
+
"text_encoder_url": "https://huggingface.co/unsloth/Qwen3-VL-8B-Instruct-GGUF/resolve/main/Qwen3-VL-8B-Instruct-Q4_K_M.gguf",
|
| 480 |
+
"vae": "ae.safetensors",
|
| 481 |
+
"vae_url": "https://huggingface.co/black-forest-labs/FLUX.1-dev/resolve/main/ae.safetensors",
|
| 482 |
+
"llm_vision": "mmproj-F16.gguf",
|
| 483 |
+
"llm_vision_url": "https://huggingface.co/unsloth/Qwen3-VL-8B-Instruct-GGUF/resolve/main/mmproj-F16.gguf",
|
| 484 |
+
"runtime_status": "experimental_blocked_by_default",
|
| 485 |
+
"runtime_note": "May load but can generate blank/invalid output on bundled sd-cli. Set boogu_allow_fp8_scaled=true to test."
|
| 486 |
+
},
|
| 487 |
+
{
|
| 488 |
+
"model name": "boogu_image_edit_nvfp4.safetensors",
|
| 489 |
+
"type": "base model",
|
| 490 |
+
"base": "boogu",
|
| 491 |
+
"thumbnail": "https://huggingface.co/Comfy-Org/Boogu-Image/resolve/main/images/boogu.jpg",
|
| 492 |
+
"url": "https://huggingface.co/Comfy-Org/Boogu-Image/resolve/main/diffusion_models/boogu_image_edit_nvfp4.safetensors",
|
| 493 |
+
"text_encoder": "Qwen3-VL-8B-Instruct-Q4_K_M.gguf",
|
| 494 |
+
"text_encoder_url": "https://huggingface.co/unsloth/Qwen3-VL-8B-Instruct-GGUF/resolve/main/Qwen3-VL-8B-Instruct-Q4_K_M.gguf",
|
| 495 |
+
"vae": "ae.safetensors",
|
| 496 |
+
"vae_url": "https://huggingface.co/black-forest-labs/FLUX.1-dev/resolve/main/ae.safetensors",
|
| 497 |
+
"llm_vision": "mmproj-F16.gguf",
|
| 498 |
+
"llm_vision_url": "https://huggingface.co/unsloth/Qwen3-VL-8B-Instruct-GGUF/resolve/main/mmproj-F16.gguf"
|
| 499 |
+
},
|
| 500 |
+
{
|
| 501 |
+
"model name": "boogu_image_edit_int8_convrot.safetensors",
|
| 502 |
+
"type": "base model",
|
| 503 |
+
"base": "boogu",
|
| 504 |
+
"thumbnail": "https://huggingface.co/Comfy-Org/Boogu-Image/resolve/main/images/boogu.jpg",
|
| 505 |
+
"url": "https://huggingface.co/Comfy-Org/Boogu-Image/resolve/main/diffusion_models/boogu_image_edit_int8_convrot.safetensors",
|
| 506 |
+
"text_encoder": "Qwen3-VL-8B-Instruct-Q4_K_M.gguf",
|
| 507 |
+
"text_encoder_url": "https://huggingface.co/unsloth/Qwen3-VL-8B-Instruct-GGUF/resolve/main/Qwen3-VL-8B-Instruct-Q4_K_M.gguf",
|
| 508 |
+
"vae": "ae.safetensors",
|
| 509 |
+
"vae_url": "https://huggingface.co/black-forest-labs/FLUX.1-dev/resolve/main/ae.safetensors",
|
| 510 |
+
"llm_vision": "mmproj-F16.gguf",
|
| 511 |
+
"llm_vision_url": "https://huggingface.co/unsloth/Qwen3-VL-8B-Instruct-GGUF/resolve/main/mmproj-F16.gguf",
|
| 512 |
+
"runtime_status": "blocked_by_safe_mode",
|
| 513 |
+
"runtime_note": "Bundled sd-cli does not support Boogu I8/int8_convrot tensors."
|
| 514 |
+
},
|
| 515 |
+
{
|
| 516 |
+
"model name": "boogu_image_turbo_fp8_scaled.safetensors",
|
| 517 |
+
"type": "base model",
|
| 518 |
+
"base": "boogu",
|
| 519 |
+
"thumbnail": "https://huggingface.co/Comfy-Org/Boogu-Image/resolve/main/images/boogu.jpg",
|
| 520 |
+
"url": "https://huggingface.co/Comfy-Org/Boogu-Image/resolve/main/diffusion_models/boogu_image_turbo_fp8_scaled.safetensors",
|
| 521 |
+
"text_encoder": "Qwen3-VL-8B-Instruct-Q4_K_M.gguf",
|
| 522 |
+
"text_encoder_url": "https://huggingface.co/unsloth/Qwen3-VL-8B-Instruct-GGUF/resolve/main/Qwen3-VL-8B-Instruct-Q4_K_M.gguf",
|
| 523 |
+
"vae": "ae.safetensors",
|
| 524 |
+
"vae_url": "https://huggingface.co/black-forest-labs/FLUX.1-dev/resolve/main/ae.safetensors",
|
| 525 |
+
"runtime_status": "experimental_blocked_by_default",
|
| 526 |
+
"runtime_note": "May load but can generate blank/invalid output on bundled sd-cli. Set boogu_allow_fp8_scaled=true to test."
|
| 527 |
+
},
|
| 528 |
+
{
|
| 529 |
+
"model name": "boogu_image_turbo_nvfp4.safetensors",
|
| 530 |
+
"type": "base model",
|
| 531 |
+
"base": "boogu",
|
| 532 |
+
"thumbnail": "https://huggingface.co/Comfy-Org/Boogu-Image/resolve/main/images/boogu.jpg",
|
| 533 |
+
"url": "https://huggingface.co/Comfy-Org/Boogu-Image/resolve/main/diffusion_models/boogu_image_turbo_nvfp4.safetensors",
|
| 534 |
+
"text_encoder": "Qwen3-VL-8B-Instruct-Q4_K_M.gguf",
|
| 535 |
+
"text_encoder_url": "https://huggingface.co/unsloth/Qwen3-VL-8B-Instruct-GGUF/resolve/main/Qwen3-VL-8B-Instruct-Q4_K_M.gguf",
|
| 536 |
+
"vae": "ae.safetensors",
|
| 537 |
+
"vae_url": "https://huggingface.co/black-forest-labs/FLUX.1-dev/resolve/main/ae.safetensors"
|
| 538 |
+
},
|
| 539 |
+
{
|
| 540 |
+
"model name": "boogu_image_turbo_hotfix_bf16.safetensors",
|
| 541 |
+
"type": "base model",
|
| 542 |
+
"base": "boogu",
|
| 543 |
+
"thumbnail": "https://huggingface.co/Comfy-Org/Boogu-Image/resolve/main/images/boogu.jpg",
|
| 544 |
+
"url": "https://huggingface.co/Comfy-Org/Boogu-Image/resolve/main/diffusion_models/boogu_image_turbo_hotfix_bf16.safetensors",
|
| 545 |
+
"text_encoder": "Qwen3-VL-8B-Instruct-Q4_K_M.gguf",
|
| 546 |
+
"text_encoder_url": "https://huggingface.co/unsloth/Qwen3-VL-8B-Instruct-GGUF/resolve/main/Qwen3-VL-8B-Instruct-Q4_K_M.gguf",
|
| 547 |
+
"vae": "ae.safetensors",
|
| 548 |
+
"vae_url": "https://huggingface.co/black-forest-labs/FLUX.1-dev/resolve/main/ae.safetensors",
|
| 549 |
+
"runtime_status": "recommended_safe"
|
| 550 |
+
},
|
| 551 |
+
{
|
| 552 |
+
"model name": "boogu_image_turbo_hotfix_int8_convrot.safetensors",
|
| 553 |
+
"type": "base model",
|
| 554 |
+
"base": "boogu",
|
| 555 |
+
"thumbnail": "https://huggingface.co/Comfy-Org/Boogu-Image/resolve/main/images/boogu.jpg",
|
| 556 |
+
"url": "https://huggingface.co/Comfy-Org/Boogu-Image/resolve/main/diffusion_models/boogu_image_turbo_hotfix_int8_convrot.safetensors",
|
| 557 |
+
"text_encoder": "Qwen3-VL-8B-Instruct-Q4_K_M.gguf",
|
| 558 |
+
"text_encoder_url": "https://huggingface.co/unsloth/Qwen3-VL-8B-Instruct-GGUF/resolve/main/Qwen3-VL-8B-Instruct-Q4_K_M.gguf",
|
| 559 |
+
"vae": "ae.safetensors",
|
| 560 |
+
"vae_url": "https://huggingface.co/black-forest-labs/FLUX.1-dev/resolve/main/ae.safetensors",
|
| 561 |
+
"runtime_status": "blocked_by_safe_mode",
|
| 562 |
+
"runtime_note": "Bundled sd-cli does not support Boogu I8/int8_convrot tensors."
|
| 563 |
+
},
|
| 564 |
+
{
|
| 565 |
+
"model name": "boogu_image_turbo_hotfix_nvfp4.safetensors",
|
| 566 |
+
"type": "base model",
|
| 567 |
+
"base": "boogu",
|
| 568 |
+
"thumbnail": "https://huggingface.co/Comfy-Org/Boogu-Image/resolve/main/images/boogu.jpg",
|
| 569 |
+
"url": "https://huggingface.co/Comfy-Org/Boogu-Image/resolve/main/diffusion_models/boogu_image_turbo_hotfix_nvfp4.safetensors",
|
| 570 |
+
"text_encoder": "Qwen3-VL-8B-Instruct-Q4_K_M.gguf",
|
| 571 |
+
"text_encoder_url": "https://huggingface.co/unsloth/Qwen3-VL-8B-Instruct-GGUF/resolve/main/Qwen3-VL-8B-Instruct-Q4_K_M.gguf",
|
| 572 |
+
"vae": "ae.safetensors",
|
| 573 |
+
"vae_url": "https://huggingface.co/black-forest-labs/FLUX.1-dev/resolve/main/ae.safetensors"
|
| 574 |
}
|
| 575 |
+
]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|