fix vibe installer

Signed-off-by: vladmandic <mandic00@live.com>
This commit is contained in:
vladmandic
2026-04-14 13:24:09 +02:00
parent 6f471f9050
commit afd246d062
2 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -14,7 +14,7 @@
combines *Sana1.5-1.6B* diffusion backbone with *Qwen3-VL-2B* multimodal conditioning
- [AiArtLab SDXS-1B](https://huggingface.co/AiArtLab/sdxs-1b) Simple Diffusion XS *(training still in progress)*
this model combines Qwen3.5-1.8B text encoder with SDXL-style UNET with only 1.6B parameters and custom 32ch VAE
more of an experimental model and doesn't support offloading
*note*: more of an experimental model and doesn't support offloading
- **Features**
- **Tag Autocomplete** native implementation!
select and activate any number of different auto-complete databases
+3 -2
View File
@@ -49,8 +49,9 @@ def load_vibe(checkpoint_info, diffusers_load_config=None):
del processor
else:
try:
from installer import install
install('vibe')
from installer import install, installed
if not installed('vibe'):
install('git+https://github.com/ai-forever/VIBE', 'vibe')
import vibe # pylint: disable=unused-import
except Exception as e:
raise RuntimeError('VIBE requires either native diffusers VIBESana classes or `vibe` package') from e