We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb7a717 commit 785c26fCopy full SHA for 785c26f
ai_diffusion/comfy_client.py
@@ -134,7 +134,9 @@ async def connect(url=default_url, access_token=""):
134
clip_models = nodes.options("DualCLIPLoader", "clip_name1")
135
available_resources.update(_find_text_encoder_models(clip_models))
136
clip_gguf_models = nodes.options("DualCLIPLoaderGGUF", "clip_name1")
137
- available_resources.update(_find_text_encoder_models(clip_gguf_models))
+ for k, v in _find_text_encoder_models(clip_gguf_models).items():
138
+ if available_resources.get(k) is None and v is not None:
139
+ available_resources[k] = v
140
141
vae_models = nodes.options("VAELoader", "vae_name")
142
available_resources.update(_find_vae_models(vae_models))
0 commit comments