Compare commits
56 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9e44617199 | ||
|
|
8aa4fcf448 | ||
|
|
39e62cd800 | ||
|
|
d8c5a42777 | ||
|
|
0a19924b36 | ||
|
|
665fd72480 | ||
|
|
76b073c366 | ||
|
|
fa357479ef | ||
|
|
19a9c24485 | ||
|
|
05ecca1f4d | ||
|
|
58847298be | ||
|
|
a9f8cecaec | ||
|
|
441b4d2797 | ||
|
|
1808bc3027 | ||
|
|
d4db1a51d2 | ||
|
|
f06ac47557 | ||
|
|
d8fb8ce606 | ||
|
|
26b7816552 | ||
|
|
8576f9c97f | ||
|
|
c4eecca6b6 | ||
|
|
02f1788261 | ||
|
|
4a908d970a | ||
|
|
0278ee2515 | ||
|
|
eabde97d17 | ||
|
|
eb88e06ab1 | ||
|
|
11ba0ed696 | ||
|
|
73f477941d | ||
|
|
2de4b7e4c4 | ||
|
|
9552ce6210 | ||
|
|
688bf25be9 | ||
|
|
14f567c031 | ||
|
|
1ab304bfbc | ||
|
|
2e2a7cee79 | ||
|
|
a3c0ed8113 | ||
|
|
642a3673af | ||
|
|
971653f117 | ||
|
|
ff8fb087e0 | ||
|
|
8be3cce9a9 | ||
|
|
c7b2ec7502 | ||
|
|
f2da376df1 | ||
|
|
90035ded39 | ||
|
|
8c593fe3f6 | ||
|
|
96a4b73bb4 | ||
|
|
83fdaaf409 | ||
|
|
f17dd82d8e | ||
|
|
81929b9ec1 | ||
|
|
b8dfdfa31d | ||
|
|
4021be531e | ||
|
|
f985c02ce7 | ||
|
|
602eacf0ed | ||
|
|
bcca781896 | ||
|
|
b6a8e6ba81 | ||
|
|
4768c46151 | ||
|
|
fef46c71a0 | ||
|
|
acfbc8ef04 | ||
|
|
e72cd14d9d |
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
5225
github-stats.json
5225
github-stats.json
File diff suppressed because it is too large
Load Diff
@@ -23,13 +23,35 @@ sys.path.append(glob_path)
|
||||
import cm_global
|
||||
from manager_util import *
|
||||
|
||||
version = [2, 51, 9]
|
||||
version = [2, 54]
|
||||
version_str = f"V{version[0]}.{version[1]}" + (f'.{version[2]}' if len(version) > 2 else '')
|
||||
|
||||
|
||||
comfyui_manager_path = os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
|
||||
custom_nodes_path = os.path.abspath(os.path.join(comfyui_manager_path, '..'))
|
||||
|
||||
default_custom_nodes_path = None
|
||||
|
||||
def get_default_custom_nodes_path():
|
||||
global default_custom_nodes_path
|
||||
if default_custom_nodes_path is None:
|
||||
try:
|
||||
import folder_paths
|
||||
default_custom_nodes_path = folder_paths.get_folder_paths("custom_nodes")[0]
|
||||
except:
|
||||
default_custom_nodes_path = custom_nodes_path
|
||||
|
||||
return default_custom_nodes_path
|
||||
|
||||
|
||||
def get_custom_nodes_paths():
|
||||
try:
|
||||
import folder_paths
|
||||
return folder_paths.get_folder_paths("custom_nodes")
|
||||
except:
|
||||
return [custom_nodes_path]
|
||||
|
||||
|
||||
comfy_path = os.environ.get('COMFYUI_PATH')
|
||||
if comfy_path is None:
|
||||
comfy_path = os.path.abspath(os.path.join(custom_nodes_path, '..'))
|
||||
@@ -340,7 +362,7 @@ def __win_check_git_update(path, do_fetch=False, do_update=False):
|
||||
|
||||
new_env = os.environ.copy()
|
||||
new_env["COMFYUI_PATH"] = comfy_path
|
||||
process = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, cwd=custom_nodes_path)
|
||||
process = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, cwd=get_default_custom_nodes_path())
|
||||
output, _ = process.communicate()
|
||||
output = output.decode('utf-8').strip()
|
||||
|
||||
@@ -367,13 +389,13 @@ def __win_check_git_update(path, do_fetch=False, do_update=False):
|
||||
if do_update:
|
||||
if "CUSTOM NODE PULL: Success" in output:
|
||||
process.wait()
|
||||
print(f"\rUpdated: {path}")
|
||||
print(f"\x1b[2K\rUpdated: {path}")
|
||||
return True, True # updated
|
||||
elif "CUSTOM NODE PULL: None" in output:
|
||||
process.wait()
|
||||
return False, True # there is no update
|
||||
else:
|
||||
print(f"\rUpdate error: {path}")
|
||||
print(f"\x1b[2K\rUpdate error: {path}")
|
||||
process.wait()
|
||||
return False, False # update failed
|
||||
else:
|
||||
@@ -384,7 +406,7 @@ def __win_check_git_update(path, do_fetch=False, do_update=False):
|
||||
process.wait()
|
||||
return False, True
|
||||
else:
|
||||
print(f"\rFetch error: {path}")
|
||||
print(f"\x1b[2K\rFetch error: {path}")
|
||||
print(f"\n{output}\n")
|
||||
process.wait()
|
||||
return False, True
|
||||
@@ -394,7 +416,7 @@ def __win_check_git_pull(path):
|
||||
new_env = os.environ.copy()
|
||||
new_env["COMFYUI_PATH"] = comfy_path
|
||||
command = [sys.executable, git_script_path, "--pull", path]
|
||||
process = subprocess.Popen(command, env=new_env, cwd=custom_nodes_path)
|
||||
process = subprocess.Popen(command, env=new_env, cwd=get_default_custom_nodes_path())
|
||||
process.wait()
|
||||
|
||||
|
||||
@@ -408,6 +430,7 @@ def execute_install_script(url, repo_path, lazy_mode=False, instant_execution=Fa
|
||||
else:
|
||||
if os.path.exists(requirements_path):
|
||||
print("Install: pip packages")
|
||||
pip_fixer = PIPFixer(get_installed_packages())
|
||||
with open(requirements_path, "r") as requirements_file:
|
||||
for line in requirements_file:
|
||||
#handle comments
|
||||
@@ -430,6 +453,8 @@ def execute_install_script(url, repo_path, lazy_mode=False, instant_execution=Fa
|
||||
if package_name.strip() != "" and not package_name.startswith('#'):
|
||||
try_install_script(url, repo_path, install_cmd, instant_execution=instant_execution)
|
||||
|
||||
pip_fixer.fix_broken()
|
||||
|
||||
if os.path.exists(install_script_path):
|
||||
print(f"Install: install script")
|
||||
install_cmd = [sys.executable, "install.py"]
|
||||
@@ -559,11 +584,11 @@ def gitclone_install(files, instant_execution=False, msg_prefix=''):
|
||||
try:
|
||||
print(f"Download: git clone '{url}'")
|
||||
repo_name = os.path.splitext(os.path.basename(url))[0]
|
||||
repo_path = os.path.join(custom_nodes_path, repo_name)
|
||||
repo_path = os.path.join(get_default_custom_nodes_path(), repo_name)
|
||||
|
||||
# Clone the repository from the remote URL
|
||||
if not instant_execution and platform.system() == 'Windows':
|
||||
res = manager_funcs.run_script([sys.executable, git_script_path, "--clone", custom_nodes_path, url], cwd=custom_nodes_path)
|
||||
res = manager_funcs.run_script([sys.executable, git_script_path, "--clone", get_default_custom_nodes_path(), url], cwd=get_default_custom_nodes_path())
|
||||
if res != 0:
|
||||
return False
|
||||
else:
|
||||
@@ -687,6 +712,22 @@ async def get_data_by_mode(mode, filename, channel_url=None):
|
||||
return json_obj
|
||||
|
||||
|
||||
def lookup_installed_custom_nodes(repo_name):
|
||||
try:
|
||||
import folder_paths
|
||||
base_paths = folder_paths.get_folder_paths("custom_nodes")
|
||||
except:
|
||||
base_paths = [custom_nodes_path]
|
||||
|
||||
for base_path in base_paths:
|
||||
repo_path = os.path.join(base_path, repo_name)
|
||||
if os.path.exists(repo_path):
|
||||
return True, repo_path
|
||||
elif os.path.exists(repo_path+'.disabled'):
|
||||
return False, repo_path
|
||||
|
||||
return None
|
||||
|
||||
def gitclone_fix(files, instant_execution=False):
|
||||
print(f"Try fixing: {files}")
|
||||
for url in files:
|
||||
@@ -698,13 +739,15 @@ def gitclone_fix(files, instant_execution=False):
|
||||
url = url[:-1]
|
||||
try:
|
||||
repo_name = os.path.splitext(os.path.basename(url))[0]
|
||||
repo_path = os.path.join(custom_nodes_path, repo_name)
|
||||
repo_path = lookup_installed_custom_nodes(repo_name)
|
||||
|
||||
if os.path.exists(repo_path+'.disabled'):
|
||||
repo_path = repo_path+'.disabled'
|
||||
if repo_path is not None:
|
||||
repo_path = repo_path[1]
|
||||
|
||||
if not execute_install_script(url, repo_path, instant_execution=instant_execution):
|
||||
return False
|
||||
if not execute_install_script(url, repo_path, instant_execution=instant_execution):
|
||||
return False
|
||||
else:
|
||||
print(f"Custom node not found: {repo_name}")
|
||||
|
||||
except Exception as e:
|
||||
print(f"Install(git-clone) error: {url} / {e}", file=sys.stderr)
|
||||
@@ -751,12 +794,12 @@ def gitclone_uninstall(files):
|
||||
url = url[:-1]
|
||||
try:
|
||||
dir_name = os.path.splitext(os.path.basename(url))[0].replace(".git", "")
|
||||
dir_path = os.path.join(custom_nodes_path, dir_name)
|
||||
repo_path = lookup_installed_custom_nodes(dir_name)
|
||||
|
||||
# safety check
|
||||
if dir_path == '/' or dir_path[1:] == ":/" or dir_path == '':
|
||||
print(f"Uninstall(git-clone) error: invalid path '{dir_path}' for '{url}'")
|
||||
return False
|
||||
if repo_path is None:
|
||||
continue
|
||||
|
||||
dir_path = repo_path[1]
|
||||
|
||||
install_script_path = os.path.join(dir_path, "uninstall.py")
|
||||
disable_script_path = os.path.join(dir_path, "disable.py")
|
||||
@@ -772,10 +815,7 @@ def gitclone_uninstall(files):
|
||||
if code != 0:
|
||||
print(f"An error occurred during the execution of the disable.py script. Only the '{dir_path}' will be deleted.")
|
||||
|
||||
if os.path.exists(dir_path):
|
||||
rmtree(dir_path)
|
||||
elif os.path.exists(dir_path + ".disabled"):
|
||||
rmtree(dir_path + ".disabled")
|
||||
rmtree(dir_path)
|
||||
except Exception as e:
|
||||
print(f"Uninstall(git-clone) error: {url} / {e}", file=sys.stderr)
|
||||
return False
|
||||
@@ -798,13 +838,13 @@ def gitclone_set_active(files, is_disable):
|
||||
url = url[:-1]
|
||||
try:
|
||||
dir_name = os.path.splitext(os.path.basename(url))[0].replace(".git", "")
|
||||
dir_path = os.path.join(custom_nodes_path, dir_name)
|
||||
repo_path = lookup_installed_custom_nodes(dir_name)
|
||||
|
||||
# safety check
|
||||
if dir_path == '/' or dir_path[1:] == ":/" or dir_path == '':
|
||||
print(f"{action_name}(git-clone) error: invalid path '{dir_path}' for '{url}'")
|
||||
return False
|
||||
if repo_path is None:
|
||||
continue
|
||||
|
||||
dir_path = repo_path[1]
|
||||
|
||||
if is_disable:
|
||||
current_path = dir_path
|
||||
new_path = dir_path + ".disabled"
|
||||
@@ -840,11 +880,13 @@ def gitclone_update(files, instant_execution=False, skip_script=False, msg_prefi
|
||||
url = url[:-1]
|
||||
try:
|
||||
repo_name = os.path.splitext(os.path.basename(url))[0].replace(".git", "")
|
||||
repo_path = os.path.join(custom_nodes_path, repo_name)
|
||||
repo_path = lookup_installed_custom_nodes(repo_name)
|
||||
|
||||
if os.path.exists(repo_path+'.disabled'):
|
||||
repo_path = repo_path+'.disabled'
|
||||
if repo_path is None:
|
||||
continue
|
||||
|
||||
repo_path = repo_path[1]
|
||||
|
||||
git_pull(repo_path)
|
||||
|
||||
if not skip_script:
|
||||
@@ -914,10 +956,14 @@ def lookup_customnode_by_url(data, target):
|
||||
for x in data['custom_nodes']:
|
||||
if target in x['files']:
|
||||
dir_name = os.path.splitext(os.path.basename(target))[0].replace(".git", "")
|
||||
dir_path = os.path.join(custom_nodes_path, dir_name)
|
||||
if os.path.exists(dir_path):
|
||||
repo_path = lookup_installed_custom_nodes(dir_name)
|
||||
|
||||
if repo_path is None:
|
||||
continue
|
||||
|
||||
if repo_path[0]:
|
||||
x['installed'] = 'True'
|
||||
elif os.path.exists(dir_path + ".disabled"):
|
||||
else:
|
||||
x['installed'] = 'Disabled'
|
||||
return x
|
||||
|
||||
@@ -926,13 +972,15 @@ def lookup_customnode_by_url(data, target):
|
||||
|
||||
def simple_check_custom_node(url):
|
||||
dir_name = os.path.splitext(os.path.basename(url))[0].replace(".git", "")
|
||||
dir_path = os.path.join(custom_nodes_path, dir_name)
|
||||
if os.path.exists(dir_path):
|
||||
return 'installed'
|
||||
elif os.path.exists(dir_path+'.disabled'):
|
||||
return 'disabled'
|
||||
repo_path = lookup_installed_custom_nodes(dir_name)
|
||||
|
||||
return 'not-installed'
|
||||
if repo_path is None:
|
||||
return 'not-installed'
|
||||
|
||||
if repo_path[0]:
|
||||
return 'installed'
|
||||
else:
|
||||
return 'disabled'
|
||||
|
||||
|
||||
def check_a_custom_node_installed(item, do_fetch=False, do_update_check=True, do_update=False):
|
||||
@@ -945,8 +993,12 @@ def check_a_custom_node_installed(item, do_fetch=False, do_update_check=True, do
|
||||
url = url[:-1]
|
||||
|
||||
dir_name = os.path.splitext(os.path.basename(url))[0].replace(".git", "")
|
||||
dir_path = os.path.join(custom_nodes_path, dir_name)
|
||||
if os.path.exists(dir_path):
|
||||
repo_path = lookup_installed_custom_nodes(dir_name)
|
||||
|
||||
if repo_path is None:
|
||||
item['installed'] = 'False'
|
||||
elif repo_path[0]:
|
||||
dir_path = repo_path[1]
|
||||
try:
|
||||
item['installed'] = 'True' # default
|
||||
|
||||
@@ -965,17 +1017,23 @@ def check_a_custom_node_installed(item, do_fetch=False, do_update_check=True, do
|
||||
else:
|
||||
item['installed'] = 'True'
|
||||
|
||||
elif os.path.exists(dir_path + ".disabled"):
|
||||
item['installed'] = 'Disabled'
|
||||
|
||||
else:
|
||||
item['installed'] = 'False'
|
||||
item['installed'] = 'Disabled'
|
||||
|
||||
elif item['install_type'] == 'copy' and len(item['files']) == 1:
|
||||
dir_name = os.path.basename(item['files'][0])
|
||||
|
||||
if item['files'][0].endswith('.py'):
|
||||
base_path = custom_nodes_path
|
||||
base_path = lookup_installed_custom_nodes(item['files'][0])
|
||||
if base_path is None:
|
||||
item['installed'] = 'False'
|
||||
return
|
||||
elif base_path[0]:
|
||||
item['installed'] = 'True'
|
||||
else:
|
||||
item['installed'] = 'Disabled'
|
||||
|
||||
return
|
||||
elif 'js_path' in item:
|
||||
base_path = os.path.join(js_path, item['js_path'])
|
||||
else:
|
||||
@@ -987,8 +1045,6 @@ def check_a_custom_node_installed(item, do_fetch=False, do_update_check=True, do
|
||||
item['installed'] = 'Fail'
|
||||
else:
|
||||
item['installed'] = 'True'
|
||||
elif os.path.exists(file_path + ".disabled"):
|
||||
item['installed'] = 'Disabled'
|
||||
else:
|
||||
item['installed'] = 'False'
|
||||
|
||||
@@ -1025,39 +1081,46 @@ def get_current_snapshot():
|
||||
git_custom_nodes = {}
|
||||
file_custom_nodes = []
|
||||
|
||||
try:
|
||||
import folder_paths
|
||||
base_paths = folder_paths.get_folder_paths("custom_nodes")
|
||||
except:
|
||||
base_paths = [custom_nodes_path]
|
||||
|
||||
# Get custom nodes hash
|
||||
for path in os.listdir(custom_nodes_path):
|
||||
fullpath = os.path.join(custom_nodes_path, path)
|
||||
for base_path in base_paths:
|
||||
for path in os.listdir(base_path):
|
||||
fullpath = os.path.join(base_path, path)
|
||||
|
||||
if os.path.isdir(fullpath):
|
||||
is_disabled = path.endswith(".disabled")
|
||||
if os.path.isdir(fullpath):
|
||||
is_disabled = path.endswith(".disabled")
|
||||
|
||||
try:
|
||||
git_dir = os.path.join(fullpath, '.git')
|
||||
try:
|
||||
git_dir = os.path.join(fullpath, '.git')
|
||||
|
||||
if not os.path.exists(git_dir):
|
||||
continue
|
||||
if not os.path.exists(git_dir):
|
||||
continue
|
||||
|
||||
repo = git.Repo(fullpath)
|
||||
commit_hash = repo.head.commit.hexsha
|
||||
url = repo.remotes.origin.url
|
||||
git_custom_nodes[url] = {
|
||||
'hash': commit_hash,
|
||||
repo = git.Repo(fullpath)
|
||||
commit_hash = repo.head.commit.hexsha
|
||||
url = repo.remotes.origin.url
|
||||
git_custom_nodes[url] = {
|
||||
'hash': commit_hash,
|
||||
'disabled': is_disabled
|
||||
}
|
||||
|
||||
except:
|
||||
print(f"Failed to extract snapshots for the custom node '{path}'.")
|
||||
|
||||
elif path.endswith('.py'):
|
||||
is_disabled = path.endswith(".py.disabled")
|
||||
filename = os.path.basename(path)
|
||||
item = {
|
||||
'filename': filename,
|
||||
'disabled': is_disabled
|
||||
}
|
||||
|
||||
except:
|
||||
print(f"Failed to extract snapshots for the custom node '{path}'.")
|
||||
|
||||
elif path.endswith('.py'):
|
||||
is_disabled = path.endswith(".py.disabled")
|
||||
filename = os.path.basename(path)
|
||||
item = {
|
||||
'filename': filename,
|
||||
'disabled': is_disabled
|
||||
}
|
||||
|
||||
file_custom_nodes.append(item)
|
||||
file_custom_nodes.append(item)
|
||||
|
||||
pip_packages = get_installed_pip_packages()
|
||||
|
||||
|
||||
@@ -248,23 +248,45 @@ import urllib.request
|
||||
|
||||
|
||||
def get_model_dir(data):
|
||||
if 'download_model_base' in folder_paths.folder_names_and_paths:
|
||||
models_base = folder_paths.folder_names_and_paths['download_model_base'][0][0]
|
||||
else:
|
||||
models_base = folder_paths.models_dir
|
||||
|
||||
def resolve_custom_node(save_path):
|
||||
save_path = save_path[13:] # remove 'custom_nodes/'
|
||||
repo_name = os.path.dirname(save_path) # get custom node repo name
|
||||
repo_path = core.lookup_installed_custom_nodes(repo_name)
|
||||
if repo_path is not None and repo_path[0]:
|
||||
# Returns the retargeted path based on the actually installed repository
|
||||
return os.path.join(os.path.dirname(repo_path[1]), save_path)
|
||||
else:
|
||||
return None
|
||||
|
||||
if data['save_path'] != 'default':
|
||||
if '..' in data['save_path'] or data['save_path'].startswith('/'):
|
||||
print(f"[WARN] '{data['save_path']}' is not allowed path. So it will be saved into 'models/etc'.")
|
||||
base_model = os.path.join(folder_paths.models_dir, "etc")
|
||||
base_model = os.path.join(models_base, "etc")
|
||||
else:
|
||||
if data['save_path'].startswith("custom_nodes"):
|
||||
base_model = os.path.join(core.comfy_path, data['save_path'])
|
||||
base_model = resolve_custom_node(data['save_path'])
|
||||
if base_model is None:
|
||||
print(f"[ComfyUI-Manager] The target custom node for model download is not installed: {data['save_path']}")
|
||||
return None
|
||||
else:
|
||||
base_model = os.path.join(folder_paths.models_dir, data['save_path'])
|
||||
base_model = os.path.join(models_base, data['save_path'])
|
||||
else:
|
||||
model_type = data['type']
|
||||
if model_type == "checkpoints" or model_type == "checkpoint":
|
||||
base_model = folder_paths.folder_names_and_paths["checkpoints"][0][0]
|
||||
elif model_type == "unclip":
|
||||
base_model = folder_paths.folder_names_and_paths["checkpoints"][0][0]
|
||||
elif model_type == "clip":
|
||||
base_model = folder_paths.folder_names_and_paths["clip"][0][0]
|
||||
elif model_type == "clip" or model_type == "text_encoders":
|
||||
if folder_paths.folder_names_and_paths.get("text_encoders"):
|
||||
base_model = folder_paths.folder_names_and_paths["text_encoders"][0][0]
|
||||
else:
|
||||
print(f"[ComfyUI-Manager] Your ComfyUI is outdated version.")
|
||||
base_model = folder_paths.folder_names_and_paths["clip"][0][0] # outdated version
|
||||
elif model_type == "VAE":
|
||||
base_model = folder_paths.folder_names_and_paths["vae"][0][0]
|
||||
elif model_type == "lora":
|
||||
@@ -290,14 +312,17 @@ def get_model_dir(data):
|
||||
print(f"[ComfyUI-Manager] Your ComfyUI is outdated version.")
|
||||
base_model = folder_paths.folder_names_and_paths["unet"][0][0] # outdated version
|
||||
else:
|
||||
base_model = os.path.join(folder_paths.models_dir, "etc")
|
||||
base_model = os.path.join(models_base, "etc")
|
||||
|
||||
return base_model
|
||||
|
||||
|
||||
def get_model_path(data):
|
||||
base_model = get_model_dir(data)
|
||||
return os.path.join(base_model, data['filename'])
|
||||
if base_model is None:
|
||||
return None
|
||||
else:
|
||||
return os.path.join(base_model, data['filename'])
|
||||
|
||||
|
||||
def check_custom_nodes_installed(json_obj, do_fetch=False, do_update_check=True, do_update=False):
|
||||
@@ -1216,6 +1241,11 @@ def restart(self):
|
||||
exit(0)
|
||||
|
||||
print(f"\nRestarting... [Legacy Mode]\n\n")
|
||||
|
||||
sys_argv = sys.argv.copy()
|
||||
if '--windows-standalone-build' in sys_argv:
|
||||
sys_argv.remove('--windows-standalone-build')
|
||||
|
||||
if sys.platform.startswith('win32'):
|
||||
return os.execv(sys.executable, ['"' + sys.executable + '"', '"' + sys.argv[0] + '"'] + sys.argv[1:])
|
||||
else:
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
import subprocess
|
||||
import sys
|
||||
|
||||
# DON'T USE StrictVersion - cannot handle pre_release version
|
||||
# try:
|
||||
# from distutils.version import StrictVersion
|
||||
@@ -62,3 +65,150 @@ class StrictVersion:
|
||||
def __ne__(self, other):
|
||||
return not self == other
|
||||
|
||||
|
||||
pip_map = None
|
||||
|
||||
def get_installed_packages(renew=False):
|
||||
global pip_map
|
||||
|
||||
if renew or pip_map is None:
|
||||
try:
|
||||
result = subprocess.check_output([sys.executable, '-m', 'pip', 'list'], universal_newlines=True)
|
||||
|
||||
pip_map = {}
|
||||
for line in result.split('\n'):
|
||||
x = line.strip()
|
||||
if x:
|
||||
y = line.split()
|
||||
if y[0] == 'Package' or y[0].startswith('-'):
|
||||
continue
|
||||
|
||||
pip_map[y[0]] = y[1]
|
||||
except subprocess.CalledProcessError as e:
|
||||
print(f"[ComfyUI-Manager] Failed to retrieve the information of installed pip packages.")
|
||||
return set()
|
||||
|
||||
return pip_map
|
||||
|
||||
|
||||
def clear_pip_cache():
|
||||
global pip_map
|
||||
pip_map = None
|
||||
|
||||
|
||||
torch_torchvision_version_map = {
|
||||
'2.5.1': '0.20.1',
|
||||
'2.5.0': '0.20.0',
|
||||
'2.4.1': '0.19.1',
|
||||
'2.4.0': '0.19.0',
|
||||
'2.3.1': '0.18.1',
|
||||
'2.3.0': '0.18.0',
|
||||
'2.2.2': '0.17.2',
|
||||
'2.2.1': '0.17.1',
|
||||
'2.2.0': '0.17.0',
|
||||
'2.1.2': '0.16.2',
|
||||
'2.1.1': '0.16.1',
|
||||
'2.1.0': '0.16.0',
|
||||
'2.0.1': '0.15.2',
|
||||
'2.0.0': '0.15.1',
|
||||
}
|
||||
|
||||
|
||||
class PIPFixer:
|
||||
def __init__(self, prev_pip_versions):
|
||||
self.prev_pip_versions = { **prev_pip_versions }
|
||||
|
||||
def torch_rollback(self):
|
||||
spec = self.prev_pip_versions['torch'].split('+')
|
||||
if len(spec) > 0:
|
||||
platform = spec[1]
|
||||
else:
|
||||
cmd = [sys.executable, '-m', 'pip', 'install', '--force', 'torch', 'torchvision', 'torchaudio']
|
||||
subprocess.check_output(cmd, universal_newlines=True)
|
||||
print(cmd)
|
||||
return
|
||||
|
||||
torch_ver = StrictVersion(spec[0])
|
||||
torch_ver = f"{torch_ver.major}.{torch_ver.minor}.{torch_ver.patch}"
|
||||
torchvision_ver = torch_torchvision_version_map.get(torch_ver)
|
||||
|
||||
if torchvision_ver is None:
|
||||
cmd = [sys.executable, '-m', 'pip', 'install', '--pre',
|
||||
'torch', 'torchvision', 'torchaudio',
|
||||
'--index-url', f"https://download.pytorch.org/whl/nightly/{platform}"]
|
||||
print("[manager-core] restore PyTorch to nightly version")
|
||||
else:
|
||||
cmd = [sys.executable, '-m', 'pip', 'install',
|
||||
f'torch=={torch_ver}', f'torchvision=={torchvision_ver}', f"torchaudio=={torch_ver}",
|
||||
'--index-url', f"https://download.pytorch.org/whl/{platform}"]
|
||||
print(f"[manager-core] restore PyTorch to {torch_ver}+{platform}")
|
||||
|
||||
subprocess.check_output(cmd, universal_newlines=True)
|
||||
|
||||
def fix_broken(self):
|
||||
new_pip_versions = get_installed_packages(True)
|
||||
|
||||
# remove `comfy` python package
|
||||
try:
|
||||
if 'comfy' in new_pip_versions:
|
||||
cmd = [sys.executable, '-m', 'pip', 'uninstall', 'comfy']
|
||||
subprocess.check_output(cmd, universal_newlines=True)
|
||||
|
||||
print(f"[manager-core] 'comfy' python package is uninstalled.\nWARN: The 'comfy' package is completely unrelated to ComfyUI and should never be installed as it causes conflicts with ComfyUI.")
|
||||
except Exception as e:
|
||||
print(f"[manager-core] Failed to uninstall `comfy` python package")
|
||||
print(e)
|
||||
|
||||
# fix torch - reinstall torch packages if version is changed
|
||||
try:
|
||||
if self.prev_pip_versions['torch'] != new_pip_versions['torch'] \
|
||||
or self.prev_pip_versions['torchvision'] != new_pip_versions['torchvision'] \
|
||||
or self.prev_pip_versions['torchaudio'] != new_pip_versions['torchaudio']:
|
||||
self.torch_rollback()
|
||||
except Exception as e:
|
||||
print(f"[manager-core] Failed to restore PyTorch")
|
||||
print(e)
|
||||
|
||||
# fix opencv
|
||||
try:
|
||||
ocp = new_pip_versions.get('opencv-contrib-python')
|
||||
ocph = new_pip_versions.get('opencv-contrib-python-headless')
|
||||
op = new_pip_versions.get('opencv-python')
|
||||
oph = new_pip_versions.get('opencv-python-headless')
|
||||
|
||||
versions = [ocp, ocph, op, oph]
|
||||
versions = [StrictVersion(x) for x in versions if x is not None]
|
||||
versions.sort(reverse=True)
|
||||
|
||||
if len(versions) > 0:
|
||||
# upgrade to maximum version
|
||||
targets = []
|
||||
cur = versions[0]
|
||||
if ocp is not None and StrictVersion(ocp) != cur:
|
||||
targets.append('opencv-contrib-python')
|
||||
if ocph is not None and StrictVersion(ocph) != cur:
|
||||
targets.append('opencv-contrib-python-headless')
|
||||
if op is not None and StrictVersion(op) != cur:
|
||||
targets.append('opencv-python')
|
||||
if oph is not None and StrictVersion(oph) != cur:
|
||||
targets.append('opencv-python-headless')
|
||||
|
||||
if len(targets) > 0:
|
||||
for x in targets:
|
||||
cmd = [sys.executable, '-m', 'pip', 'install', f"{x}=={versions[0].version_string}"]
|
||||
subprocess.check_output(cmd, universal_newlines=True)
|
||||
|
||||
print(f"[manager-core] 'opencv' dependencies were fixed: {targets}")
|
||||
except Exception as e:
|
||||
print(f"[manager-core] Failed to restore opencv")
|
||||
print(e)
|
||||
|
||||
# fix numpy
|
||||
try:
|
||||
np = new_pip_versions.get('numpy')
|
||||
if np is not None:
|
||||
if StrictVersion(np) >= StrictVersion('2'):
|
||||
subprocess.check_output([sys.executable, '-m', 'pip', 'install', f"numpy<2"], universal_newlines=True)
|
||||
except Exception as e:
|
||||
print(f"[manager-core] Failed to restore numpy")
|
||||
print(e)
|
||||
|
||||
@@ -1276,15 +1276,6 @@ class ManagerMenuDialog extends ComfyDialog {
|
||||
modifyButtonStyle(url);
|
||||
},
|
||||
},
|
||||
{
|
||||
title: "Open 'flowt.ai'",
|
||||
callback: () => {
|
||||
const url = "https://flowt.ai/";
|
||||
localStorage.setItem("wg_last_visited", url);
|
||||
window.open(url, url);
|
||||
modifyButtonStyle(url);
|
||||
},
|
||||
},
|
||||
{
|
||||
title: "Open 'esheep'",
|
||||
callback: () => {
|
||||
|
||||
@@ -12,6 +12,10 @@ export async function sleep(ms) {
|
||||
}
|
||||
|
||||
export function rebootAPI() {
|
||||
if ('electronAPI' in window) {
|
||||
window.electronAPI.restartApp();
|
||||
return true;
|
||||
}
|
||||
if (confirm("Are you sure you'd like to reboot the server?")) {
|
||||
try {
|
||||
api.fetchApi("/manager/reboot");
|
||||
@@ -237,4 +241,4 @@ export const icons = {
|
||||
conflicts: '<svg viewBox="0 0 400 400" width="100%" height="100%" pointer-events="none" xmlns="http://www.w3.org/2000/svg"><path fill="currentColor" d="m397.2 350.4.2-.2-180-320-.2.2C213.8 24.2 207.4 20 200 20s-13.8 4.2-17.2 10.4l-.2-.2-180 320 .2.2c-1.6 2.8-2.8 6-2.8 9.6 0 11 9 20 20 20h360c11 0 20-9 20-20 0-3.6-1.2-6.8-2.8-9.6M220 340h-40v-40h40zm0-60h-40V120h40z"/></svg>',
|
||||
passed: '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 426.667 426.667"><path fill="#6AC259" d="M213.333,0C95.518,0,0,95.514,0,213.333s95.518,213.333,213.333,213.333c117.828,0,213.333-95.514,213.333-213.333S331.157,0,213.333,0z M174.199,322.918l-93.935-93.931l31.309-31.309l62.626,62.622l140.894-140.898l31.309,31.309L174.199,322.918z"/></svg>',
|
||||
download: '<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" width="100%" height="100%" viewBox="0 0 32 32"><path fill="currentColor" d="M26 24v4H6v-4H4v4a2 2 0 0 0 2 2h20a2 2 0 0 0 2-2v-4zm0-10l-1.41-1.41L17 20.17V2h-2v18.17l-7.59-7.58L6 14l10 10l10-10z"></path></svg>'
|
||||
}
|
||||
}
|
||||
|
||||
279
model-list.json
279
model-list.json
@@ -312,7 +312,7 @@
|
||||
"name": "negative_hand Negative Embedding",
|
||||
"type": "embeddings",
|
||||
"base": "SD1.5",
|
||||
"save_path": "default",
|
||||
"save_path": "embeddings/SD1.5",
|
||||
"description": "If you use this embedding with negatives, you can solve the issue of damaging your hands.",
|
||||
"reference": "https://civitai.com/models/56519/negativehand-negative-embedding",
|
||||
"filename": "negative_hand-neg.pt",
|
||||
@@ -323,7 +323,7 @@
|
||||
"name": "bad_prompt Negative Embedding",
|
||||
"type": "embeddings",
|
||||
"base": "SD1.5",
|
||||
"save_path": "default",
|
||||
"save_path": "embeddings/SD1.5",
|
||||
"description": "The idea behind this embedding was to somehow train the negative prompt as an embedding, thus unifying the basis of the negative prompt into one word or embedding.",
|
||||
"reference": "https://civitai.com/models/55700/badprompt-negative-embedding",
|
||||
"filename": "bad_prompt_version2-neg.pt",
|
||||
@@ -334,7 +334,7 @@
|
||||
"name": "Deep Negative V1.75",
|
||||
"type": "embeddings",
|
||||
"base": "SD1.5",
|
||||
"save_path": "default",
|
||||
"save_path": "embeddings/SD1.5",
|
||||
"description": "These embedding learn what disgusting compositions and color patterns are, including faulty human anatomy, offensive color schemes, upside-down spatial structures, and more. Placing it in the negative can go a long way to avoiding these things.",
|
||||
"reference": "https://civitai.com/models/4629/deep-negative-v1x",
|
||||
"filename": "ng_deepnegative_v1_75t.pt",
|
||||
@@ -345,7 +345,7 @@
|
||||
"name": "EasyNegative",
|
||||
"type": "embeddings",
|
||||
"base": "SD1.5",
|
||||
"save_path": "default",
|
||||
"save_path": "embeddings/SD1.5",
|
||||
"description": "This embedding should be used in your NEGATIVE prompt. Adjust the strength as desired (seems to scale well without any distortions), the strength required may vary based on positive and negative prompts.",
|
||||
"reference": "https://civitai.com/models/7808/easynegative",
|
||||
"filename": "easynegative.safetensors",
|
||||
@@ -521,7 +521,7 @@
|
||||
"name": "sd_xl_base_1.0_0.9vae.safetensors",
|
||||
"type": "checkpoint",
|
||||
"base": "SDXL",
|
||||
"save_path": "default",
|
||||
"save_path": "checkpoints/SDXL",
|
||||
"description": "Stable Diffusion XL base model (VAE 0.9)",
|
||||
"reference": "https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0",
|
||||
"filename": "sd_xl_base_1.0_0.9vae.safetensors",
|
||||
@@ -532,7 +532,7 @@
|
||||
"name": "sd_xl_base_1.0.safetensors",
|
||||
"type": "checkpoint",
|
||||
"base": "SDXL",
|
||||
"save_path": "default",
|
||||
"save_path": "checkpoints/SDXL",
|
||||
"description": "Stable Diffusion XL base model",
|
||||
"reference": "https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0",
|
||||
"filename": "sd_xl_base_1.0.safetensors",
|
||||
@@ -543,7 +543,7 @@
|
||||
"name": "sd_xl_refiner_1.0_0.9vae.safetensors",
|
||||
"type": "checkpoint",
|
||||
"base": "SDXL",
|
||||
"save_path": "default",
|
||||
"save_path": "checkpoints/SDXL",
|
||||
"description": "Stable Diffusion XL refiner model (VAE 0.9)",
|
||||
"reference": "https://huggingface.co/stabilityai/stable-diffusion-xl-refiner-1.0",
|
||||
"filename": "sd_xl_refiner_1.0_0.9vae.safetensors",
|
||||
@@ -554,7 +554,7 @@
|
||||
"name": "stable-diffusion-xl-refiner-1.0",
|
||||
"type": "checkpoint",
|
||||
"base": "SDXL",
|
||||
"save_path": "default",
|
||||
"save_path": "checkpoints/SDXL",
|
||||
"description": "Stable Diffusion XL refiner model",
|
||||
"reference": "https://huggingface.co/stabilityai/stable-diffusion-xl-refiner-1.0",
|
||||
"filename": "sd_xl_refiner_1.0.safetensors",
|
||||
@@ -587,7 +587,7 @@
|
||||
"name": "sd_xl_offset_example-lora_1.0.safetensors",
|
||||
"type": "lora",
|
||||
"base": "SDXL",
|
||||
"save_path": "default",
|
||||
"save_path": "loras/SDXL",
|
||||
"description": "Stable Diffusion XL offset LoRA",
|
||||
"reference": "https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0",
|
||||
"filename": "sd_xl_offset_example-lora_1.0.safetensors",
|
||||
@@ -843,6 +843,40 @@
|
||||
"size": "472MB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "comfyanonymous/flux_text_encoders - t5xxl (fp16)",
|
||||
"type": "clip",
|
||||
"base": "t5",
|
||||
"save_path": "text_encoders/t5",
|
||||
"description": "Text Encoders for FLUX (fp16)",
|
||||
"reference": "https://huggingface.co/comfyanonymous/flux_text_encoders",
|
||||
"filename": "t5xxl_fp16.safetensors",
|
||||
"url": "https://huggingface.co/comfyanonymous/flux_text_encoders/resolve/main/t5xxl_fp16.safetensors",
|
||||
"size": "9.79GB"
|
||||
},
|
||||
{
|
||||
"name": "comfyanonymous/flux_text_encoders - t5xxl (fp8_e4m3fn)",
|
||||
"type": "clip",
|
||||
"base": "t5",
|
||||
"save_path": "text_encoders/t5",
|
||||
"description": "Text Encoders for FLUX (fp8_e4m3fn)",
|
||||
"reference": "https://huggingface.co/comfyanonymous/flux_text_encoders",
|
||||
"filename": "t5xxl_fp8_e4m3fn.safetensors",
|
||||
"url": "https://huggingface.co/comfyanonymous/flux_text_encoders/resolve/main/t5xxl_fp8_e4m3fn.safetensors",
|
||||
"size": "4.89GB"
|
||||
},
|
||||
{
|
||||
"name": "comfyanonymous/flux_text_encoders - t5xxl (fp8_e4m3fn_scaled)",
|
||||
"type": "clip",
|
||||
"base": "t5",
|
||||
"save_path": "text_encoders/t5",
|
||||
"description": "Text Encoders for FLUX (fp16)",
|
||||
"reference": "https://huggingface.co/comfyanonymous/flux_text_encoders",
|
||||
"filename": "t5xxl_fp8_e4m3fn_scaled.safetensors",
|
||||
"url": "https://huggingface.co/comfyanonymous/flux_text_encoders/resolve/main/t5xxl_fp8_e4m3fn_scaled.safetensors",
|
||||
"size": "5.16GB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "google-t5/t5-base",
|
||||
"type": "clip",
|
||||
@@ -854,7 +888,6 @@
|
||||
"url": "https://huggingface.co/google-t5/t5-base/resolve/main/model.safetensors",
|
||||
"size": "892MB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "google-t5/t5-v1_1-xxl_encoderonly-fp16",
|
||||
"type": "clip",
|
||||
@@ -1018,7 +1051,7 @@
|
||||
"name": "v1-5-pruned-emaonly.ckpt",
|
||||
"type": "checkpoint",
|
||||
"base": "SD1.5",
|
||||
"save_path": "default",
|
||||
"save_path": "checkpoints/SD1.5",
|
||||
"description": "Stable Diffusion 1.5 base model",
|
||||
"reference": "https://huggingface.co/runwayml/stable-diffusion-v1-5",
|
||||
"filename": "v1-5-pruned-emaonly.ckpt",
|
||||
@@ -1029,7 +1062,7 @@
|
||||
"name": "v2-1_512-ema-pruned.safetensors",
|
||||
"type": "checkpoint",
|
||||
"base": "SD2",
|
||||
"save_path": "default",
|
||||
"save_path": "checkpoints/SD2.1",
|
||||
"description": "Stable Diffusion 2 base model (512)",
|
||||
"reference": "https://huggingface.co/stabilityai/stable-diffusion-2-1-base",
|
||||
"filename": "v2-1_512-ema-pruned.safetensors",
|
||||
@@ -1040,7 +1073,7 @@
|
||||
"name": "v2-1_768-ema-pruned.safetensors",
|
||||
"type": "checkpoint",
|
||||
"base": "SD2",
|
||||
"save_path": "default",
|
||||
"save_path": "checkpoints/SD2.1",
|
||||
"description": "Stable Diffusion 2 base model (768)",
|
||||
"reference": "https://huggingface.co/stabilityai/stable-diffusion-2-1",
|
||||
"filename": "v2-1_768-ema-pruned.safetensors",
|
||||
@@ -1051,7 +1084,7 @@
|
||||
"name": "AbyssOrangeMix2 (hard)",
|
||||
"type": "checkpoint",
|
||||
"base": "SD1.5",
|
||||
"save_path": "default",
|
||||
"save_path": "checkpoints/SD1.5",
|
||||
"description": "AbyssOrangeMix2 - hard version (anime style)",
|
||||
"reference": "https://huggingface.co/WarriorMama777/OrangeMixs",
|
||||
"filename": "AbyssOrangeMix2_hard.safetensors",
|
||||
@@ -1062,7 +1095,7 @@
|
||||
"name": "AbyssOrangeMix3 A1",
|
||||
"type": "checkpoint",
|
||||
"base": "SD1.5",
|
||||
"save_path": "default",
|
||||
"save_path": "checkpoints/SD1.5",
|
||||
"description": "AbyssOrangeMix3 - A1 (anime style)",
|
||||
"reference": "https://huggingface.co/WarriorMama777/OrangeMixs",
|
||||
"filename": "AOM3A1_orangemixs.safetensors",
|
||||
@@ -1073,7 +1106,7 @@
|
||||
"name": "AbyssOrangeMix3 A3",
|
||||
"type": "checkpoint",
|
||||
"base": "SD1.5",
|
||||
"save_path": "default",
|
||||
"save_path": "checkpoints/SD1.5",
|
||||
"description": "AbyssOrangeMix - A3 (anime style)",
|
||||
"reference": "https://huggingface.co/WarriorMama777/OrangeMixs",
|
||||
"filename": "AOM3A3_orangemixs.safetensors",
|
||||
@@ -1084,7 +1117,7 @@
|
||||
"name": "Waifu Diffusion 1.5 Beta3 (fp16)",
|
||||
"type": "checkpoint",
|
||||
"base": "SD2.1",
|
||||
"save_path": "default",
|
||||
"save_path": "checkpoints/SD2.1",
|
||||
"description": "Waifu Diffusion 1.5 Beta3",
|
||||
"reference": "https://huggingface.co/waifu-diffusion/wd-1-5-beta3",
|
||||
"filename": "wd-illusion-fp16.safetensors",
|
||||
@@ -1095,7 +1128,7 @@
|
||||
"name": "illuminatiDiffusionV1_v11 unCLIP model",
|
||||
"type": "unclip",
|
||||
"base": "SD2.1",
|
||||
"save_path": "default",
|
||||
"save_path": "checkpoints/SD2.1",
|
||||
"description": "Mix model (SD2.1 unCLIP + illuminatiDiffusionV1_v11)",
|
||||
"reference": "https://huggingface.co/comfyanonymous/illuminatiDiffusionV1_v11_unCLIP",
|
||||
"filename": "illuminatiDiffusionV1_v11-unclip-h-fp16.safetensors",
|
||||
@@ -1106,7 +1139,7 @@
|
||||
"name": "Waifu Diffusion 1.5 unCLIP model",
|
||||
"type": "unclip",
|
||||
"base": "SD2.1",
|
||||
"save_path": "default",
|
||||
"save_path": "checkpoints/SD2.1",
|
||||
"description": "Mix model (SD2.1 unCLIP + Waifu Diffusion 1.5)",
|
||||
"reference": "https://huggingface.co/comfyanonymous/wd-1.5-beta2_unCLIP",
|
||||
"filename": "wd-1-5-beta2-aesthetic-unclip-h-fp16.safetensors",
|
||||
@@ -1116,8 +1149,8 @@
|
||||
{
|
||||
"name": "sdxl_vae.safetensors",
|
||||
"type": "VAE",
|
||||
"base": "SDXL VAE",
|
||||
"save_path": "default",
|
||||
"base": "SDXL",
|
||||
"save_path": "vae/SDXL",
|
||||
"description": "SDXL-VAE",
|
||||
"reference": "https://huggingface.co/stabilityai/sdxl-vae",
|
||||
"filename": "sdxl_vae.safetensors",
|
||||
@@ -1127,8 +1160,8 @@
|
||||
{
|
||||
"name": "vae-ft-mse-840000-ema-pruned",
|
||||
"type": "VAE",
|
||||
"base": "SD1.5 VAE",
|
||||
"save_path": "default",
|
||||
"base": "SD1.5",
|
||||
"save_path": "vae/SD1.5",
|
||||
"description": "vae-ft-mse-840000-ema-pruned",
|
||||
"reference": "https://huggingface.co/stabilityai/sd-vae-ft-mse-original",
|
||||
"filename": "vae-ft-mse-840000-ema-pruned.safetensors",
|
||||
@@ -1138,8 +1171,8 @@
|
||||
{
|
||||
"name": "orangemix.vae",
|
||||
"type": "VAE",
|
||||
"base": "SD1.5 VAE",
|
||||
"save_path": "default",
|
||||
"base": "SD1.5",
|
||||
"save_path": "vae/SD1.5",
|
||||
"description": "orangemix vae model",
|
||||
"reference": "https://huggingface.co/WarriorMama777/OrangeMixs",
|
||||
"filename": "orangemix.vae.pt",
|
||||
@@ -1149,8 +1182,8 @@
|
||||
{
|
||||
"name": "kl-f8-anime2",
|
||||
"type": "VAE",
|
||||
"base": "SD2.1 VAE",
|
||||
"save_path": "default",
|
||||
"base": "SD2.1",
|
||||
"save_path": "vae/SD2.1",
|
||||
"description": "kl-f8-anime2 vae model",
|
||||
"reference": "https://huggingface.co/hakurei/waifu-diffusion-v1-4",
|
||||
"filename": "kl-f8-anime2.ckpt",
|
||||
@@ -1160,8 +1193,8 @@
|
||||
{
|
||||
"name": "OpenAI Consistency Decoder",
|
||||
"type": "VAE",
|
||||
"base": "SD1.5 VAE",
|
||||
"save_path": "vae/openai_consistency_decoder",
|
||||
"base": "SD1.5",
|
||||
"save_path": "vae/SD1.5/openai_consistency_decoder",
|
||||
"description": "OpenAI Consistency Decoder. Improved decoding for stable diffusion vaes.",
|
||||
"reference": "https://github.com/openai/consistencydecoder",
|
||||
"filename": "decoder.pt",
|
||||
@@ -1172,7 +1205,7 @@
|
||||
"name": "LCM LoRA SD1.5",
|
||||
"type": "lora",
|
||||
"base": "SD1.5",
|
||||
"save_path": "loras/lcm/SD1.5",
|
||||
"save_path": "loras/SD1.5/lcm",
|
||||
"description": "Latent Consistency LoRA for SD1.5",
|
||||
"reference": "https://huggingface.co/latent-consistency/lcm-lora-sdv1-5",
|
||||
"filename": "pytorch_lora_weights.safetensors",
|
||||
@@ -1183,7 +1216,7 @@
|
||||
"name": "LCM LoRA SSD-1B",
|
||||
"type": "lora",
|
||||
"base": "SSD-1B",
|
||||
"save_path": "loras/lcm/SSD-1B",
|
||||
"save_path": "loras/SSD-1B/lcm",
|
||||
"description": "Latent Consistency LoRA for SSD-1B",
|
||||
"reference": "https://huggingface.co/latent-consistency/lcm-lora-ssd-1b",
|
||||
"filename": "pytorch_lora_weights.safetensors",
|
||||
@@ -1194,7 +1227,7 @@
|
||||
"name": "LCM LoRA SDXL",
|
||||
"type": "lora",
|
||||
"base": "SDXL",
|
||||
"save_path": "loras/lcm/SDXL",
|
||||
"save_path": "loras/SDXL/lcm",
|
||||
"description": "Latent Consistency LoRA for SDXL",
|
||||
"reference": "https://huggingface.co/latent-consistency/lcm-lora-sdxl",
|
||||
"filename": "pytorch_lora_weights.safetensors",
|
||||
@@ -1227,7 +1260,7 @@
|
||||
"name": "Theovercomer8's Contrast Fix (SD2.1)",
|
||||
"type": "lora",
|
||||
"base": "SD2.1",
|
||||
"save_path": "default",
|
||||
"save_path": "loras/SD2.1",
|
||||
"description": "LORA: Theovercomer8's Contrast Fix (SD2.1)",
|
||||
"reference": "https://civitai.com/models/8765/theovercomer8s-contrast-fix-sd15sd21-768",
|
||||
"filename": "theovercomer8sContrastFix_sd21768.safetensors",
|
||||
@@ -1238,7 +1271,7 @@
|
||||
"name": "Theovercomer8's Contrast Fix (SD1.5)",
|
||||
"type": "lora",
|
||||
"base": "SD1.5",
|
||||
"save_path": "default",
|
||||
"save_path": "loras/SD1.5",
|
||||
"description": "LORA: Theovercomer8's Contrast Fix (SD1.5)",
|
||||
"reference": "https://civitai.com/models/8765/theovercomer8s-contrast-fix-sd15sd21-768",
|
||||
"filename": "theovercomer8sContrastFix_sd15.safetensors",
|
||||
@@ -1249,7 +1282,7 @@
|
||||
"name": "T2I-Adapter (depth)",
|
||||
"type": "T2I-Adapter",
|
||||
"base": "SD1.5",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/SD1.5",
|
||||
"description": "ControlNet T2I-Adapter for depth",
|
||||
"reference": "https://huggingface.co/TencentARC/T2I-Adapter",
|
||||
"filename": "t2iadapter_depth_sd14v1.pth",
|
||||
@@ -1260,7 +1293,7 @@
|
||||
"name": "T2I-Adapter (seg)",
|
||||
"type": "T2I-Adapter",
|
||||
"base": "SD1.5",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/SD1.5",
|
||||
"description": "ControlNet T2I-Adapter for seg",
|
||||
"reference": "https://huggingface.co/TencentARC/T2I-Adapter",
|
||||
"filename": "t2iadapter_seg_sd14v1.pth",
|
||||
@@ -1271,7 +1304,7 @@
|
||||
"name": "T2I-Adapter (sketch)",
|
||||
"type": "T2I-Adapter",
|
||||
"base": "SD1.5",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/SD1.5",
|
||||
"description": "ControlNet T2I-Adapter for sketch",
|
||||
"reference": "https://huggingface.co/TencentARC/T2I-Adapter",
|
||||
"filename": "t2iadapter_sketch_sd14v1.pth",
|
||||
@@ -1282,7 +1315,7 @@
|
||||
"name": "T2I-Adapter (keypose)",
|
||||
"type": "T2I-Adapter",
|
||||
"base": "SD1.5",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/SD1.5",
|
||||
"description": "ControlNet T2I-Adapter for keypose",
|
||||
"reference": "https://huggingface.co/TencentARC/T2I-Adapter",
|
||||
"filename": "t2iadapter_keypose_sd14v1.pth",
|
||||
@@ -1293,7 +1326,7 @@
|
||||
"name": "T2I-Adapter (openpose)",
|
||||
"type": "T2I-Adapter",
|
||||
"base": "SD1.5",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/SD1.5",
|
||||
"description": "ControlNet T2I-Adapter for openpose",
|
||||
"reference": "https://huggingface.co/TencentARC/T2I-Adapter",
|
||||
"filename": "t2iadapter_openpose_sd14v1.pth",
|
||||
@@ -1304,7 +1337,7 @@
|
||||
"name": "T2I-Adapter (color)",
|
||||
"type": "T2I-Adapter",
|
||||
"base": "SD1.5",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/SD1.5",
|
||||
"description": "ControlNet T2I-Adapter for color",
|
||||
"reference": "https://huggingface.co/TencentARC/T2I-Adapter",
|
||||
"filename": "t2iadapter_color_sd14v1.pth",
|
||||
@@ -1315,7 +1348,7 @@
|
||||
"name": "T2I-Adapter (canny)",
|
||||
"type": "T2I-Adapter",
|
||||
"base": "SD1.5",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/SD1.5",
|
||||
"description": "ControlNet T2I-Adapter for canny",
|
||||
"reference": "https://huggingface.co/TencentARC/T2I-Adapter",
|
||||
"filename": "t2iadapter_canny_sd14v1.pth",
|
||||
@@ -1326,7 +1359,7 @@
|
||||
"name": "T2I-Style model",
|
||||
"type": "T2I-Style",
|
||||
"base": "SD1.5",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/SD1.5",
|
||||
"description": "ControlNet T2I-Adapter style model. Need to download CLIPVision model.",
|
||||
"reference": "https://huggingface.co/TencentARC/T2I-Adapter",
|
||||
"filename": "t2iadapter_style_sd14v1.pth",
|
||||
@@ -1337,7 +1370,7 @@
|
||||
"name": "T2I-Adapter XL (lineart) FP16",
|
||||
"type": "T2I-Adapter",
|
||||
"base": "SDXL",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/SDXL",
|
||||
"description": "ControlNet T2I-Adapter XL for lineart",
|
||||
"reference": "https://huggingface.co/TencentARC/t2i-adapter-lineart-sdxl-1.0",
|
||||
"filename": "t2i-adapter-lineart-sdxl-1.0.fp16.safetensors",
|
||||
@@ -1348,7 +1381,7 @@
|
||||
"name": "T2I-Adapter XL (canny) FP16",
|
||||
"type": "T2I-Adapter",
|
||||
"base": "SDXL",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/SDXL",
|
||||
"description": "ControlNet T2I-Adapter XL for canny",
|
||||
"reference": "https://huggingface.co/TencentARC/t2i-adapter-canny-sdxl-1.0",
|
||||
"filename": "t2i-adapter-canny-sdxl-1.0.fp16.safetensors",
|
||||
@@ -1359,7 +1392,7 @@
|
||||
"name": "T2I-Adapter XL (depth-zoe) FP16",
|
||||
"type": "T2I-Adapter",
|
||||
"base": "SDXL",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/SDXL",
|
||||
"description": "ControlNet T2I-Adapter XL for depth-zoe",
|
||||
"reference": "https://huggingface.co/TencentARC/t2i-adapter-depth-zoe-sdxl-1.0",
|
||||
"filename": "t2i-adapter-depth-zoe-sdxl-1.0.fp16.safetensors",
|
||||
@@ -1370,7 +1403,7 @@
|
||||
"name": "T2I-Adapter XL (depth-midas) FP16",
|
||||
"type": "T2I-Adapter",
|
||||
"base": "SDXL",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/SDXL",
|
||||
"description": "ControlNet T2I-Adapter XL for depth-midas",
|
||||
"reference": "https://huggingface.co/TencentARC/t2i-adapter-depth-midas-sdxl-1.0",
|
||||
"filename": "t2i-adapter-depth-midas-sdxl-1.0.fp16.safetensors",
|
||||
@@ -1381,7 +1414,7 @@
|
||||
"name": "T2I-Adapter XL (sketch) FP16",
|
||||
"type": "T2I-Adapter",
|
||||
"base": "SDXL",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/SDXL",
|
||||
"description": "ControlNet T2I-Adapter XL for sketch",
|
||||
"reference": "https://huggingface.co/TencentARC/t2i-adapter-sketch-sdxl-1.0",
|
||||
"filename": "t2i-adapter-sketch-sdxl-1.0.fp16.safetensors",
|
||||
@@ -1392,7 +1425,7 @@
|
||||
"name": "T2I-Adapter XL (lineart)",
|
||||
"type": "T2I-Adapter",
|
||||
"base": "SDXL",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/SDXL",
|
||||
"description": "ControlNet T2I-Adapter XL for lineart",
|
||||
"reference": "https://huggingface.co/TencentARC/t2i-adapter-lineart-sdxl-1.0",
|
||||
"filename": "t2i-adapter-lineart-sdxl-1.0.safetensors",
|
||||
@@ -1403,7 +1436,7 @@
|
||||
"name": "T2I-Adapter XL (canny)",
|
||||
"type": "T2I-Adapter",
|
||||
"base": "SDXL",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/SDXL",
|
||||
"description": "ControlNet T2I-Adapter XL for canny",
|
||||
"reference": "https://huggingface.co/TencentARC/t2i-adapter-canny-sdxl-1.0",
|
||||
"filename": "t2i-adapter-canny-sdxl-1.0.safetensors",
|
||||
@@ -1414,7 +1447,7 @@
|
||||
"name": "T2I-Adapter XL (depth-zoe)",
|
||||
"type": "T2I-Adapter",
|
||||
"base": "SDXL",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/SDXL",
|
||||
"description": "ControlNet T2I-Adapter XL for depth-zoe",
|
||||
"reference": "https://huggingface.co/TencentARC/t2i-adapter-depth-zoe-sdxl-1.0",
|
||||
"filename": "t2i-adapter-depth-zoe-sdxl-1.0.safetensors",
|
||||
@@ -1425,7 +1458,7 @@
|
||||
"name": "T2I-Adapter XL (depth-midas)",
|
||||
"type": "T2I-Adapter",
|
||||
"base": "SDXL",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/SDXL",
|
||||
"description": "ControlNet T2I-Adapter XL for depth-midas",
|
||||
"reference": "https://huggingface.co/TencentARC/t2i-adapter-depth-midas-sdxl-1.0",
|
||||
"filename": "t2i-adapter-depth-midas-sdxl-1.0.safetensors",
|
||||
@@ -1436,7 +1469,7 @@
|
||||
"name": "T2I-Adapter XL (sketch)",
|
||||
"type": "T2I-Adapter",
|
||||
"base": "SDXL",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/SDXL",
|
||||
"description": "ControlNet T2I-Adapter XL for sketch",
|
||||
"reference": "https://huggingface.co/TencentARC/t2i-adapter-sketch-sdxl-1.0",
|
||||
"filename": "t2i-adapter-sketch-sdxl-1.0.safetensors",
|
||||
@@ -1447,7 +1480,7 @@
|
||||
"name": "T2I-Adapter XL (openpose)",
|
||||
"type": "T2I-Adapter",
|
||||
"base": "SDXL",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/SDXL",
|
||||
"description": "ControlNet T2I-Adapter XL for openpose",
|
||||
"reference": "https://huggingface.co/TencentARC/t2i-adapter-openpose-sdxl-1.0",
|
||||
"filename": "t2i-adapter-openpose-sdxl-1.0.safetensors",
|
||||
@@ -1458,7 +1491,7 @@
|
||||
"name": "CiaraRowles/TemporalNet2",
|
||||
"type": "controlnet",
|
||||
"base": "SD1.5",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/SD1.5",
|
||||
"description": "TemporalNet was a ControlNet model designed to enhance the temporal consistency of generated outputs",
|
||||
"reference": "https://huggingface.co/CiaraRowles/TemporalNet2",
|
||||
"filename": "temporalnetversion2.safetensors",
|
||||
@@ -1468,14 +1501,27 @@
|
||||
{
|
||||
"name": "CiaraRowles/TemporalNet1XL (1.0)",
|
||||
"type": "controlnet",
|
||||
"base": "SD1.5",
|
||||
"save_path": "controlnet/TemporalNet1XL",
|
||||
"base": "SDXL",
|
||||
"save_path": "controlnet/SDXL/TemporalNet1XL",
|
||||
"description": "This is TemporalNet1XL, it is a re-train of the controlnet TemporalNet1 with Stable Diffusion XL.",
|
||||
"reference": "https://huggingface.co/CiaraRowles/controlnet-temporalnet-sdxl-1.0",
|
||||
"filename": "diffusion_pytorch_model.safetensors",
|
||||
"url": "https://huggingface.co/CiaraRowles/controlnet-temporalnet-sdxl-1.0/resolve/main/diffusion_pytorch_model.safetensors",
|
||||
"size": "5.00GB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "Comfy-Org/sigclip_vision_384 (patch14_384)",
|
||||
"type": "clip_vision",
|
||||
"base": "sigclip",
|
||||
"save_path": "clip_vision",
|
||||
"description": "This clip vision model is required for FLUX.1 Redux.",
|
||||
"reference": "https://huggingface.co/Comfy-Org/sigclip_vision_384/tree/main",
|
||||
"filename": "sigclip_vision_patch14_384.safetensors",
|
||||
"url": "https://huggingface.co/Comfy-Org/sigclip_vision_384/resolve/main/sigclip_vision_patch14_384.safetensors",
|
||||
"size": "857MB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "CLIPVision model (stabilityai/clip_vision_g)",
|
||||
"type": "clip_vision",
|
||||
@@ -1535,7 +1581,7 @@
|
||||
"name": "stabilityai/control-lora-canny-rank128.safetensors",
|
||||
"type": "controlnet",
|
||||
"base": "SDXL",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/SDXL",
|
||||
"description": "Control-LoRA: canny rank128",
|
||||
"reference": "https://huggingface.co/stabilityai/control-lora",
|
||||
"filename": "control-lora-canny-rank128.safetensors",
|
||||
@@ -1546,7 +1592,7 @@
|
||||
"name": "stabilityai/control-lora-depth-rank128.safetensors",
|
||||
"type": "controlnet",
|
||||
"base": "SDXL",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/SDXL",
|
||||
"description": "Control-LoRA: depth rank128",
|
||||
"reference": "https://huggingface.co/stabilityai/control-lora",
|
||||
"filename": "control-lora-depth-rank128.safetensors",
|
||||
@@ -1557,7 +1603,7 @@
|
||||
"name": "stabilityai/control-lora-recolor-rank128.safetensors",
|
||||
"type": "controlnet",
|
||||
"base": "SDXL",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/SDXL",
|
||||
"description": "Control-LoRA: recolor rank128",
|
||||
"reference": "https://huggingface.co/stabilityai/control-lora",
|
||||
"filename": "control-lora-recolor-rank128.safetensors",
|
||||
@@ -1568,7 +1614,7 @@
|
||||
"name": "stabilityai/control-lora-sketch-rank128-metadata.safetensors",
|
||||
"type": "controlnet",
|
||||
"base": "SDXL",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/SDXL",
|
||||
"description": "Control-LoRA: sketch rank128 metadata",
|
||||
"reference": "https://huggingface.co/stabilityai/control-lora",
|
||||
"filename": "control-lora-sketch-rank128-metadata.safetensors",
|
||||
@@ -1579,7 +1625,7 @@
|
||||
"name": "stabilityai/control-lora-canny-rank256.safetensors",
|
||||
"type": "controlnet",
|
||||
"base": "SDXL",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/SDXL",
|
||||
"description": "Control-LoRA: canny rank256",
|
||||
"reference": "https://huggingface.co/stabilityai/control-lora",
|
||||
"filename": "control-lora-canny-rank256.safetensors",
|
||||
@@ -1590,7 +1636,7 @@
|
||||
"name": "stabilityai/control-lora-depth-rank256.safetensors",
|
||||
"type": "controlnet",
|
||||
"base": "SDXL",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/SDXL",
|
||||
"description": "Control-LoRA: depth rank256",
|
||||
"reference": "https://huggingface.co/stabilityai/control-lora",
|
||||
"filename": "control-lora-depth-rank256.safetensors",
|
||||
@@ -1601,7 +1647,7 @@
|
||||
"name": "stabilityai/control-lora-recolor-rank256.safetensors",
|
||||
"type": "controlnet",
|
||||
"base": "SDXL",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/SDXL",
|
||||
"description": "Control-LoRA: recolor rank256",
|
||||
"reference": "https://huggingface.co/stabilityai/control-lora",
|
||||
"filename": "control-lora-recolor-rank256.safetensors",
|
||||
@@ -1612,7 +1658,7 @@
|
||||
"name": "stabilityai/control-lora-sketch-rank256.safetensors",
|
||||
"type": "controlnet",
|
||||
"base": "SDXL",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/SDXL",
|
||||
"description": "Control-LoRA: sketch rank256",
|
||||
"reference": "https://huggingface.co/stabilityai/control-lora",
|
||||
"filename": "control-lora-sketch-rank256.safetensors",
|
||||
@@ -1634,7 +1680,7 @@
|
||||
"name": "SDXL-controlnet: OpenPose (v2)",
|
||||
"type": "controlnet",
|
||||
"base": "SDXL",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/SDXL",
|
||||
"description": "ControlNet openpose model for SDXL",
|
||||
"reference": "https://huggingface.co/thibaud/controlnet-openpose-sdxl-1.0",
|
||||
"filename": "OpenPoseXL2.safetensors",
|
||||
@@ -1645,7 +1691,7 @@
|
||||
"name": "controlnet-SargeZT/controlnet-sd-xl-1.0-softedge-dexined",
|
||||
"type": "controlnet",
|
||||
"base": "SDXL",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/SDXL",
|
||||
"description": "ControlNet softedge model for SDXL",
|
||||
"reference": "https://huggingface.co/SargeZT/controlnet-sd-xl-1.0-softedge-dexined",
|
||||
"filename": "controlnet-sd-xl-1.0-softedge-dexined.safetensors",
|
||||
@@ -1656,7 +1702,7 @@
|
||||
"name": "controlnet-SargeZT/controlnet-sd-xl-1.0-depth-16bit-zoe",
|
||||
"type": "controlnet",
|
||||
"base": "SDXL",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/SDXL",
|
||||
"description": "ControlNet depth-zoe model for SDXL",
|
||||
"reference": "https://huggingface.co/SargeZT/controlnet-sd-xl-1.0-depth-16bit-zoe",
|
||||
"filename": "depth-zoe-xl-v1.0-controlnet.safetensors",
|
||||
@@ -1667,7 +1713,7 @@
|
||||
"name": "ControlNet-v1-1 (ip2p; fp16)",
|
||||
"type": "controlnet",
|
||||
"base": "SD1.5",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/1.5",
|
||||
"description": "Safetensors/FP16 versions of the new ControlNet-v1-1 checkpoints (ip2p)",
|
||||
"reference": "https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors",
|
||||
"filename": "control_v11e_sd15_ip2p_fp16.safetensors",
|
||||
@@ -1678,7 +1724,7 @@
|
||||
"name": "ControlNet-v1-1 (shuffle; fp16)",
|
||||
"type": "controlnet",
|
||||
"base": "SD1.5",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/1.5",
|
||||
"description": "Safetensors/FP16 versions of the new ControlNet-v1-1 checkpoints (shuffle)",
|
||||
"reference": "https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors",
|
||||
"filename": "control_v11e_sd15_shuffle_fp16.safetensors",
|
||||
@@ -1689,7 +1735,7 @@
|
||||
"name": "ControlNet-v1-1 (canny; fp16)",
|
||||
"type": "controlnet",
|
||||
"base": "SD1.5",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/1.5",
|
||||
"description": "Safetensors/FP16 versions of the new ControlNet-v1-1 checkpoints (canny)",
|
||||
"reference": "https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors",
|
||||
"filename": "control_v11p_sd15_canny_fp16.safetensors",
|
||||
@@ -1700,7 +1746,7 @@
|
||||
"name": "ControlNet-v1-1 (depth; fp16)",
|
||||
"type": "controlnet",
|
||||
"base": "SD1.5",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/1.5",
|
||||
"description": "Safetensors/FP16 versions of the new ControlNet-v1-1 checkpoints (depth)",
|
||||
"reference": "https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors",
|
||||
"filename": "control_v11f1p_sd15_depth_fp16.safetensors",
|
||||
@@ -1711,7 +1757,7 @@
|
||||
"name": "ControlNet-v1-1 (inpaint; fp16)",
|
||||
"type": "controlnet",
|
||||
"base": "SD1.5",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/1.5",
|
||||
"description": "Safetensors/FP16 versions of the new ControlNet-v1-1 checkpoints (inpaint)",
|
||||
"reference": "https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors",
|
||||
"filename": "control_v11p_sd15_inpaint_fp16.safetensors",
|
||||
@@ -1722,7 +1768,7 @@
|
||||
"name": "ControlNet-v1-1 (lineart; fp16)",
|
||||
"type": "controlnet",
|
||||
"base": "SD1.5",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/1.5",
|
||||
"description": "Safetensors/FP16 versions of the new ControlNet-v1-1 checkpoints (lineart)",
|
||||
"reference": "https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors",
|
||||
"filename": "control_v11p_sd15_lineart_fp16.safetensors",
|
||||
@@ -1733,7 +1779,7 @@
|
||||
"name": "ControlNet-v1-1 (mlsd; fp16)",
|
||||
"type": "controlnet",
|
||||
"base": "SD1.5",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/1.5",
|
||||
"description": "Safetensors/FP16 versions of the new ControlNet-v1-1 checkpoints (mlsd)",
|
||||
"reference": "https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors",
|
||||
"filename": "control_v11p_sd15_mlsd_fp16.safetensors",
|
||||
@@ -1744,7 +1790,7 @@
|
||||
"name": "ControlNet-v1-1 (normalbae; fp16)",
|
||||
"type": "controlnet",
|
||||
"base": "SD1.5",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/1.5",
|
||||
"description": "Safetensors/FP16 versions of the new ControlNet-v1-1 checkpoints (normalbae)",
|
||||
"reference": "https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors",
|
||||
"filename": "control_v11p_sd15_normalbae_fp16.safetensors",
|
||||
@@ -1755,7 +1801,7 @@
|
||||
"name": "ControlNet-v1-1 (openpose; fp16)",
|
||||
"type": "controlnet",
|
||||
"base": "SD1.5",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/1.5",
|
||||
"description": "Safetensors/FP16 versions of the new ControlNet-v1-1 checkpoints (openpose)",
|
||||
"reference": "https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors",
|
||||
"filename": "control_v11p_sd15_openpose_fp16.safetensors",
|
||||
@@ -1766,7 +1812,7 @@
|
||||
"name": "ControlNet-v1-1 (scribble; fp16)",
|
||||
"type": "controlnet",
|
||||
"base": "SD1.5",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/1.5",
|
||||
"description": "Safetensors/FP16 versions of the new ControlNet-v1-1 checkpoints (scribble)",
|
||||
"reference": "https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors",
|
||||
"filename": "control_v11p_sd15_scribble_fp16.safetensors",
|
||||
@@ -1777,7 +1823,7 @@
|
||||
"name": "ControlNet-v1-1 (seg; fp16)",
|
||||
"type": "controlnet",
|
||||
"base": "SD1.5",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/1.5",
|
||||
"description": "Safetensors/FP16 versions of the new ControlNet-v1-1 checkpoints (seg)",
|
||||
"reference": "https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors",
|
||||
"filename": "control_v11p_sd15_seg_fp16.safetensors",
|
||||
@@ -1788,7 +1834,7 @@
|
||||
"name": "ControlNet-v1-1 (softedge; fp16)",
|
||||
"type": "controlnet",
|
||||
"base": "SD1.5",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/1.5",
|
||||
"description": "Safetensors/FP16 versions of the new ControlNet-v1-1 checkpoints (softedge)",
|
||||
"reference": "https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors",
|
||||
"filename": "control_v11p_sd15_softedge_fp16.safetensors",
|
||||
@@ -1799,7 +1845,7 @@
|
||||
"name": "ControlNet-v1-1 (anime; fp16)",
|
||||
"type": "controlnet",
|
||||
"base": "SD1.5",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/1.5",
|
||||
"description": "Safetensors/FP16 versions of the new ControlNet-v1-1 checkpoints (anime)",
|
||||
"reference": "https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors",
|
||||
"filename": "control_v11p_sd15s2_lineart_anime_fp16.safetensors",
|
||||
@@ -1810,7 +1856,7 @@
|
||||
"name": "ControlNet-v1-1 (tile; fp16; v11u)",
|
||||
"type": "controlnet",
|
||||
"base": "SD1.5",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/1.5",
|
||||
"description": "Safetensors/FP16 versions of the new ControlNet-v1-1 checkpoints (tile) / v11u",
|
||||
"reference": "https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors",
|
||||
"filename": "control_v11u_sd15_tile_fp16.safetensors",
|
||||
@@ -1821,7 +1867,7 @@
|
||||
"name": "ControlNet-v1-1 (tile; fp16; v11f1e)",
|
||||
"type": "controlnet",
|
||||
"base": "SD1.5",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/1.5",
|
||||
"description": "Safetensors/FP16 versions of the new ControlNet-v1-1 checkpoints (tile) / v11f1e\nYou need to this model for <B>Tiled Resample</B>",
|
||||
"reference": "https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors",
|
||||
"filename": "control_v11f1e_sd15_tile_fp16.safetensors",
|
||||
@@ -1832,7 +1878,7 @@
|
||||
"name": "ControlNet-HandRefiner-pruned (inpaint-depth-hand; fp16)",
|
||||
"type": "controlnet",
|
||||
"base": "SD1.5",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/1.5",
|
||||
"description": "This inpaint-depth controlnet model is specialized for the hand refiner.",
|
||||
"reference": "https://huggingface.co/hr16/ControlNet-HandRefiner-pruned",
|
||||
"filename": "control_sd15_inpaint_depth_hand_fp16.safetensors",
|
||||
@@ -1843,7 +1889,7 @@
|
||||
"name": "control_boxdepth_LooseControlfp16 (fp16)",
|
||||
"type": "controlnet",
|
||||
"base": "SD1.5",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/1.5",
|
||||
"description": "Loose ControlNet model",
|
||||
"reference": "https://huggingface.co/ioclab/LooseControl_WebUICombine",
|
||||
"filename": "control_boxdepth_LooseControlfp16.safetensors",
|
||||
@@ -1854,7 +1900,7 @@
|
||||
"name": "GLIGEN textbox (fp16; pruned)",
|
||||
"type": "gligen",
|
||||
"base": "SD1.5",
|
||||
"save_path": "default",
|
||||
"save_path": "gligen/SD1.5",
|
||||
"description": "GLIGEN textbox model",
|
||||
"reference": "https://huggingface.co/comfyanonymous/GLIGEN_pruned_safetensors",
|
||||
"filename": "gligen_sd14_textbox_pruned_fp16.safetensors",
|
||||
@@ -3100,7 +3146,7 @@
|
||||
"name": "monster-labs - Controlnet QR Code Monster v1 For SDXL",
|
||||
"type": "controlnet",
|
||||
"base": "SDXL",
|
||||
"save_path": "default",
|
||||
"save_path": "controlnet/SDXL",
|
||||
"description": "monster-labs - Controlnet QR Code Monster v1 For SDXL",
|
||||
"reference": "https://huggingface.co/monster-labs/control_v1p_sdxl_qrcode_monster",
|
||||
"filename": "control_v1p_sdxl_qrcode_monster.safetensors",
|
||||
@@ -3471,6 +3517,19 @@
|
||||
"url": "https://huggingface.co/InstantX/FLUX.1-dev-Controlnet-Union/resolve/main/diffusion_pytorch_model.safetensors",
|
||||
"size": "6.6GB"
|
||||
},
|
||||
|
||||
|
||||
{
|
||||
"name": "InstantX/FLUX.1-dev-IP-Adapter",
|
||||
"type": "IP-Adapter",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "ipadapter-flux",
|
||||
"description": "FLUX.1-dev-IP-Adapter",
|
||||
"reference": "https://huggingface.co/InstantX/FLUX.1-dev-IP-Adapter",
|
||||
"filename": "ip-adapter.bin",
|
||||
"url": "https://huggingface.co/InstantX/FLUX.1-dev-IP-Adapter/resolve/main/ip-adapter.bin",
|
||||
"size": "5.29GB"
|
||||
},
|
||||
{
|
||||
"name": "Shakker-Labs/FLUX.1-dev-ControlNet-Union-Pro",
|
||||
"type": "controlnet",
|
||||
@@ -3493,6 +3552,7 @@
|
||||
"url": "https://huggingface.co/Kijai/flux-fp8/resolve/main/flux_shakker_labs_union_pro-fp8_e4m3fn.safetensors",
|
||||
"size": "3.3GB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "jasperai/FLUX.1-dev-Controlnet-Upscaler",
|
||||
"type": "controlnet",
|
||||
@@ -3661,6 +3721,41 @@
|
||||
"size": "1.19GB"
|
||||
},
|
||||
|
||||
|
||||
{
|
||||
"name": "stabilityai/SD3.5-Large-Controlnet-Blur",
|
||||
"type": "controlnet",
|
||||
"base": "SD3.5",
|
||||
"save_path": "controlnet/SD3.5",
|
||||
"description": "Blur Controlnet model for SD3.5 Large",
|
||||
"reference": "https://huggingface.co/stabilityai/stable-diffusion-3.5-controlnets",
|
||||
"filename": "sd3.5_large_controlnet_blur.safetensors",
|
||||
"url": "https://huggingface.co/stabilityai/stable-diffusion-3.5-controlnets/resolve/main/sd3.5_large_controlnet_blur.safetensors",
|
||||
"size": "8.65GB"
|
||||
},
|
||||
{
|
||||
"name": "stabilityai/SD3.5-Large-Controlnet-Canny",
|
||||
"type": "controlnet",
|
||||
"base": "SD3.5",
|
||||
"save_path": "controlnet/SD3.5",
|
||||
"description": "Canny Controlnet model for SD3.5 Large",
|
||||
"reference": "https://huggingface.co/stabilityai/stable-diffusion-3.5-controlnets",
|
||||
"filename": "sd3.5_large_controlnet_canny.safetensors",
|
||||
"url": "https://huggingface.co/stabilityai/stable-diffusion-3.5-controlnets/resolve/main/sd3.5_large_controlnet_canny.safetensors",
|
||||
"size": "8.65GB"
|
||||
},
|
||||
{
|
||||
"name": "stabilityai/SD3.5-Large-Controlnet-Depth",
|
||||
"type": "controlnet",
|
||||
"base": "SD3.5",
|
||||
"save_path": "controlnet/SD3.5",
|
||||
"description": "Depth Controlnet model for SD3.5 Large",
|
||||
"reference": "https://huggingface.co/stabilityai/stable-diffusion-3.5-controlnets",
|
||||
"filename": "sd3.5_large_controlnet_depth.safetensors",
|
||||
"url": "https://huggingface.co/stabilityai/stable-diffusion-3.5-controlnets/resolve/main/sd3.5_large_controlnet_depth.safetensors",
|
||||
"size": "8.65GB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "Kijai/ToonCrafter model checkpoint (interpolation fp16)",
|
||||
"type": "checkpoint",
|
||||
@@ -4445,6 +4540,18 @@
|
||||
"filename": "MoGe_ViT_L_fp16.safetensors",
|
||||
"url": "https://huggingface.co/Kijai/MoGe_safetensors/resolve/main/MoGe_ViT_L_fp16.safetensors",
|
||||
"size": "1.26GB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "LTX-Video 2B v0.9 Checkpoint",
|
||||
"type": "checkpoint",
|
||||
"base": "LTX-Video",
|
||||
"save_path": "checkpoints/LTXV",
|
||||
"description": "LTX-Video is the first DiT-based video generation model capable of generating high-quality videos in real-time. It produces 24 FPS videos at a 768x512 resolution faster than they can be watched. Trained on a large-scale dataset of diverse videos, the model generates high-resolution videos with realistic and varied content.",
|
||||
"reference": "https://huggingface.co/Lightricks/LTX-Video",
|
||||
"filename": "ltx-video-2b-v0.9.safetensors",
|
||||
"url": "https://huggingface.co/Lightricks/LTX-Video/resolve/main/ltx-video-2b-v0.9.safetensors",
|
||||
"size": "9.37GB"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -13,6 +13,251 @@
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{
|
||||
"author": "StableDiffusionVN",
|
||||
"title": "SDVN_Comfy_node",
|
||||
"reference": "https://github.com/StableDiffusionVN/SDVN_Comfy_node",
|
||||
"files": [
|
||||
"https://github.com/StableDiffusionVN/SDVN_Comfy_node"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES:SDVN Load Image"
|
||||
},
|
||||
{
|
||||
"author": "anze",
|
||||
"title": "ComfyUI-OIDN [WIP]",
|
||||
"reference": "https://github.com/Anze-/ComfyUI-OIDN",
|
||||
"files": [
|
||||
"https://github.com/Anze-/ComfyUI-OIDN"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComyUI wrapper for Intel OIDN image denoising\nWARNING! : this is a development repo, usage in production environments is not advised! Bugs are to be expected."
|
||||
},
|
||||
{
|
||||
"author": "techzuhaib",
|
||||
"title": "ComfyUI-CacheImageNode",
|
||||
"reference": "https://github.com/techzuhaib/ComfyUI-CacheImageNode",
|
||||
"files": [
|
||||
"https://github.com/techzuhaib/ComfyUI-CacheImageNode"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: CacheImageNode"
|
||||
},
|
||||
{
|
||||
"author": "hay86",
|
||||
"title": "ComfyUI AceNodes [UNSAFE]",
|
||||
"reference": "https://github.com/hay86/ComfyUI_AceNodes",
|
||||
"files": [
|
||||
"https://github.com/hay86/ComfyUI_AceNodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Some useful custom nodes that are not included in ComfyUI core yet.\nNOTE: Vulnerability discovered. Not being managed."
|
||||
},
|
||||
{
|
||||
"author": "dowands",
|
||||
"title": "AddMaskForICLora",
|
||||
"reference": "https://github.com/dowands/ComfyUI-AddMaskForICLora",
|
||||
"files": [
|
||||
"https://github.com/dowands/ComfyUI-AddMaskForICLora"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Add Mask For IC Lora x"
|
||||
},
|
||||
{
|
||||
"author": "zmwv823",
|
||||
"title": "ComfyUI-Sana [WIP]",
|
||||
"reference": "https://github.com/zmwv823/ComfyUI-Sana",
|
||||
"files": [
|
||||
"https://github.com/zmwv823/ComfyUI-Sana"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Unofficial custom-node for [a/SANA: Efficient High-Resolution Image Synthesis with Linear Diffusion Transformer](https://github.com/NVlabs/Sana)\n[w/A init node with lots of bugs, do not try unless interested.]"
|
||||
},
|
||||
{
|
||||
"author": "exectails",
|
||||
"title": "Scripting",
|
||||
"id": "et_scripting [UNSAFE]",
|
||||
"reference": "https://github.com/exectails/comfyui-et_scripting",
|
||||
"files": [
|
||||
"https://github.com/exectails/comfyui-et_scripting"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Nodes that can be used to write Python scripts directly on a node. Useful for quick prototyping and testing, at the cost of security.[w/This extension allows the execution of arbitrary Python code from a workflow.]"
|
||||
},
|
||||
{
|
||||
"author": "AIFSH",
|
||||
"title": "UltralightDigitalHuman-ComfyUI",
|
||||
"reference": "https://github.com/AIFSH/UltralightDigitalHuman-ComfyUI",
|
||||
"files": [
|
||||
"https://github.com/AIFSH/UltralightDigitalHuman-ComfyUI"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "a custom node for [a/Ultralight-Digital-Human](https://github.com/anliyuan/Ultralight-Digital-Human)\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "vahidzxc",
|
||||
"title": "ComfyUI-My-Handy-Nodes",
|
||||
"reference": "https://github.com/vahidzxc/ComfyUI-My-Handy-Nodes",
|
||||
"files": [
|
||||
"https://github.com/vahidzxc/ComfyUI-My-Handy-Nodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES:VahCropImage"
|
||||
},
|
||||
{
|
||||
"author": "StartHua",
|
||||
"title": "Comfyui_Flux_Style_Ctr [WIP]",
|
||||
"reference": "https://github.com/StartHua/Comfyui_Flux_Style_Ctr",
|
||||
"files": [
|
||||
"https://github.com/StartHua/Comfyui_Flux_Style_Ctr"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES:CXH_StyleModelApply\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "miragecoa",
|
||||
"title": "ComfyUI-LLM-Evaluation [WIP]",
|
||||
"reference": "https://github.com/miragecoa/ComfyUI-LLM-Evaluation",
|
||||
"files": [
|
||||
"https://github.com/miragecoa/ComfyUI-LLM-Evaluation"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES:Load File, Select Item by Index, Select Item by Key, JSONToListNode, MathOperationNode, F1ScoreNode, AccuracyNode, ..."
|
||||
},
|
||||
{
|
||||
"author": "WASasquatch",
|
||||
"title": "ASTERR [UNSAFE]",
|
||||
"id": "asterr",
|
||||
"reference": "https://github.com/WASasquatch/ASTERR",
|
||||
"files": [
|
||||
"https://github.com/WASasquatch/ASTERR"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Abstract Syntax Trees Evaluated Restricted Run (ASTERR) is a Python Script executor for ComfyUI. [w/Warning:ASTERR runs Python Code from a Web Interface! It is highly recommended to run this in a closed-off environment, as it could have potential security risks.]"
|
||||
},
|
||||
{
|
||||
"author": "BenjaMITM",
|
||||
"title": "ComfyUI_On_The_Fly_Wildcards [WIP]",
|
||||
"reference": "https://github.com/BenjaMITM/ComfyUI_On_The_Fly_Wildcards",
|
||||
"files": [
|
||||
"https://github.com/BenjaMITM/ComfyUI_On_The_Fly_Wildcards"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES:Wildcard Creator, Wildcard Loader, Wildcard Selector, Display String.\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "celll1",
|
||||
"title": "cel_sampler [WIP]",
|
||||
"reference": "https://github.com/celll1/cel_sampler",
|
||||
"files": [
|
||||
"https://github.com/celll1/cel_sampler"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES:Latent Value Tracker\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "DataCTE",
|
||||
"title": "ComfyUI-DataVoid-nodes [WIP]",
|
||||
"reference": "https://github.com/DataCTE/ComfyUI-DataVoid-nodes",
|
||||
"files": [
|
||||
"https://github.com/DataCTE/ComfyUI-DataVoid-nodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A collection of custom nodes for ComfyUI focused on model merging and style adaptation.[w/It may cause a lot of node conflicts with comfyui_ipadapter_plus.]"
|
||||
},
|
||||
{
|
||||
"author": "minhtuannhn",
|
||||
"title": "comfyui-gemini-studio [WIP]",
|
||||
"reference": "https://github.com/minhtuannhn/comfyui-gemini-studio",
|
||||
"files": [
|
||||
"https://github.com/minhtuannhn/comfyui-gemini-studio"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "comfyui-gemini-studio[w/This extension uses the legacy method of copying JS.]"
|
||||
},
|
||||
{
|
||||
"author": "artem-konevskikh",
|
||||
"title": "ComfyUI Video Processing Nodes [WIP]",
|
||||
"reference": "https://github.com/artem-konevskikh/comfyui-split-merge-video",
|
||||
"files": [
|
||||
"https://github.com/artem-konevskikh/comfyui-split-merge-video"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Custom nodes for ComfyUI that add video splitting and merging capabilities with crossfade transitions."
|
||||
},
|
||||
{
|
||||
"author": "Poseidon-fan",
|
||||
"title": "ComfyUI-fileCleaner [UNSAFE]",
|
||||
"reference": "https://github.com/Poseidon-fan/ComfyUI-fileCleaner",
|
||||
"files": [
|
||||
"https://github.com/Poseidon-fan/ComfyUI-fileCleaner"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "In production environments, images are usually saved on storage servers such as S3, rather than local folders. So the method of placing images in local folders using ComfyUI's native LoadImage and SaveImage nodes cannot be used as a deployment service method, but can only be used as a temporary storage place for images. This requires a way to delete images from the input and output folders.\nThis node is used to delete images from the input and output folders. It is recommended to use this node through api call in the backend after the image processing is completed.[w/Users can use the file deletion feature through the workflow.]"
|
||||
},
|
||||
{
|
||||
"author": "kostenickj",
|
||||
"title": "comfyui-jk-easy-nodes",
|
||||
"reference": "https://github.com/kostenickj/comfyui-jk-easy-nodes",
|
||||
"files": [
|
||||
"https://github.com/kostenickj/comfyui-jk-easy-nodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES:JK Easy Prompt, JK Easy HiRes Fix"
|
||||
},
|
||||
{
|
||||
"author": "yorkane",
|
||||
"title": "Comfy UI Robe Nodes [UNSAFE]",
|
||||
"reference": "https://github.com/RobeSantoro/ComfyUI-RobeNodes",
|
||||
"files": [
|
||||
"https://github.com/RobeSantoro/ComfyUI-RobeNodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: List Video Path Node, List Image Path Node\nThis is a collection of utility nodes for the ComfyUI stable diffusion client that provides enhanced file path handling capabilities.[w/Users will be able to access images from arbitrary paths through the workflow.]"
|
||||
},
|
||||
{
|
||||
"author": "Kimara.ai",
|
||||
"title": "Advanced Watermarking Tools [WIP]",
|
||||
"reference": "https://github.com/kimara-ai/ComfyUI-Kimara-AI-Advanced-Watermarks",
|
||||
"files": [
|
||||
"https://github.com/kimara-ai/ComfyUI-Kimara-AI-Advanced-Watermarks"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "The KimaraAIWatermarker custom node allows you to apply watermark text and logo overlays to images (or a batch of images). It provides features like customizable watermark movement, rotation, and opacity. You can also apply both text and logo watermarks simultaneously, with fine-tuned control over positioning and scaling."
|
||||
},
|
||||
{
|
||||
"author": "Clybius",
|
||||
"title": "ComfyUI-FluxDeCLIP",
|
||||
"reference": "https://github.com/Clybius/ComfyUI-FluxDeCLIP",
|
||||
"files": [
|
||||
"https://github.com/Clybius/ComfyUI-FluxDeCLIP"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES:FluxDeCLIPCheckpointLoader"
|
||||
},
|
||||
{
|
||||
"author": "ZHO-ZHO-ZHO",
|
||||
"title": "ComfyUI-BiRefNet-ZHO [BROKEN]",
|
||||
"id": "birefnet",
|
||||
"reference": "https://github.com/ZHO-ZHO-ZHO/ComfyUI-BiRefNet-ZHO",
|
||||
"files": [
|
||||
"https://github.com/ZHO-ZHO-ZHO/ComfyUI-BiRefNet-ZHO"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Better version for [a/BiRefNet](https://github.com/zhengpeng7/birefnet) in ComfyUI | Both img and video.\nNOTE: You need to do [a/manual patch](https://github.com/ZHO-ZHO-ZHO/ComfyUI-BiRefNet-ZHO/issues/20)"
|
||||
},
|
||||
{
|
||||
"author": "trashgraphicard",
|
||||
"title": "Albedo-Sampler-for-ComfyUI",
|
||||
"reference": "https://github.com/trashgraphicard/Albedo-Sampler-for-ComfyUI",
|
||||
"files": [
|
||||
"https://github.com/trashgraphicard/Albedo-Sampler-for-ComfyUI"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES:Sample Image, Make Seamless Tile"
|
||||
},
|
||||
{
|
||||
"author": "Anze-",
|
||||
"title": "ComfyUI_deepDeband [WIP]",
|
||||
@@ -324,16 +569,6 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "Upscale image with model multiple times !"
|
||||
},
|
||||
{
|
||||
"author": "huangyangke",
|
||||
"title": "ComfyUI-Kolors-IpadapterFaceId [WIP]",
|
||||
"reference": "https://github.com/huangyangke/ComfyUI-Kolors-IpadapterFaceId",
|
||||
"files": [
|
||||
"https://github.com/huangyangke/ComfyUI-Kolors-IpadapterFaceId"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES:kolors_ipadapter_faceid\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "rouxianmantou",
|
||||
"title": "comfyui-rxmt-nodes",
|
||||
@@ -1445,14 +1680,14 @@
|
||||
},
|
||||
{
|
||||
"author": "AllenEdgarPoe",
|
||||
"title": "ComfyUI-Xorbis-nodes",
|
||||
"title": "ComfyUI-Xorbis-nodes [WIP]",
|
||||
"id": "xorbis",
|
||||
"reference": "https://github.com/AllenEdgarPoe/ComfyUI-Xorbis-nodes",
|
||||
"files": [
|
||||
"https://github.com/AllenEdgarPoe/ComfyUI-Xorbis-nodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This repository is for MuseumX Update. We use ComfyUI as our framework, and the nodes are built for my comfort."
|
||||
"description": "This repository is for MuseumX Update. We use ComfyUI as our framework, and the nodes are built for my comfort.\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "mikeymcfish",
|
||||
|
||||
@@ -239,8 +239,18 @@
|
||||
"title_aux": "IMAGDressing-ComfyUI"
|
||||
}
|
||||
],
|
||||
"https://github.com/AIFSH/UltralightDigitalHuman-ComfyUI": [
|
||||
[
|
||||
"InferUltralightDigitalHumanNode",
|
||||
"TrainUltralightDigitalHumanNode"
|
||||
],
|
||||
{
|
||||
"title_aux": "UltralightDigitalHuman-ComfyUI"
|
||||
}
|
||||
],
|
||||
"https://github.com/AIFSH/UtilNodes-ComfyUI": [
|
||||
[
|
||||
"GetRGBEmptyImgae",
|
||||
"LoadVideo",
|
||||
"PreViewVideo",
|
||||
"PromptTextNode"
|
||||
@@ -323,6 +333,8 @@
|
||||
"Add Human Styler",
|
||||
"ConcaveHullImage",
|
||||
"Convert Monochrome",
|
||||
"Inpaint Crop Xo",
|
||||
"LoadData",
|
||||
"Mask Aligned bbox for ConcaveHull",
|
||||
"Mask Aligned bbox for Inpainting",
|
||||
"Mask Aligned bbox for Inpainting2",
|
||||
@@ -335,7 +347,15 @@
|
||||
"Upscale RT4SR"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-Xorbis-nodes"
|
||||
"title_aux": "ComfyUI-Xorbis-nodes [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/Anze-/ComfyUI-OIDN": [
|
||||
[
|
||||
"OIDN Denoise"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-OIDN [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/Anze-/ComfyUI_deepDeband": [
|
||||
@@ -382,6 +402,17 @@
|
||||
"title_aux": "execution-inversion-demo-comfyui"
|
||||
}
|
||||
],
|
||||
"https://github.com/BenjaMITM/ComfyUI_On_The_Fly_Wildcards": [
|
||||
[
|
||||
"Display String",
|
||||
"Wildcard Creator",
|
||||
"Wildcard Loader",
|
||||
"Wildcard Selector"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI_On_The_Fly_Wildcards [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/BetaDoggo/ComfyUI-LogicGates": [
|
||||
[
|
||||
"AND",
|
||||
@@ -463,6 +494,14 @@
|
||||
"title_aux": "ComfyUI-Inpaint_with_Detailer"
|
||||
}
|
||||
],
|
||||
"https://github.com/Clybius/ComfyUI-FluxDeCLIP": [
|
||||
[
|
||||
"FluxDeCLIPCheckpointLoader"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-FluxDeCLIP"
|
||||
}
|
||||
],
|
||||
"https://github.com/Comfy-Org/ComfyUI_devtools": [
|
||||
[
|
||||
"DevToolsDeprecatedNode",
|
||||
@@ -474,7 +513,8 @@
|
||||
"DevToolsNodeWithOnlyOptionalInput",
|
||||
"DevToolsNodeWithOptionalInput",
|
||||
"DevToolsNodeWithOutputList",
|
||||
"DevToolsNodeWithStringInput"
|
||||
"DevToolsNodeWithStringInput",
|
||||
"DevToolsNodeWithUnionInput"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI_devtools [WIP]"
|
||||
@@ -488,6 +528,52 @@
|
||||
"title_aux": "ComfyUI OpenAI Nodes"
|
||||
}
|
||||
],
|
||||
"https://github.com/DataCTE/ComfyUI-DataVoid-nodes": [
|
||||
[
|
||||
"IPAAdapterFaceIDBatch",
|
||||
"IPAdapter",
|
||||
"IPAdapterAdvanced",
|
||||
"IPAdapterBatch",
|
||||
"IPAdapterClipVisionEnhancer",
|
||||
"IPAdapterClipVisionEnhancerBatch",
|
||||
"IPAdapterCombineEmbeds",
|
||||
"IPAdapterCombineParams",
|
||||
"IPAdapterCombineWeights",
|
||||
"IPAdapterEmbeds",
|
||||
"IPAdapterEmbedsBatch",
|
||||
"IPAdapterEncoder",
|
||||
"IPAdapterFaceID",
|
||||
"IPAdapterFaceIDKolors",
|
||||
"IPAdapterFromParams",
|
||||
"IPAdapterInsightFaceLoader",
|
||||
"IPAdapterLoadEmbeds",
|
||||
"IPAdapterMS",
|
||||
"IPAdapterModelLoader",
|
||||
"IPAdapterNoise",
|
||||
"IPAdapterPreciseComposition",
|
||||
"IPAdapterPreciseCompositionBatch",
|
||||
"IPAdapterPreciseStyleTransfer",
|
||||
"IPAdapterPreciseStyleTransferBatch",
|
||||
"IPAdapterPromptScheduleFromWeightsStrategy",
|
||||
"IPAdapterRegionalConditioning",
|
||||
"IPAdapterSameEnergy",
|
||||
"IPAdapterSaveEmbeds",
|
||||
"IPAdapterStyleComposition",
|
||||
"IPAdapterStyleCompositionBatch",
|
||||
"IPAdapterTiled",
|
||||
"IPAdapterTiledBatch",
|
||||
"IPAdapterUnifiedLoader",
|
||||
"IPAdapterUnifiedLoaderCommunity",
|
||||
"IPAdapterUnifiedLoaderFaceID",
|
||||
"IPAdapterWeights",
|
||||
"IPAdapterWeightsFromStrategy",
|
||||
"MegaMergeSDXL",
|
||||
"PrepImageForClipVision"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-DataVoid-nodes [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/DeTK/ComfyUI-Switch": [
|
||||
[
|
||||
"NodeSwitch"
|
||||
@@ -509,8 +595,10 @@
|
||||
"https://github.com/DoctorDiffusion/Doctor-Tools": [
|
||||
[
|
||||
"FinalFrameSelector",
|
||||
"FirstFrameSelector",
|
||||
"PromptJournal",
|
||||
"ReverseFrameSequence",
|
||||
"VideoMerge",
|
||||
"VideoPromptGenerator",
|
||||
"YouTubeVideoDownloader"
|
||||
],
|
||||
{
|
||||
@@ -566,6 +654,7 @@
|
||||
"AppIO_ImageInputFromID",
|
||||
"AppIO_ImageOutput",
|
||||
"AppIO_IntegerInput",
|
||||
"AppIO_ResizeInstanceImageMask",
|
||||
"AppIO_StringInput",
|
||||
"AppIO_StringOutput"
|
||||
],
|
||||
@@ -898,6 +987,14 @@
|
||||
"title_aux": "comfyUI-image-search"
|
||||
}
|
||||
],
|
||||
"https://github.com/Poseidon-fan/ComfyUI-fileCleaner": [
|
||||
[
|
||||
"Clean input and output file"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-fileCleaner [UNSAFE]"
|
||||
}
|
||||
],
|
||||
"https://github.com/Poukpalaova/ComfyUI-FRED-Nodes": [
|
||||
[
|
||||
"FRED_AutoCropImage_SDXL_Ratio_V3",
|
||||
@@ -918,7 +1015,9 @@
|
||||
"FRED_LoadPathImagesPreview",
|
||||
"FRED_LoadPathImagesPreview_v2",
|
||||
"FRED_LoadRetinaFace",
|
||||
"FRED_LoraInfos",
|
||||
"FRED_PreviewOnly",
|
||||
"FRED_TextMultiline",
|
||||
"FRED_photo_prompt"
|
||||
],
|
||||
{
|
||||
@@ -949,6 +1048,15 @@
|
||||
"title_aux": "ComfyUI-QuasimondoNodes [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/RobeSantoro/ComfyUI-RobeNodes": [
|
||||
[
|
||||
"List Image Path \ud83d\udc24",
|
||||
"List Video Path \ud83d\udc24"
|
||||
],
|
||||
{
|
||||
"title_aux": "Comfy UI Robe Nodes [UNSAFE]"
|
||||
}
|
||||
],
|
||||
"https://github.com/SS-snap/ComfyUI-Snap_Processing": [
|
||||
[
|
||||
"AreaCalculator",
|
||||
@@ -1069,6 +1177,14 @@
|
||||
"title_aux": "ComfyUI_Remaker_FaceSwap"
|
||||
}
|
||||
],
|
||||
"https://github.com/StableDiffusionVN/SDVN_Comfy_node": [
|
||||
[
|
||||
"Load Image Url"
|
||||
],
|
||||
{
|
||||
"title_aux": "SDVN_Comfy_node"
|
||||
}
|
||||
],
|
||||
"https://github.com/StartHua/Comfyui_CSDMT_CXH": [
|
||||
[
|
||||
"CSD"
|
||||
@@ -1085,6 +1201,14 @@
|
||||
"title_aux": "Comfyui_CXH_CRM"
|
||||
}
|
||||
],
|
||||
"https://github.com/StartHua/Comfyui_Flux_Style_Ctr": [
|
||||
[
|
||||
"CXH_StyleModelApply"
|
||||
],
|
||||
{
|
||||
"title_aux": "Comfyui_Flux_Style_Ctr [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/T8star1984/comfyui-purgevram": [
|
||||
[
|
||||
"PurgeVRAM"
|
||||
@@ -1129,6 +1253,15 @@
|
||||
"title_aux": "ve_custom_comfyui_nodes"
|
||||
}
|
||||
],
|
||||
"https://github.com/WASasquatch/ASTERR": [
|
||||
[
|
||||
"ASTERR",
|
||||
"SaveASTERR"
|
||||
],
|
||||
{
|
||||
"title_aux": "ASTERR [UNSAFE]"
|
||||
}
|
||||
],
|
||||
"https://github.com/WSJUSA/Comfyui-StableSR": [
|
||||
[
|
||||
"ColorFix",
|
||||
@@ -1163,6 +1296,15 @@
|
||||
"title_aux": "ComfyUI-AuraSR-ZHO"
|
||||
}
|
||||
],
|
||||
"https://github.com/ZHO-ZHO-ZHO/ComfyUI-BiRefNet-ZHO": [
|
||||
[
|
||||
"BiRefNet_ModelLoader_Zho",
|
||||
"BiRefNet_Zho"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-BiRefNet-ZHO [BROKEN]"
|
||||
}
|
||||
],
|
||||
"https://github.com/ZHO-ZHO-ZHO/ComfyUI-PuLID-ZHO": [
|
||||
[
|
||||
"PuLID_Zho"
|
||||
@@ -1237,6 +1379,15 @@
|
||||
"title_aux": "ComfyUI-SkipCFGSigmas"
|
||||
}
|
||||
],
|
||||
"https://github.com/artem-konevskikh/comfyui-split-merge-video": [
|
||||
[
|
||||
"VideoMerger",
|
||||
"VideoSplitter"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI Video Processing Nodes [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/artisanalcomputing/ComfyUI-Custom-Nodes": [
|
||||
[
|
||||
"RandomVideoMixer",
|
||||
@@ -1514,6 +1665,14 @@
|
||||
"title_aux": "brycegoh/comfyui-custom-nodes"
|
||||
}
|
||||
],
|
||||
"https://github.com/celll1/cel_sampler": [
|
||||
[
|
||||
"latent_tracker"
|
||||
],
|
||||
{
|
||||
"title_aux": "cel_sampler [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/chaojie/ComfyUI-DynamiCrafter": [
|
||||
[
|
||||
"DynamiCrafter Simple",
|
||||
@@ -1623,6 +1782,7 @@
|
||||
"DualCFGGuider",
|
||||
"DualCLIPLoader",
|
||||
"EmptyImage",
|
||||
"EmptyLTXVLatentVideo",
|
||||
"EmptyLatentAudio",
|
||||
"EmptyLatentImage",
|
||||
"EmptyMochiLatentVideo",
|
||||
@@ -1665,6 +1825,9 @@
|
||||
"KSamplerAdvanced",
|
||||
"KSamplerSelect",
|
||||
"KarrasScheduler",
|
||||
"LTXVConditioning",
|
||||
"LTXVImgToVideo",
|
||||
"LTXVScheduler",
|
||||
"LaplaceScheduler",
|
||||
"LatentAdd",
|
||||
"LatentApplyOperation",
|
||||
@@ -1695,8 +1858,11 @@
|
||||
"MaskComposite",
|
||||
"MaskToImage",
|
||||
"ModelMergeAdd",
|
||||
"ModelMergeAuraflow",
|
||||
"ModelMergeBlocks",
|
||||
"ModelMergeFlux1",
|
||||
"ModelMergeLTXV",
|
||||
"ModelMergeMochiPreview",
|
||||
"ModelMergeSD1",
|
||||
"ModelMergeSD2",
|
||||
"ModelMergeSD35_Large",
|
||||
@@ -1709,6 +1875,7 @@
|
||||
"ModelSamplingContinuousV",
|
||||
"ModelSamplingDiscrete",
|
||||
"ModelSamplingFlux",
|
||||
"ModelSamplingLTXV",
|
||||
"ModelSamplingSD3",
|
||||
"ModelSamplingStableCascade",
|
||||
"ModelSave",
|
||||
@@ -1754,6 +1921,7 @@
|
||||
"SelfAttentionGuidance",
|
||||
"SetLatentNoiseMask",
|
||||
"SetUnionControlNetType",
|
||||
"SkipLayerGuidanceDiT",
|
||||
"SkipLayerGuidanceSD3",
|
||||
"SolidMask",
|
||||
"SplitImageWithAlpha",
|
||||
@@ -1920,6 +2088,14 @@
|
||||
"title_aux": "ComfyUI_WcpD_Utility_Kit"
|
||||
}
|
||||
],
|
||||
"https://github.com/dowands/ComfyUI-AddMaskForICLora": [
|
||||
[
|
||||
"AddMaskForICLora"
|
||||
],
|
||||
{
|
||||
"title_aux": "AddMaskForICLora"
|
||||
}
|
||||
],
|
||||
"https://github.com/downlifted/ComfyUI_BWiZ_Nodes": [
|
||||
[
|
||||
"BWIZInteractiveLogMonitor",
|
||||
@@ -2021,10 +2197,19 @@
|
||||
"title_aux": "ComfyUI-GeneraNodes"
|
||||
}
|
||||
],
|
||||
"https://github.com/exectails/comfyui-et_scripting": [
|
||||
[
|
||||
"ETPythonTextScript3Node"
|
||||
],
|
||||
{
|
||||
"title_aux": "Scripting"
|
||||
}
|
||||
],
|
||||
"https://github.com/fablestudio/ComfyUI-Showrunner-Utils": [
|
||||
[
|
||||
"AlignFace",
|
||||
"GenerateTimestamp",
|
||||
"GetMostCommonColors",
|
||||
"ReadImage",
|
||||
"RenderOpenStreetMapTile"
|
||||
],
|
||||
@@ -2139,6 +2324,43 @@
|
||||
"title_aux": "Comfyui-SadTalker"
|
||||
}
|
||||
],
|
||||
"https://github.com/hay86/ComfyUI_AceNodes": [
|
||||
[
|
||||
"ACE_AnyInputSwitchBool",
|
||||
"ACE_AnyInputToAny",
|
||||
"ACE_AudioLoad",
|
||||
"ACE_AudioPlay",
|
||||
"ACE_AudioSave",
|
||||
"ACE_Expression_Eval",
|
||||
"ACE_Float",
|
||||
"ACE_ImageColorFix",
|
||||
"ACE_ImageConstrain",
|
||||
"ACE_ImageFaceCrop",
|
||||
"ACE_ImageGetSize",
|
||||
"ACE_ImageLoadFromCloud",
|
||||
"ACE_ImagePixelate",
|
||||
"ACE_ImageQA",
|
||||
"ACE_ImageRemoveBackground",
|
||||
"ACE_ImageSaveToCloud",
|
||||
"ACE_Integer",
|
||||
"ACE_MaskBlur",
|
||||
"ACE_Seed",
|
||||
"ACE_Text",
|
||||
"ACE_TextConcatenate",
|
||||
"ACE_TextGoogleTranslate",
|
||||
"ACE_TextInputSwitch2Way",
|
||||
"ACE_TextInputSwitch4Way",
|
||||
"ACE_TextInputSwitch8Way",
|
||||
"ACE_TextList",
|
||||
"ACE_TextPreview",
|
||||
"ACE_TextSelector",
|
||||
"ACE_TextToResolution",
|
||||
"ACE_TextTranslate"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI AceNodes [UNSAFE]"
|
||||
}
|
||||
],
|
||||
"https://github.com/hgabha/WWAA-CustomNodes": [
|
||||
[
|
||||
"WWAA-BuildString",
|
||||
@@ -2215,14 +2437,6 @@
|
||||
"title_aux": "comfy-magick [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/huangyangke/ComfyUI-Kolors-IpadapterFaceId": [
|
||||
[
|
||||
"kolors_ipadapter_faceid"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-Kolors-IpadapterFaceId [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/huizhang0110/ComfyUI_Easy_Nodes_hui": [
|
||||
[
|
||||
"EasyBgRemover",
|
||||
@@ -2266,11 +2480,16 @@
|
||||
"https://github.com/ilovejohnwhite/Tracer": [
|
||||
[
|
||||
"BillyGoatNode",
|
||||
"EcstaticNode",
|
||||
"HintImageEnchance",
|
||||
"Image Load TTK",
|
||||
"ImageGenResolutionFromImage",
|
||||
"ImageGenResolutionFromLatent",
|
||||
"KillMeNode",
|
||||
"LinkMasterNode",
|
||||
"OkayBuddyNode",
|
||||
"OutlineRealNode",
|
||||
"OutlineStandardNode",
|
||||
"PixelPerfectResolution",
|
||||
"SuckerPunch",
|
||||
"UWU_Preprocessor",
|
||||
@@ -2583,6 +2802,15 @@
|
||||
"title_aux": "ComfyUI nodes for VEnhancer [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/kimara-ai/ComfyUI-Kimara-AI-Advanced-Watermarks": [
|
||||
[
|
||||
"KimaraAIBatchImages",
|
||||
"KimaraAIWatermarker"
|
||||
],
|
||||
{
|
||||
"title_aux": "Advanced Watermarking Tools [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/kk8bit/KayTool": [
|
||||
[
|
||||
"Color_Adjustment",
|
||||
@@ -2592,6 +2820,15 @@
|
||||
"title_aux": "KayTool"
|
||||
}
|
||||
],
|
||||
"https://github.com/kostenickj/comfyui-jk-easy-nodes": [
|
||||
[
|
||||
"EasyHRFix",
|
||||
"JKAnythingToString"
|
||||
],
|
||||
{
|
||||
"title_aux": "comfyui-jk-easy-nodes"
|
||||
}
|
||||
],
|
||||
"https://github.com/kxh/ComfyUI-ImageUpscaleWithModelMultipleTimes": [
|
||||
[
|
||||
"ImageUpscaleWithModelMultipleTimes"
|
||||
@@ -2720,7 +2957,12 @@
|
||||
"AddFluxFlow",
|
||||
"ApplyFluxRaveAttention",
|
||||
"ApplyRefFlux",
|
||||
"ConfigureRefFlux",
|
||||
"ApplyRegionalConds",
|
||||
"ConfigureModifiedFlux",
|
||||
"CreateRegionalCond",
|
||||
"FlowEditForwardSampler",
|
||||
"FlowEditReverseSampler",
|
||||
"FluxAttnOverride",
|
||||
"FluxDeGuidance",
|
||||
"FluxForwardODESampler",
|
||||
"FluxInverseSampler",
|
||||
@@ -2728,7 +2970,13 @@
|
||||
"FluxReverseODESampler",
|
||||
"InFluxFlipSigmas",
|
||||
"InFluxModelSamplingPred",
|
||||
"OutFluxModelSamplingPred"
|
||||
"OutFluxModelSamplingPred",
|
||||
"PAGAttention",
|
||||
"PrepareAttnBank",
|
||||
"RFDoubleBlocksOverride",
|
||||
"RFSingleBlocksOverride",
|
||||
"RegionalStyleModelApply",
|
||||
"SEGAttention"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-Fluxtapoz [WIP]"
|
||||
@@ -2763,8 +3011,12 @@
|
||||
],
|
||||
"https://github.com/lordwedggie/xcpNodes": [
|
||||
[
|
||||
"xcpFloatSlider",
|
||||
"xcpIntSlider"
|
||||
"derpBaseAlpha",
|
||||
"derpSlider",
|
||||
"xcpDerpBool",
|
||||
"xcpDerpFloat",
|
||||
"xcpDerpINT",
|
||||
"xcpDerpSeed"
|
||||
],
|
||||
{
|
||||
"title_aux": "xcpNodes [WIP]"
|
||||
@@ -2790,12 +3042,18 @@
|
||||
],
|
||||
"https://github.com/lu64k/SK-Nodes": [
|
||||
[
|
||||
"Ask LLM",
|
||||
"Color Transfer",
|
||||
"Image Tracing Node",
|
||||
"Load LLM",
|
||||
"Load_Nemotron",
|
||||
"Natural Saturation",
|
||||
"OpenAI DAlle Node",
|
||||
"OpenAI Text Node",
|
||||
"SK Random File Name",
|
||||
"SK Save Text",
|
||||
"SK Text_String",
|
||||
"SK load text",
|
||||
"Tone Layer Quantize",
|
||||
"grey_scale blend"
|
||||
],
|
||||
@@ -2895,6 +3153,40 @@
|
||||
"title_aux": "LaserCutterFull and Deptherize Nodes"
|
||||
}
|
||||
],
|
||||
"https://github.com/minhtuannhn/comfyui-gemini-studio": [
|
||||
[
|
||||
"GetFileNameFromURL"
|
||||
],
|
||||
{
|
||||
"title_aux": "comfyui-gemini-studio [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/miragecoa/ComfyUI-LLM-Evaluation": [
|
||||
[
|
||||
"AccuracyNode",
|
||||
"ClearVRAM",
|
||||
"DeleteFile",
|
||||
"DownloadHuggingFaceModel",
|
||||
"F1ScoreNode",
|
||||
"JSONToListNode",
|
||||
"JsonResultGenerator",
|
||||
"LLMLocalLoader",
|
||||
"LoadFileNode",
|
||||
"MathOperationNode",
|
||||
"MyNode",
|
||||
"PullOllamaModel",
|
||||
"SelectItemByIndexNode",
|
||||
"SelectItemByKeyNode",
|
||||
"StringCombiner",
|
||||
"StringPatternEnforcer",
|
||||
"StringScraper",
|
||||
"UpdateLLMResultToJson",
|
||||
"WriteToJson"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-LLM-Evaluation [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/monate0615/ComfyUI-Affine-Transform": [
|
||||
[
|
||||
"AffineTransform"
|
||||
@@ -3069,14 +3361,15 @@
|
||||
"CLIPNegPip",
|
||||
"CLIPTextEncodeBREAK",
|
||||
"CLIPTokenCounter",
|
||||
"ConditioningZeroOutCombine",
|
||||
"DynSamplerSelect",
|
||||
"EmptyLatentImageAR",
|
||||
"EmptyLatentImageARAdvanced",
|
||||
"FreeU2PPM",
|
||||
"Guidance Limiter",
|
||||
"LatentOperationTonemapLuminance",
|
||||
"LatentToMaskBB",
|
||||
"LatentToWidthHeight",
|
||||
"RandomPromptGenerator",
|
||||
"StableCascade_AutoCompLatent"
|
||||
"PPMSamplerSelect"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-ppm"
|
||||
@@ -3371,6 +3664,14 @@
|
||||
"title_aux": "ComfyUI-Rpg-Architect [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/techzuhaib/ComfyUI-CacheImageNode": [
|
||||
[
|
||||
"CacheImageNode"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-CacheImageNode"
|
||||
}
|
||||
],
|
||||
"https://github.com/thderoo/ComfyUI-_topfun_s_nodes": [
|
||||
[
|
||||
"ConditioningPerturbation",
|
||||
@@ -3423,6 +3724,15 @@
|
||||
"title_aux": "comfyui-p5js-node"
|
||||
}
|
||||
],
|
||||
"https://github.com/trashgraphicard/Albedo-Sampler-for-ComfyUI": [
|
||||
[
|
||||
"Make Seamless Tile",
|
||||
"Sample Image"
|
||||
],
|
||||
{
|
||||
"title_aux": "Albedo-Sampler-for-ComfyUI"
|
||||
}
|
||||
],
|
||||
"https://github.com/tuckerdarby/ComfyUI-TDNodes": [
|
||||
[
|
||||
"HandTrackerNode",
|
||||
@@ -3467,6 +3777,14 @@
|
||||
"title_aux": "ComfyUI-Dist [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/vahidzxc/ComfyUI-My-Handy-Nodes": [
|
||||
[
|
||||
"VahCropImage"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-My-Handy-Nodes"
|
||||
}
|
||||
],
|
||||
"https://github.com/void15700/VoidCustomNodes": [
|
||||
[
|
||||
"Prompt Parser",
|
||||
@@ -3570,6 +3888,17 @@
|
||||
"title_aux": "Comfyui_image2prompt"
|
||||
}
|
||||
],
|
||||
"https://github.com/zmwv823/ComfyUI-Sana": [
|
||||
[
|
||||
"UL_SanaModelLoader",
|
||||
"UL_SanaSampler",
|
||||
"UL_SanaTextEncode",
|
||||
"UL_SanaVAEProcess"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-Sana [WIP]"
|
||||
}
|
||||
],
|
||||
"https://raw.githubusercontent.com/NeuralNotW0rk/ComfyUI-Waveform-Extensions/main/EXT_VariationUtils.py": [
|
||||
[
|
||||
"BatchToList",
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -9,7 +9,58 @@
|
||||
"description": "If you see this message, your ComfyUI-Manager is outdated.\nLegacy channel provides only the list of the deprecated nodes. If you want to find the complete node list, please go to the Default channel."
|
||||
},
|
||||
|
||||
|
||||
|
||||
{
|
||||
"author": "HentaiGirlfriendDotCom",
|
||||
"title": "comfyui-highlight-connections [REMOVED]",
|
||||
"reference": "https://github.com/HentaiGirlfriendDotCom/comfyui-highlight-connections",
|
||||
"files": [
|
||||
"https://github.com/HentaiGirlfriendDotCom/comfyui-highlight-connections"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A node that can be dropped into a group. When a node is then clicked within that group, all nodes and connections in that group get greyed out and the connections from the clicked node go bright red."
|
||||
},
|
||||
{
|
||||
"author": "huangyangke",
|
||||
"title": "ComfyUI-Kolors-IpadapterFaceId [DEPRECATED]",
|
||||
"reference": "https://github.com/huangyangke/ComfyUI-Kolors-IpadapterFaceId",
|
||||
"files": [
|
||||
"https://github.com/huangyangke/ComfyUI-Kolors-IpadapterFaceId"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES:kolors_ipadapter_faceid\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "zmwv823",
|
||||
"title": "ComfyUI_Ctrlora [DEPRECATED]",
|
||||
"reference": "https://github.com/zmwv823/ComfyUI_Ctrlora",
|
||||
"files": [
|
||||
"https://github.com/zmwv823/ComfyUI_Ctrlora"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Unofficial custom_node for [a/xyfJASON/ctrlora](https://github.com/xyfJASON/ctrlora)."
|
||||
},
|
||||
{
|
||||
"author": "Fannovel16",
|
||||
"title": "ComfyUI Loopchain [DEPRECATED]",
|
||||
"id": "loopchain",
|
||||
"reference": "https://github.com/Fannovel16/ComfyUI-Loopchain",
|
||||
"files": [
|
||||
"https://github.com/Fannovel16/ComfyUI-Loopchain"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A collection of nodes which can be useful for animation in ComfyUI. The main focus of this extension is implementing a mechanism called loopchain. A loopchain in this case is the chain of nodes only executed repeatly in the workflow. If a node chain contains a loop node from this extension, it will become a loop chain."
|
||||
},
|
||||
{
|
||||
"author": "DonBaronFactory",
|
||||
"title": "ComfyUI-Cre8it-Nodes [DEPRECATED]",
|
||||
"reference": "https://github.com/DonBaronFactory/ComfyUI-Cre8it-Nodes",
|
||||
"files": [
|
||||
"https://github.com/DonBaronFactory/ComfyUI-Cre8it-Nodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Nodes:CRE8IT Serial Prompter, CRE8IT Apply Serial Prompter, CRE8IT Image Sizer. A few simple nodes to facilitate working wiht ComfyUI Workflows"
|
||||
},
|
||||
{
|
||||
"author": "thecooltechguy",
|
||||
"title": "ComfyUI-ComfyRun [DEPRECATED/UNSAFE]",
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,5 +1,108 @@
|
||||
{
|
||||
"models": [
|
||||
{
|
||||
"name": "stabilityai/SD3.5-Large-Controlnet-Blur",
|
||||
"type": "controlnet",
|
||||
"base": "SD3.5",
|
||||
"save_path": "controlnet/SD3.5",
|
||||
"description": "Blur Controlnet model for SD3.5 Large",
|
||||
"reference": "https://huggingface.co/stabilityai/stable-diffusion-3.5-controlnets",
|
||||
"filename": "sd3.5_large_controlnet_blur.safetensors",
|
||||
"url": "https://huggingface.co/stabilityai/stable-diffusion-3.5-controlnets/resolve/main/sd3.5_large_controlnet_blur.safetensors",
|
||||
"size": "8.65GB"
|
||||
},
|
||||
{
|
||||
"name": "stabilityai/SD3.5-Large-Controlnet-Canny",
|
||||
"type": "controlnet",
|
||||
"base": "SD3.5",
|
||||
"save_path": "controlnet/SD3.5",
|
||||
"description": "Canny Controlnet model for SD3.5 Large",
|
||||
"reference": "https://huggingface.co/stabilityai/stable-diffusion-3.5-controlnets",
|
||||
"filename": "sd3.5_large_controlnet_canny.safetensors",
|
||||
"url": "https://huggingface.co/stabilityai/stable-diffusion-3.5-controlnets/resolve/main/sd3.5_large_controlnet_canny.safetensors",
|
||||
"size": "8.65GB"
|
||||
},
|
||||
{
|
||||
"name": "stabilityai/SD3.5-Large-Controlnet-Depth",
|
||||
"type": "controlnet",
|
||||
"base": "SD3.5",
|
||||
"save_path": "controlnet/SD3.5",
|
||||
"description": "Depth Controlnet model for SD3.5 Large",
|
||||
"reference": "https://huggingface.co/stabilityai/stable-diffusion-3.5-controlnets",
|
||||
"filename": "sd3.5_large_controlnet_depth.safetensors",
|
||||
"url": "https://huggingface.co/stabilityai/stable-diffusion-3.5-controlnets/resolve/main/sd3.5_large_controlnet_depth.safetensors",
|
||||
"size": "8.65GB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "LTX-Video 2B v0.9 Checkpoint",
|
||||
"type": "checkpoint",
|
||||
"base": "LTX-Video",
|
||||
"save_path": "checkpoints/LTXV",
|
||||
"description": "LTX-Video is the first DiT-based video generation model capable of generating high-quality videos in real-time. It produces 24 FPS videos at a 768x512 resolution faster than they can be watched. Trained on a large-scale dataset of diverse videos, the model generates high-resolution videos with realistic and varied content.",
|
||||
"reference": "https://huggingface.co/Lightricks/LTX-Video",
|
||||
"filename": "ltx-video-2b-v0.9.safetensors",
|
||||
"url": "https://huggingface.co/Lightricks/LTX-Video/resolve/main/ltx-video-2b-v0.9.safetensors",
|
||||
"size": "9.37GB"
|
||||
},
|
||||
{
|
||||
"name": "InstantX/FLUX.1-dev-IP-Adapter",
|
||||
"type": "IP-Adapter",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "ipadapter-flux",
|
||||
"description": "FLUX.1-dev-IP-Adapter",
|
||||
"reference": "https://huggingface.co/InstantX/FLUX.1-dev-IP-Adapter",
|
||||
"filename": "ip-adapter.bin",
|
||||
"url": "https://huggingface.co/InstantX/FLUX.1-dev-IP-Adapter/resolve/main/ip-adapter.bin",
|
||||
"size": "5.29GB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "Comfy-Org/sigclip_vision_384 (patch14_384)",
|
||||
"type": "clip_vision",
|
||||
"base": "sigclip",
|
||||
"save_path": "clip_vision",
|
||||
"description": "This clip vision model is required for FLUX.1 Redux.",
|
||||
"reference": "https://huggingface.co/Comfy-Org/sigclip_vision_384/tree/main",
|
||||
"filename": "sigclip_vision_patch14_384.safetensors",
|
||||
"url": "https://huggingface.co/Comfy-Org/sigclip_vision_384/resolve/main/sigclip_vision_patch14_384.safetensors",
|
||||
"size": "857MB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "comfyanonymous/flux_text_encoders - t5xxl (fp16)",
|
||||
"type": "clip",
|
||||
"base": "t5",
|
||||
"save_path": "text_encoders/t5",
|
||||
"description": "Text Encoders for FLUX (fp16)",
|
||||
"reference": "https://huggingface.co/comfyanonymous/flux_text_encoders",
|
||||
"filename": "t5xxl_fp16.safetensors",
|
||||
"url": "https://huggingface.co/comfyanonymous/flux_text_encoders/resolve/main/t5xxl_fp16.safetensors",
|
||||
"size": "9.79GB"
|
||||
},
|
||||
{
|
||||
"name": "comfyanonymous/flux_text_encoders - t5xxl (fp8_e4m3fn)",
|
||||
"type": "clip",
|
||||
"base": "t5",
|
||||
"save_path": "text_encoders/t5",
|
||||
"description": "Text Encoders for FLUX (fp8_e4m3fn)",
|
||||
"reference": "https://huggingface.co/comfyanonymous/flux_text_encoders",
|
||||
"filename": "t5xxl_fp8_e4m3fn.safetensors",
|
||||
"url": "https://huggingface.co/comfyanonymous/flux_text_encoders/resolve/main/t5xxl_fp8_e4m3fn.safetensors",
|
||||
"size": "4.89GB"
|
||||
},
|
||||
{
|
||||
"name": "comfyanonymous/flux_text_encoders - t5xxl (fp8_e4m3fn_scaled)",
|
||||
"type": "clip",
|
||||
"base": "t5",
|
||||
"save_path": "text_encoders/t5",
|
||||
"description": "Text Encoders for FLUX (fp16)",
|
||||
"reference": "https://huggingface.co/comfyanonymous/flux_text_encoders",
|
||||
"filename": "t5xxl_fp8_e4m3fn_scaled.safetensors",
|
||||
"url": "https://huggingface.co/comfyanonymous/flux_text_encoders/resolve/main/t5xxl_fp8_e4m3fn_scaled.safetensors",
|
||||
"size": "5.16GB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "FLUX.1 [Dev] Diffusion model (scaled fp8)",
|
||||
"type": "diffusion_model",
|
||||
@@ -577,172 +680,6 @@
|
||||
"filename": "flux1-dev-Q5_0.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-dev-gguf/resolve/main/flux1-dev-Q5_0.gguf",
|
||||
"size": "8.27GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-dev-Q5_1.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q5_1/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-dev-gguf",
|
||||
"filename": "flux1-dev-Q5_1.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-dev-gguf/resolve/main/flux1-dev-Q5_1.gguf",
|
||||
"size": "9.01GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-dev-Q5_K_S.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q5_K_S/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-dev-gguf",
|
||||
"filename": "flux1-dev-Q5_K_S.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-dev-gguf/resolve/main/flux1-dev-Q5_K_S.gguf",
|
||||
"size": "8.29GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-dev-Q6_K.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q6_K/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-dev-gguf",
|
||||
"filename": "flux1-dev-Q6_K.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-dev-gguf/resolve/main/flux1-dev-Q6_K.gguf",
|
||||
"size": "9.86GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-dev-Q8_0.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q8_0/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-dev-gguf",
|
||||
"filename": "flux1-dev-Q8_0.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-dev-gguf/resolve/main/flux1-dev-Q8_0.gguf",
|
||||
"size": "12.7GB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "city96/flux1-schnell-F16.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (f16/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-schnell-gguf",
|
||||
"filename": "flux1-schnell-F16.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-schnell-gguf/resolve/main/flux1-schnell-F16.gguf",
|
||||
"size": "23.8GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-schnell-Q2_K.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q2_K/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-schnell-gguf",
|
||||
"filename": "flux1-schnell-Q2_K.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-schnell-gguf/resolve/main/flux1-schnell-Q2_K.gguf",
|
||||
"size": "4.01GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-schnell-Q3_K_S.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q3_K_S/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-schnell-gguf",
|
||||
"filename": "flux1-schnell-Q3_K_S.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-schnell-gguf/resolve/main/flux1-schnell-Q3_K_S.gguf",
|
||||
"size": "5.21GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-schnell-Q4_0.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q4_0/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-schnell-gguf",
|
||||
"filename": "flux1-schnell-Q4_0.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-schnell-gguf/resolve/main/flux1-schnell-Q4_0.gguf",
|
||||
"size": "6.77GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-schnell-Q4_1.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q4_1/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-schnell-gguf",
|
||||
"filename": "flux1-schnell-Q4_1.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-schnell-gguf/resolve/main/flux1-schnell-Q4_1.gguf",
|
||||
"size": "7.51GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-schnell-Q4_K_S.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q4_K_S/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-schnell-gguf",
|
||||
"filename": "flux1-schnell-Q4_K_S.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-schnell-gguf/resolve/main/flux1-schnell-Q4_K_S.gguf",
|
||||
"size": "6.78GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-schnell-Q5_0.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q5_0/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-schnell-gguf",
|
||||
"filename": "flux1-schnell-Q5_0.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-schnell-gguf/resolve/main/flux1-schnell-Q5_0.gguf",
|
||||
"size": "8.25GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-schnell-Q5_1.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q5_1/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-schnell-gguf",
|
||||
"filename": "flux1-schnell-Q5_1.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-schnell-gguf/resolve/main/flux1-schnell-Q5_1.gguf",
|
||||
"size": "8.99GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-schnell-Q5_K_S.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q5_K_S/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-schnell-gguf",
|
||||
"filename": "flux1-schnell-Q5_K_S.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-schnell-gguf/resolve/main/flux1-schnell-Q5_K_S.gguf",
|
||||
"size": "8.26GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-schnell-Q6_K.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q6_K/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-schnell-gguf",
|
||||
"filename": "flux1-schnell-Q6_K.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-schnell-gguf/resolve/main/flux1-schnell-Q6_K.gguf",
|
||||
"size": "9.83GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-schnell-Q8_0.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q8_0/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-schnell-gguf",
|
||||
"filename": "flux1-schnell-Q8_0.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-schnell-gguf/resolve/main/flux1-schnell-Q8_0.gguf",
|
||||
"size": "12.7GB"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -385,30 +385,7 @@ check_bypass_ssl()
|
||||
# Perform install
|
||||
processed_install = set()
|
||||
script_list_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), "startup-scripts", "install-scripts.txt")
|
||||
pip_map = None
|
||||
|
||||
|
||||
def get_installed_packages():
|
||||
global pip_map
|
||||
|
||||
if pip_map is None:
|
||||
try:
|
||||
result = subprocess.check_output([sys.executable, '-m', 'pip', 'list'], universal_newlines=True)
|
||||
|
||||
pip_map = {}
|
||||
for line in result.split('\n'):
|
||||
x = line.strip()
|
||||
if x:
|
||||
y = line.split()
|
||||
if y[0] == 'Package' or y[0].startswith('-'):
|
||||
continue
|
||||
|
||||
pip_map[y[0]] = y[1]
|
||||
except subprocess.CalledProcessError as e:
|
||||
print(f"[ComfyUI-Manager] Failed to retrieve the information of installed pip packages.")
|
||||
return set()
|
||||
|
||||
return pip_map
|
||||
pip_fixer = PIPFixer(get_installed_packages())
|
||||
|
||||
|
||||
def is_installed(name):
|
||||
@@ -620,8 +597,11 @@ if os.path.exists(script_list_path):
|
||||
print("\n[ComfyUI-Manager] Startup script completed.")
|
||||
print("#######################################################################\n")
|
||||
|
||||
pip_fixer.fix_broken()
|
||||
|
||||
del processed_install
|
||||
del pip_map
|
||||
del pip_fixer
|
||||
clear_pip_cache()
|
||||
|
||||
|
||||
def check_windows_event_loop_policy():
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[project]
|
||||
name = "comfyui-manager"
|
||||
description = "ComfyUI-Manager provides features to install and manage custom nodes for ComfyUI, as well as various functionalities to assist with ComfyUI."
|
||||
version = "2.51.9"
|
||||
version = "2.54"
|
||||
license = { file = "LICENSE.txt" }
|
||||
dependencies = ["GitPython", "PyGithub", "matrix-client==0.4.0", "transformers", "huggingface-hub>0.20", "typer", "rich", "typing-extensions"]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user