add boogu

Signed-off-by: Vladimir Mandic <mandic00@live.com>
This commit is contained in:
Vladimir Mandic
2026-07-04 15:26:36 +02:00
parent 5b486dc3cf
commit db26b77909
23 changed files with 5152 additions and 16 deletions
+1 -1
View File
@@ -219,7 +219,7 @@ def discover_components(model_index: dict[str, Any] | None, files_map: dict[str,
components["mains"] = sorted([d for d in top_dirs if re.search(r"(transformer|unet)", d or "", flags=re.IGNORECASE)])
if not components["text_encoders"]:
components["text_encoders"] = sorted([d for d in top_dirs if re.fullmatch(r"text_encoder(_\d+)?", d or "")])
components["text_encoders"] = sorted([d for d in top_dirs if re.fullmatch(r"text_encoder|mllm(_\d+)?", d or "")])
if components["ae"] is None and "vae" in top_dirs:
components["ae"] = "vae"