Skip to content

Commit

Permalink
fix GGUF lora
Browse files Browse the repository at this point in the history
  • Loading branch information
diStyApps committed Dec 13, 2024
1 parent 6d50a00 commit aba029a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
NODE_DISPLAY_NAME_MAPPINGS: Dict[str, str] = {}
APP_CONFIGS: List[AppConfig] = []
APP_NAME: str = "Flow"
APP_VERSION: str = "0.4.4"
APP_VERSION: str = "0.4.5"
PURPLE = "\033[38;5;129m"
RESET = "\033[0m"
FLOWMSG = f"{PURPLE}Flow{RESET}"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "comfyui-disty-flow"
description = "Flow is a custom node designed to provide a more user-friendly interface for ComfyUI by acting as an alternative user interface for running workflows. It is not a replacement for workflow creation.\nFlow is currently in the early stages of development, so expect bugs and ongoing feature enhancements. With your support and feedback, Flow will settle into a steady stream."
version = "0.4.4"
version = "0.4.5"
license = {file = "LICENSE"}

[project.urls]
Expand Down
2 changes: 1 addition & 1 deletion web/core/js/common/components/WorkflowNodeAdder.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ class WorkflowNodeAdder {
}

_isModelLoader(classType) {
const modelLoaderTypes = ["UNETLoader","CheckpointLoaderSimple","DownloadAndLoadMochiModel,UnetLoaderGGUF"];
const modelLoaderTypes = ["UNETLoader","CheckpointLoaderSimple","DownloadAndLoadMochiModel","UnetLoaderGGUF"];
return modelLoaderTypes.includes(classType);
}

Expand Down

0 comments on commit aba029a

Please sign in to comment.