Compare commits
103 Commits
2.51.9
...
refactor/p
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
34a48fbae4 | ||
|
|
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 | ||
|
|
fecd317275 | ||
|
|
d848dcf56c | ||
|
|
df849b4ca8 | ||
|
|
0b3e627de6 | ||
|
|
4fc1fed44a | ||
|
|
bf2ffe8dfa | ||
|
|
e73e3b7726 | ||
|
|
e519c9c5f3 | ||
|
|
76aa2e9354 | ||
|
|
67e13d7249 | ||
|
|
60de0ffb3a | ||
|
|
d4fa00ab96 | ||
|
|
25aebd030a | ||
|
|
7ce5b8f5fb | ||
|
|
af298b86d7 | ||
|
|
cfdb687db3 | ||
|
|
6f9feb00ee | ||
|
|
7214c58b4b | ||
|
|
47aeefe395 | ||
|
|
a9708513aa | ||
|
|
26c1db4091 | ||
|
|
37e07338ca | ||
|
|
c4879aef3d | ||
|
|
ac9b41fdae | ||
|
|
137d998e46 | ||
|
|
b0eda6166d | ||
|
|
d0c48ad350 | ||
|
|
f20c5b66b9 | ||
|
|
536c27233c | ||
|
|
92a8a98000 | ||
|
|
40a4631eba | ||
|
|
cd71e87d0e | ||
|
|
8612bb1dea | ||
|
|
f1a0dabf15 | ||
|
|
17e256544c | ||
|
|
a401c51364 | ||
|
|
a68eb721d5 | ||
|
|
cd98b90c35 | ||
|
|
b56f3fb3a8 | ||
|
|
4e7e66ac9b | ||
|
|
039fdc0384 | ||
|
|
cbd19c4b48 | ||
|
|
e166ba5c24 | ||
|
|
8c45a5ee84 | ||
|
|
81513888e3 | ||
|
|
b1ed3eff49 | ||
|
|
f8d9425c7f | ||
|
|
c7ea960718 | ||
|
|
ca4c09ceca | ||
|
|
16176d759a | ||
|
|
8b11764b08 | ||
|
|
a9dabbdd20 |
2
.github/workflows/publish.yml
vendored
2
.github/workflows/publish.yml
vendored
@@ -3,7 +3,7 @@ on:
|
|||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main-blocked
|
||||||
paths:
|
paths:
|
||||||
- "pyproject.toml"
|
- "pyproject.toml"
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
5799
github-stats.json
5799
github-stats.json
File diff suppressed because it is too large
Load Diff
0
glob/__init__.py
Normal file
0
glob/__init__.py
Normal file
174
glob/git_wrapper.py
Normal file
174
glob/git_wrapper.py
Normal file
@@ -0,0 +1,174 @@
|
|||||||
|
import pygit2
|
||||||
|
import os
|
||||||
|
from tqdm import tqdm
|
||||||
|
import traceback
|
||||||
|
|
||||||
|
class GitProgress(pygit2.RemoteCallbacks):
|
||||||
|
def __init__(self):
|
||||||
|
super().__init__()
|
||||||
|
self.pbar = None
|
||||||
|
|
||||||
|
def transfer_progress(self, stats):
|
||||||
|
if self.pbar is None:
|
||||||
|
self.pbar = tqdm(total=stats.total_objects, unit="obj", desc="Fetching objects")
|
||||||
|
self.pbar.n = stats.received_objects
|
||||||
|
self.pbar.refresh()
|
||||||
|
if stats.received_objects == stats.total_objects:
|
||||||
|
self.pbar.close()
|
||||||
|
self.pbar = None
|
||||||
|
|
||||||
|
|
||||||
|
class Remote:
|
||||||
|
def __init__(self, repo, remote):
|
||||||
|
self.repo = repo
|
||||||
|
self.remote = remote
|
||||||
|
|
||||||
|
def get_default_branch(self, remote_name='origin'):
|
||||||
|
remote = self.repo.remotes[remote_name]
|
||||||
|
remote.fetch() # Fetch latest data from the remote
|
||||||
|
|
||||||
|
# Look for the remote HEAD reference
|
||||||
|
head_ref = f'refs/remotes/{remote_name}/HEAD'
|
||||||
|
if head_ref in self.repo.references:
|
||||||
|
# Resolve the symbolic reference to get the actual branch
|
||||||
|
target_ref = self.repo.references[head_ref].resolve().name
|
||||||
|
return target_ref.replace(f'refs/remotes/{remote_name}/', '')
|
||||||
|
else:
|
||||||
|
raise ValueError(f"Could not determine the default branch for remote '{remote_name}'")
|
||||||
|
|
||||||
|
|
||||||
|
def pull(self, remote_name='origin'):
|
||||||
|
try:
|
||||||
|
# Detect if we are in detached HEAD state
|
||||||
|
if self.repo.head_is_detached:
|
||||||
|
# Find the default branch
|
||||||
|
branch_name = self.get_default_branch(remote_name)
|
||||||
|
|
||||||
|
# Checkout the branch if exists, or create it
|
||||||
|
branch_ref = f"refs/heads/{branch_name}"
|
||||||
|
if branch_ref in self.repo.references:
|
||||||
|
self.repo.checkout(branch_ref)
|
||||||
|
else:
|
||||||
|
# Create and checkout the branch
|
||||||
|
target_commit = self.repo.lookup_reference(f"refs/remotes/{remote_name}/{branch_name}").target
|
||||||
|
self.repo.create_branch(branch_name, self.repo[target_commit])
|
||||||
|
self.repo.checkout(branch_ref)
|
||||||
|
|
||||||
|
# Get the current branch
|
||||||
|
current_branch = self.repo.head.shorthand
|
||||||
|
|
||||||
|
# Fetch from the remote
|
||||||
|
remote = self.repo.remotes[remote_name]
|
||||||
|
remote.fetch()
|
||||||
|
|
||||||
|
# Merge changes from the remote
|
||||||
|
remote_branch_ref = f"refs/remotes/{remote_name}/{current_branch}"
|
||||||
|
remote_branch = self.repo.lookup_reference(remote_branch_ref).target
|
||||||
|
|
||||||
|
self.repo.merge(remote_branch)
|
||||||
|
|
||||||
|
# Check for merge conflicts
|
||||||
|
if self.repo.index.conflicts is not None:
|
||||||
|
print("Merge conflicts detected!")
|
||||||
|
for conflict in self.repo.index.conflicts:
|
||||||
|
print(f"Conflict: {conflict}")
|
||||||
|
return
|
||||||
|
|
||||||
|
# Commit the merge
|
||||||
|
user = self.repo.default_signature
|
||||||
|
merge_commit = self.repo.create_commit(
|
||||||
|
'HEAD',
|
||||||
|
user,
|
||||||
|
user,
|
||||||
|
f"Merge branch '{current_branch}' from {remote_name}",
|
||||||
|
self.repo.index.write_tree(),
|
||||||
|
[self.repo.head.target, remote_branch]
|
||||||
|
)
|
||||||
|
|
||||||
|
except Exception as e:
|
||||||
|
traceback.print_exc()
|
||||||
|
print(f"An error occurred: {e}")
|
||||||
|
self.repo.state_cleanup() # Clean up the merge state if necessary
|
||||||
|
|
||||||
|
|
||||||
|
class Repo:
|
||||||
|
def __init__(self, repo_path):
|
||||||
|
self.repo = pygit2.Repository(repo_path)
|
||||||
|
|
||||||
|
def remote(self, name="origin"):
|
||||||
|
return Remote(self.repo, self.repo.remotes[name])
|
||||||
|
|
||||||
|
def update_recursive(self):
|
||||||
|
update_submodules(self.repo)
|
||||||
|
|
||||||
|
|
||||||
|
def resolve_repository_state(repo):
|
||||||
|
if repo.is_empty:
|
||||||
|
raise ValueError("Repository is empty. Cannot proceed with submodule update.")
|
||||||
|
|
||||||
|
try:
|
||||||
|
state = repo.state() # Call the state method
|
||||||
|
except Exception as e:
|
||||||
|
print(f"Error retrieving repository state: {e}")
|
||||||
|
raise
|
||||||
|
|
||||||
|
if state != pygit2.GIT_REPOSITORY_STATE_NONE:
|
||||||
|
if state in (pygit2.GIT_REPOSITORY_STATE_MERGE, pygit2.GIT_REPOSITORY_STATE_REVERT):
|
||||||
|
print(f"Conflict detected. Cleaning up repository state... {repo.path} / {state}")
|
||||||
|
repo.state_cleanup()
|
||||||
|
print("Repository state cleaned up.")
|
||||||
|
else:
|
||||||
|
raise RuntimeError(f"Unsupported repository state: {state}")
|
||||||
|
|
||||||
|
|
||||||
|
def update_submodules(repo):
|
||||||
|
try:
|
||||||
|
resolve_repository_state(repo)
|
||||||
|
except Exception as e:
|
||||||
|
print(f"Error resolving repository state: {e}")
|
||||||
|
return
|
||||||
|
|
||||||
|
gitmodules_path = os.path.join(repo.workdir, ".gitmodules")
|
||||||
|
if not os.path.exists(gitmodules_path):
|
||||||
|
return
|
||||||
|
|
||||||
|
with open(gitmodules_path, "r") as f:
|
||||||
|
lines = f.readlines()
|
||||||
|
|
||||||
|
submodules = []
|
||||||
|
submodule_path = None
|
||||||
|
submodule_url = None
|
||||||
|
|
||||||
|
for line in lines:
|
||||||
|
if line.strip().startswith("[submodule"):
|
||||||
|
if submodule_path and submodule_url:
|
||||||
|
submodules.append((submodule_path, submodule_url))
|
||||||
|
submodule_path = None
|
||||||
|
submodule_url = None
|
||||||
|
elif line.strip().startswith("path ="):
|
||||||
|
submodule_path = line.strip().split("=", 1)[1].strip()
|
||||||
|
elif line.strip().startswith("url ="):
|
||||||
|
submodule_url = line.strip().split("=", 1)[1].strip()
|
||||||
|
|
||||||
|
if submodule_path and submodule_url:
|
||||||
|
submodules.append((submodule_path, submodule_url))
|
||||||
|
|
||||||
|
for path, url in submodules:
|
||||||
|
submodule_repo_path = os.path.join(repo.workdir, path)
|
||||||
|
|
||||||
|
print(f"submodule_repo_path: {submodule_repo_path}")
|
||||||
|
|
||||||
|
if not os.path.exists(submodule_repo_path):
|
||||||
|
print(f"Cloning submodule {path}...")
|
||||||
|
pygit2.clone_repository(url, submodule_repo_path, callbacks=GitProgress())
|
||||||
|
else:
|
||||||
|
print(f"Updating submodule {path}...")
|
||||||
|
submodule_repo = Repo(submodule_repo_path)
|
||||||
|
submodule_repo.remote("origin").pull()
|
||||||
|
|
||||||
|
update_submodules(submodule_repo)
|
||||||
|
|
||||||
|
|
||||||
|
def clone_from(git_url, repo_dir, recursive=True):
|
||||||
|
pygit2.clone_repository(git_url, repo_dir, callbacks=GitProgress())
|
||||||
|
Repo(repo_dir).update_recursive()
|
||||||
@@ -23,13 +23,35 @@ sys.path.append(glob_path)
|
|||||||
import cm_global
|
import cm_global
|
||||||
from manager_util import *
|
from manager_util import *
|
||||||
|
|
||||||
version = [2, 51, 9]
|
version = [2, 53]
|
||||||
version_str = f"V{version[0]}.{version[1]}" + (f'.{version[2]}' if len(version) > 2 else '')
|
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__), '..'))
|
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, '..'))
|
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')
|
comfy_path = os.environ.get('COMFYUI_PATH')
|
||||||
if comfy_path is None:
|
if comfy_path is None:
|
||||||
comfy_path = os.path.abspath(os.path.join(custom_nodes_path, '..'))
|
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 = os.environ.copy()
|
||||||
new_env["COMFYUI_PATH"] = comfy_path
|
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, _ = process.communicate()
|
||||||
output = output.decode('utf-8').strip()
|
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 do_update:
|
||||||
if "CUSTOM NODE PULL: Success" in output:
|
if "CUSTOM NODE PULL: Success" in output:
|
||||||
process.wait()
|
process.wait()
|
||||||
print(f"\rUpdated: {path}")
|
print(f"\x1b[2K\rUpdated: {path}")
|
||||||
return True, True # updated
|
return True, True # updated
|
||||||
elif "CUSTOM NODE PULL: None" in output:
|
elif "CUSTOM NODE PULL: None" in output:
|
||||||
process.wait()
|
process.wait()
|
||||||
return False, True # there is no update
|
return False, True # there is no update
|
||||||
else:
|
else:
|
||||||
print(f"\rUpdate error: {path}")
|
print(f"\x1b[2K\rUpdate error: {path}")
|
||||||
process.wait()
|
process.wait()
|
||||||
return False, False # update failed
|
return False, False # update failed
|
||||||
else:
|
else:
|
||||||
@@ -384,7 +406,7 @@ def __win_check_git_update(path, do_fetch=False, do_update=False):
|
|||||||
process.wait()
|
process.wait()
|
||||||
return False, True
|
return False, True
|
||||||
else:
|
else:
|
||||||
print(f"\rFetch error: {path}")
|
print(f"\x1b[2K\rFetch error: {path}")
|
||||||
print(f"\n{output}\n")
|
print(f"\n{output}\n")
|
||||||
process.wait()
|
process.wait()
|
||||||
return False, True
|
return False, True
|
||||||
@@ -394,7 +416,7 @@ def __win_check_git_pull(path):
|
|||||||
new_env = os.environ.copy()
|
new_env = os.environ.copy()
|
||||||
new_env["COMFYUI_PATH"] = comfy_path
|
new_env["COMFYUI_PATH"] = comfy_path
|
||||||
command = [sys.executable, git_script_path, "--pull", 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()
|
process.wait()
|
||||||
|
|
||||||
|
|
||||||
@@ -408,6 +430,7 @@ def execute_install_script(url, repo_path, lazy_mode=False, instant_execution=Fa
|
|||||||
else:
|
else:
|
||||||
if os.path.exists(requirements_path):
|
if os.path.exists(requirements_path):
|
||||||
print("Install: pip packages")
|
print("Install: pip packages")
|
||||||
|
pip_fixer = PIPFixer(get_installed_packages())
|
||||||
with open(requirements_path, "r") as requirements_file:
|
with open(requirements_path, "r") as requirements_file:
|
||||||
for line in requirements_file:
|
for line in requirements_file:
|
||||||
#handle comments
|
#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('#'):
|
if package_name.strip() != "" and not package_name.startswith('#'):
|
||||||
try_install_script(url, repo_path, install_cmd, instant_execution=instant_execution)
|
try_install_script(url, repo_path, install_cmd, instant_execution=instant_execution)
|
||||||
|
|
||||||
|
pip_fixer.fix_broken()
|
||||||
|
|
||||||
if os.path.exists(install_script_path):
|
if os.path.exists(install_script_path):
|
||||||
print(f"Install: install script")
|
print(f"Install: install script")
|
||||||
install_cmd = [sys.executable, "install.py"]
|
install_cmd = [sys.executable, "install.py"]
|
||||||
@@ -559,11 +584,11 @@ def gitclone_install(files, instant_execution=False, msg_prefix=''):
|
|||||||
try:
|
try:
|
||||||
print(f"Download: git clone '{url}'")
|
print(f"Download: git clone '{url}'")
|
||||||
repo_name = os.path.splitext(os.path.basename(url))[0]
|
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
|
# Clone the repository from the remote URL
|
||||||
if not instant_execution and platform.system() == 'Windows':
|
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:
|
if res != 0:
|
||||||
return False
|
return False
|
||||||
else:
|
else:
|
||||||
@@ -687,6 +712,22 @@ async def get_data_by_mode(mode, filename, channel_url=None):
|
|||||||
return json_obj
|
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):
|
def gitclone_fix(files, instant_execution=False):
|
||||||
print(f"Try fixing: {files}")
|
print(f"Try fixing: {files}")
|
||||||
for url in files:
|
for url in files:
|
||||||
@@ -698,13 +739,15 @@ def gitclone_fix(files, instant_execution=False):
|
|||||||
url = url[:-1]
|
url = url[:-1]
|
||||||
try:
|
try:
|
||||||
repo_name = os.path.splitext(os.path.basename(url))[0]
|
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'):
|
if repo_path is not None:
|
||||||
repo_path = repo_path+'.disabled'
|
repo_path = repo_path[1]
|
||||||
|
|
||||||
if not execute_install_script(url, repo_path, instant_execution=instant_execution):
|
if not execute_install_script(url, repo_path, instant_execution=instant_execution):
|
||||||
return False
|
return False
|
||||||
|
else:
|
||||||
|
print(f"Custom node not found: {repo_name}")
|
||||||
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
print(f"Install(git-clone) error: {url} / {e}", file=sys.stderr)
|
print(f"Install(git-clone) error: {url} / {e}", file=sys.stderr)
|
||||||
@@ -751,12 +794,12 @@ def gitclone_uninstall(files):
|
|||||||
url = url[:-1]
|
url = url[:-1]
|
||||||
try:
|
try:
|
||||||
dir_name = os.path.splitext(os.path.basename(url))[0].replace(".git", "")
|
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 repo_path is None:
|
||||||
if dir_path == '/' or dir_path[1:] == ":/" or dir_path == '':
|
continue
|
||||||
print(f"Uninstall(git-clone) error: invalid path '{dir_path}' for '{url}'")
|
|
||||||
return False
|
dir_path = repo_path[1]
|
||||||
|
|
||||||
install_script_path = os.path.join(dir_path, "uninstall.py")
|
install_script_path = os.path.join(dir_path, "uninstall.py")
|
||||||
disable_script_path = os.path.join(dir_path, "disable.py")
|
disable_script_path = os.path.join(dir_path, "disable.py")
|
||||||
@@ -772,10 +815,7 @@ def gitclone_uninstall(files):
|
|||||||
if code != 0:
|
if code != 0:
|
||||||
print(f"An error occurred during the execution of the disable.py script. Only the '{dir_path}' will be deleted.")
|
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)
|
rmtree(dir_path)
|
||||||
elif os.path.exists(dir_path + ".disabled"):
|
|
||||||
rmtree(dir_path + ".disabled")
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
print(f"Uninstall(git-clone) error: {url} / {e}", file=sys.stderr)
|
print(f"Uninstall(git-clone) error: {url} / {e}", file=sys.stderr)
|
||||||
return False
|
return False
|
||||||
@@ -798,12 +838,12 @@ def gitclone_set_active(files, is_disable):
|
|||||||
url = url[:-1]
|
url = url[:-1]
|
||||||
try:
|
try:
|
||||||
dir_name = os.path.splitext(os.path.basename(url))[0].replace(".git", "")
|
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 repo_path is None:
|
||||||
if dir_path == '/' or dir_path[1:] == ":/" or dir_path == '':
|
continue
|
||||||
print(f"{action_name}(git-clone) error: invalid path '{dir_path}' for '{url}'")
|
|
||||||
return False
|
dir_path = repo_path[1]
|
||||||
|
|
||||||
if is_disable:
|
if is_disable:
|
||||||
current_path = dir_path
|
current_path = dir_path
|
||||||
@@ -840,10 +880,12 @@ def gitclone_update(files, instant_execution=False, skip_script=False, msg_prefi
|
|||||||
url = url[:-1]
|
url = url[:-1]
|
||||||
try:
|
try:
|
||||||
repo_name = os.path.splitext(os.path.basename(url))[0].replace(".git", "")
|
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'):
|
if repo_path is None:
|
||||||
repo_path = repo_path+'.disabled'
|
continue
|
||||||
|
|
||||||
|
repo_path = repo_path[1]
|
||||||
|
|
||||||
git_pull(repo_path)
|
git_pull(repo_path)
|
||||||
|
|
||||||
@@ -914,10 +956,14 @@ def lookup_customnode_by_url(data, target):
|
|||||||
for x in data['custom_nodes']:
|
for x in data['custom_nodes']:
|
||||||
if target in x['files']:
|
if target in x['files']:
|
||||||
dir_name = os.path.splitext(os.path.basename(target))[0].replace(".git", "")
|
dir_name = os.path.splitext(os.path.basename(target))[0].replace(".git", "")
|
||||||
dir_path = os.path.join(custom_nodes_path, dir_name)
|
repo_path = lookup_installed_custom_nodes(dir_name)
|
||||||
if os.path.exists(dir_path):
|
|
||||||
|
if repo_path is None:
|
||||||
|
continue
|
||||||
|
|
||||||
|
if repo_path[0]:
|
||||||
x['installed'] = 'True'
|
x['installed'] = 'True'
|
||||||
elif os.path.exists(dir_path + ".disabled"):
|
else:
|
||||||
x['installed'] = 'Disabled'
|
x['installed'] = 'Disabled'
|
||||||
return x
|
return x
|
||||||
|
|
||||||
@@ -926,14 +972,16 @@ def lookup_customnode_by_url(data, target):
|
|||||||
|
|
||||||
def simple_check_custom_node(url):
|
def simple_check_custom_node(url):
|
||||||
dir_name = os.path.splitext(os.path.basename(url))[0].replace(".git", "")
|
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)
|
||||||
if os.path.exists(dir_path):
|
|
||||||
return 'installed'
|
|
||||||
elif os.path.exists(dir_path+'.disabled'):
|
|
||||||
return 'disabled'
|
|
||||||
|
|
||||||
|
if repo_path is None:
|
||||||
return 'not-installed'
|
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):
|
def check_a_custom_node_installed(item, do_fetch=False, do_update_check=True, do_update=False):
|
||||||
item['installed'] = 'None'
|
item['installed'] = 'None'
|
||||||
@@ -945,8 +993,12 @@ def check_a_custom_node_installed(item, do_fetch=False, do_update_check=True, do
|
|||||||
url = url[:-1]
|
url = url[:-1]
|
||||||
|
|
||||||
dir_name = os.path.splitext(os.path.basename(url))[0].replace(".git", "")
|
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)
|
||||||
if os.path.exists(dir_path):
|
|
||||||
|
if repo_path is None:
|
||||||
|
item['installed'] = 'False'
|
||||||
|
elif repo_path[0]:
|
||||||
|
dir_path = repo_path[1]
|
||||||
try:
|
try:
|
||||||
item['installed'] = 'True' # default
|
item['installed'] = 'True' # default
|
||||||
|
|
||||||
@@ -965,17 +1017,23 @@ def check_a_custom_node_installed(item, do_fetch=False, do_update_check=True, do
|
|||||||
else:
|
else:
|
||||||
item['installed'] = 'True'
|
item['installed'] = 'True'
|
||||||
|
|
||||||
elif os.path.exists(dir_path + ".disabled"):
|
|
||||||
item['installed'] = 'Disabled'
|
|
||||||
|
|
||||||
else:
|
else:
|
||||||
item['installed'] = 'False'
|
item['installed'] = 'Disabled'
|
||||||
|
|
||||||
elif item['install_type'] == 'copy' and len(item['files']) == 1:
|
elif item['install_type'] == 'copy' and len(item['files']) == 1:
|
||||||
dir_name = os.path.basename(item['files'][0])
|
dir_name = os.path.basename(item['files'][0])
|
||||||
|
|
||||||
if item['files'][0].endswith('.py'):
|
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:
|
elif 'js_path' in item:
|
||||||
base_path = os.path.join(js_path, item['js_path'])
|
base_path = os.path.join(js_path, item['js_path'])
|
||||||
else:
|
else:
|
||||||
@@ -987,8 +1045,6 @@ def check_a_custom_node_installed(item, do_fetch=False, do_update_check=True, do
|
|||||||
item['installed'] = 'Fail'
|
item['installed'] = 'Fail'
|
||||||
else:
|
else:
|
||||||
item['installed'] = 'True'
|
item['installed'] = 'True'
|
||||||
elif os.path.exists(file_path + ".disabled"):
|
|
||||||
item['installed'] = 'Disabled'
|
|
||||||
else:
|
else:
|
||||||
item['installed'] = 'False'
|
item['installed'] = 'False'
|
||||||
|
|
||||||
@@ -1025,9 +1081,16 @@ def get_current_snapshot():
|
|||||||
git_custom_nodes = {}
|
git_custom_nodes = {}
|
||||||
file_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
|
# Get custom nodes hash
|
||||||
for path in os.listdir(custom_nodes_path):
|
for base_path in base_paths:
|
||||||
fullpath = os.path.join(custom_nodes_path, path)
|
for path in os.listdir(base_path):
|
||||||
|
fullpath = os.path.join(base_path, path)
|
||||||
|
|
||||||
if os.path.isdir(fullpath):
|
if os.path.isdir(fullpath):
|
||||||
is_disabled = path.endswith(".disabled")
|
is_disabled = path.endswith(".disabled")
|
||||||
|
|||||||
@@ -62,7 +62,7 @@ def is_allowed_security_level(level):
|
|||||||
|
|
||||||
async def get_risky_level(files, pip_packages):
|
async def get_risky_level(files, pip_packages):
|
||||||
json_data1 = await core.get_data_by_mode('local', 'custom-node-list.json')
|
json_data1 = await core.get_data_by_mode('local', 'custom-node-list.json')
|
||||||
json_data2 = await core.get_data_by_mode('cache', 'custom-node-list.json', channel_url='https://github.com/ltdrdata/ComfyUI-Manager/raw/main')
|
json_data2 = await core.get_data_by_mode('cache', 'custom-node-list.json', channel_url='https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main')
|
||||||
|
|
||||||
all_urls = set()
|
all_urls = set()
|
||||||
for x in json_data1['custom_nodes'] + json_data2['custom_nodes']:
|
for x in json_data1['custom_nodes'] + json_data2['custom_nodes']:
|
||||||
@@ -1216,6 +1216,11 @@ def restart(self):
|
|||||||
exit(0)
|
exit(0)
|
||||||
|
|
||||||
print(f"\nRestarting... [Legacy Mode]\n\n")
|
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'):
|
if sys.platform.startswith('win32'):
|
||||||
return os.execv(sys.executable, ['"' + sys.executable + '"', '"' + sys.argv[0] + '"'] + sys.argv[1:])
|
return os.execv(sys.executable, ['"' + sys.executable + '"', '"' + sys.argv[0] + '"'] + sys.argv[1:])
|
||||||
else:
|
else:
|
||||||
|
|||||||
@@ -1,3 +1,6 @@
|
|||||||
|
import subprocess
|
||||||
|
import sys
|
||||||
|
|
||||||
# DON'T USE StrictVersion - cannot handle pre_release version
|
# DON'T USE StrictVersion - cannot handle pre_release version
|
||||||
# try:
|
# try:
|
||||||
# from distutils.version import StrictVersion
|
# from distutils.version import StrictVersion
|
||||||
@@ -62,3 +65,150 @@ class StrictVersion:
|
|||||||
def __ne__(self, other):
|
def __ne__(self, other):
|
||||||
return not 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);
|
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'",
|
title: "Open 'esheep'",
|
||||||
callback: () => {
|
callback: () => {
|
||||||
|
|||||||
@@ -12,6 +12,10 @@ export async function sleep(ms) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export function rebootAPI() {
|
export function rebootAPI() {
|
||||||
|
if ('electronAPI' in window) {
|
||||||
|
window.electronAPI.restartApp();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
if (confirm("Are you sure you'd like to reboot the server?")) {
|
if (confirm("Are you sure you'd like to reboot the server?")) {
|
||||||
try {
|
try {
|
||||||
api.fetchApi("/manager/reboot");
|
api.fetchApi("/manager/reboot");
|
||||||
|
|||||||
337
model-list.json
337
model-list.json
@@ -312,7 +312,7 @@
|
|||||||
"name": "negative_hand Negative Embedding",
|
"name": "negative_hand Negative Embedding",
|
||||||
"type": "embeddings",
|
"type": "embeddings",
|
||||||
"base": "SD1.5",
|
"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.",
|
"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",
|
"reference": "https://civitai.com/models/56519/negativehand-negative-embedding",
|
||||||
"filename": "negative_hand-neg.pt",
|
"filename": "negative_hand-neg.pt",
|
||||||
@@ -323,7 +323,7 @@
|
|||||||
"name": "bad_prompt Negative Embedding",
|
"name": "bad_prompt Negative Embedding",
|
||||||
"type": "embeddings",
|
"type": "embeddings",
|
||||||
"base": "SD1.5",
|
"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.",
|
"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",
|
"reference": "https://civitai.com/models/55700/badprompt-negative-embedding",
|
||||||
"filename": "bad_prompt_version2-neg.pt",
|
"filename": "bad_prompt_version2-neg.pt",
|
||||||
@@ -334,7 +334,7 @@
|
|||||||
"name": "Deep Negative V1.75",
|
"name": "Deep Negative V1.75",
|
||||||
"type": "embeddings",
|
"type": "embeddings",
|
||||||
"base": "SD1.5",
|
"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.",
|
"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",
|
"reference": "https://civitai.com/models/4629/deep-negative-v1x",
|
||||||
"filename": "ng_deepnegative_v1_75t.pt",
|
"filename": "ng_deepnegative_v1_75t.pt",
|
||||||
@@ -345,7 +345,7 @@
|
|||||||
"name": "EasyNegative",
|
"name": "EasyNegative",
|
||||||
"type": "embeddings",
|
"type": "embeddings",
|
||||||
"base": "SD1.5",
|
"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.",
|
"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",
|
"reference": "https://civitai.com/models/7808/easynegative",
|
||||||
"filename": "easynegative.safetensors",
|
"filename": "easynegative.safetensors",
|
||||||
@@ -521,7 +521,7 @@
|
|||||||
"name": "sd_xl_base_1.0_0.9vae.safetensors",
|
"name": "sd_xl_base_1.0_0.9vae.safetensors",
|
||||||
"type": "checkpoint",
|
"type": "checkpoint",
|
||||||
"base": "SDXL",
|
"base": "SDXL",
|
||||||
"save_path": "default",
|
"save_path": "checkpoints/SDXL",
|
||||||
"description": "Stable Diffusion XL base model (VAE 0.9)",
|
"description": "Stable Diffusion XL base model (VAE 0.9)",
|
||||||
"reference": "https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0",
|
"reference": "https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0",
|
||||||
"filename": "sd_xl_base_1.0_0.9vae.safetensors",
|
"filename": "sd_xl_base_1.0_0.9vae.safetensors",
|
||||||
@@ -532,7 +532,7 @@
|
|||||||
"name": "sd_xl_base_1.0.safetensors",
|
"name": "sd_xl_base_1.0.safetensors",
|
||||||
"type": "checkpoint",
|
"type": "checkpoint",
|
||||||
"base": "SDXL",
|
"base": "SDXL",
|
||||||
"save_path": "default",
|
"save_path": "checkpoints/SDXL",
|
||||||
"description": "Stable Diffusion XL base model",
|
"description": "Stable Diffusion XL base model",
|
||||||
"reference": "https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0",
|
"reference": "https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0",
|
||||||
"filename": "sd_xl_base_1.0.safetensors",
|
"filename": "sd_xl_base_1.0.safetensors",
|
||||||
@@ -543,7 +543,7 @@
|
|||||||
"name": "sd_xl_refiner_1.0_0.9vae.safetensors",
|
"name": "sd_xl_refiner_1.0_0.9vae.safetensors",
|
||||||
"type": "checkpoint",
|
"type": "checkpoint",
|
||||||
"base": "SDXL",
|
"base": "SDXL",
|
||||||
"save_path": "default",
|
"save_path": "checkpoints/SDXL",
|
||||||
"description": "Stable Diffusion XL refiner model (VAE 0.9)",
|
"description": "Stable Diffusion XL refiner model (VAE 0.9)",
|
||||||
"reference": "https://huggingface.co/stabilityai/stable-diffusion-xl-refiner-1.0",
|
"reference": "https://huggingface.co/stabilityai/stable-diffusion-xl-refiner-1.0",
|
||||||
"filename": "sd_xl_refiner_1.0_0.9vae.safetensors",
|
"filename": "sd_xl_refiner_1.0_0.9vae.safetensors",
|
||||||
@@ -554,7 +554,7 @@
|
|||||||
"name": "stable-diffusion-xl-refiner-1.0",
|
"name": "stable-diffusion-xl-refiner-1.0",
|
||||||
"type": "checkpoint",
|
"type": "checkpoint",
|
||||||
"base": "SDXL",
|
"base": "SDXL",
|
||||||
"save_path": "default",
|
"save_path": "checkpoints/SDXL",
|
||||||
"description": "Stable Diffusion XL refiner model",
|
"description": "Stable Diffusion XL refiner model",
|
||||||
"reference": "https://huggingface.co/stabilityai/stable-diffusion-xl-refiner-1.0",
|
"reference": "https://huggingface.co/stabilityai/stable-diffusion-xl-refiner-1.0",
|
||||||
"filename": "sd_xl_refiner_1.0.safetensors",
|
"filename": "sd_xl_refiner_1.0.safetensors",
|
||||||
@@ -587,7 +587,7 @@
|
|||||||
"name": "sd_xl_offset_example-lora_1.0.safetensors",
|
"name": "sd_xl_offset_example-lora_1.0.safetensors",
|
||||||
"type": "lora",
|
"type": "lora",
|
||||||
"base": "SDXL",
|
"base": "SDXL",
|
||||||
"save_path": "default",
|
"save_path": "loras/SDXL",
|
||||||
"description": "Stable Diffusion XL offset LoRA",
|
"description": "Stable Diffusion XL offset LoRA",
|
||||||
"reference": "https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0",
|
"reference": "https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0",
|
||||||
"filename": "sd_xl_offset_example-lora_1.0.safetensors",
|
"filename": "sd_xl_offset_example-lora_1.0.safetensors",
|
||||||
@@ -843,6 +843,40 @@
|
|||||||
"size": "472MB"
|
"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",
|
"name": "google-t5/t5-base",
|
||||||
"type": "clip",
|
"type": "clip",
|
||||||
@@ -854,7 +888,6 @@
|
|||||||
"url": "https://huggingface.co/google-t5/t5-base/resolve/main/model.safetensors",
|
"url": "https://huggingface.co/google-t5/t5-base/resolve/main/model.safetensors",
|
||||||
"size": "892MB"
|
"size": "892MB"
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
"name": "google-t5/t5-v1_1-xxl_encoderonly-fp16",
|
"name": "google-t5/t5-v1_1-xxl_encoderonly-fp16",
|
||||||
"type": "clip",
|
"type": "clip",
|
||||||
@@ -1018,7 +1051,7 @@
|
|||||||
"name": "v1-5-pruned-emaonly.ckpt",
|
"name": "v1-5-pruned-emaonly.ckpt",
|
||||||
"type": "checkpoint",
|
"type": "checkpoint",
|
||||||
"base": "SD1.5",
|
"base": "SD1.5",
|
||||||
"save_path": "default",
|
"save_path": "checkpoints/SD1.5",
|
||||||
"description": "Stable Diffusion 1.5 base model",
|
"description": "Stable Diffusion 1.5 base model",
|
||||||
"reference": "https://huggingface.co/runwayml/stable-diffusion-v1-5",
|
"reference": "https://huggingface.co/runwayml/stable-diffusion-v1-5",
|
||||||
"filename": "v1-5-pruned-emaonly.ckpt",
|
"filename": "v1-5-pruned-emaonly.ckpt",
|
||||||
@@ -1029,7 +1062,7 @@
|
|||||||
"name": "v2-1_512-ema-pruned.safetensors",
|
"name": "v2-1_512-ema-pruned.safetensors",
|
||||||
"type": "checkpoint",
|
"type": "checkpoint",
|
||||||
"base": "SD2",
|
"base": "SD2",
|
||||||
"save_path": "default",
|
"save_path": "checkpoints/SD2.1",
|
||||||
"description": "Stable Diffusion 2 base model (512)",
|
"description": "Stable Diffusion 2 base model (512)",
|
||||||
"reference": "https://huggingface.co/stabilityai/stable-diffusion-2-1-base",
|
"reference": "https://huggingface.co/stabilityai/stable-diffusion-2-1-base",
|
||||||
"filename": "v2-1_512-ema-pruned.safetensors",
|
"filename": "v2-1_512-ema-pruned.safetensors",
|
||||||
@@ -1040,7 +1073,7 @@
|
|||||||
"name": "v2-1_768-ema-pruned.safetensors",
|
"name": "v2-1_768-ema-pruned.safetensors",
|
||||||
"type": "checkpoint",
|
"type": "checkpoint",
|
||||||
"base": "SD2",
|
"base": "SD2",
|
||||||
"save_path": "default",
|
"save_path": "checkpoints/SD2.1",
|
||||||
"description": "Stable Diffusion 2 base model (768)",
|
"description": "Stable Diffusion 2 base model (768)",
|
||||||
"reference": "https://huggingface.co/stabilityai/stable-diffusion-2-1",
|
"reference": "https://huggingface.co/stabilityai/stable-diffusion-2-1",
|
||||||
"filename": "v2-1_768-ema-pruned.safetensors",
|
"filename": "v2-1_768-ema-pruned.safetensors",
|
||||||
@@ -1051,7 +1084,7 @@
|
|||||||
"name": "AbyssOrangeMix2 (hard)",
|
"name": "AbyssOrangeMix2 (hard)",
|
||||||
"type": "checkpoint",
|
"type": "checkpoint",
|
||||||
"base": "SD1.5",
|
"base": "SD1.5",
|
||||||
"save_path": "default",
|
"save_path": "checkpoints/SD1.5",
|
||||||
"description": "AbyssOrangeMix2 - hard version (anime style)",
|
"description": "AbyssOrangeMix2 - hard version (anime style)",
|
||||||
"reference": "https://huggingface.co/WarriorMama777/OrangeMixs",
|
"reference": "https://huggingface.co/WarriorMama777/OrangeMixs",
|
||||||
"filename": "AbyssOrangeMix2_hard.safetensors",
|
"filename": "AbyssOrangeMix2_hard.safetensors",
|
||||||
@@ -1062,7 +1095,7 @@
|
|||||||
"name": "AbyssOrangeMix3 A1",
|
"name": "AbyssOrangeMix3 A1",
|
||||||
"type": "checkpoint",
|
"type": "checkpoint",
|
||||||
"base": "SD1.5",
|
"base": "SD1.5",
|
||||||
"save_path": "default",
|
"save_path": "checkpoints/SD1.5",
|
||||||
"description": "AbyssOrangeMix3 - A1 (anime style)",
|
"description": "AbyssOrangeMix3 - A1 (anime style)",
|
||||||
"reference": "https://huggingface.co/WarriorMama777/OrangeMixs",
|
"reference": "https://huggingface.co/WarriorMama777/OrangeMixs",
|
||||||
"filename": "AOM3A1_orangemixs.safetensors",
|
"filename": "AOM3A1_orangemixs.safetensors",
|
||||||
@@ -1073,7 +1106,7 @@
|
|||||||
"name": "AbyssOrangeMix3 A3",
|
"name": "AbyssOrangeMix3 A3",
|
||||||
"type": "checkpoint",
|
"type": "checkpoint",
|
||||||
"base": "SD1.5",
|
"base": "SD1.5",
|
||||||
"save_path": "default",
|
"save_path": "checkpoints/SD1.5",
|
||||||
"description": "AbyssOrangeMix - A3 (anime style)",
|
"description": "AbyssOrangeMix - A3 (anime style)",
|
||||||
"reference": "https://huggingface.co/WarriorMama777/OrangeMixs",
|
"reference": "https://huggingface.co/WarriorMama777/OrangeMixs",
|
||||||
"filename": "AOM3A3_orangemixs.safetensors",
|
"filename": "AOM3A3_orangemixs.safetensors",
|
||||||
@@ -1084,7 +1117,7 @@
|
|||||||
"name": "Waifu Diffusion 1.5 Beta3 (fp16)",
|
"name": "Waifu Diffusion 1.5 Beta3 (fp16)",
|
||||||
"type": "checkpoint",
|
"type": "checkpoint",
|
||||||
"base": "SD2.1",
|
"base": "SD2.1",
|
||||||
"save_path": "default",
|
"save_path": "checkpoints/SD2.1",
|
||||||
"description": "Waifu Diffusion 1.5 Beta3",
|
"description": "Waifu Diffusion 1.5 Beta3",
|
||||||
"reference": "https://huggingface.co/waifu-diffusion/wd-1-5-beta3",
|
"reference": "https://huggingface.co/waifu-diffusion/wd-1-5-beta3",
|
||||||
"filename": "wd-illusion-fp16.safetensors",
|
"filename": "wd-illusion-fp16.safetensors",
|
||||||
@@ -1095,7 +1128,7 @@
|
|||||||
"name": "illuminatiDiffusionV1_v11 unCLIP model",
|
"name": "illuminatiDiffusionV1_v11 unCLIP model",
|
||||||
"type": "unclip",
|
"type": "unclip",
|
||||||
"base": "SD2.1",
|
"base": "SD2.1",
|
||||||
"save_path": "default",
|
"save_path": "checkpoints/SD2.1",
|
||||||
"description": "Mix model (SD2.1 unCLIP + illuminatiDiffusionV1_v11)",
|
"description": "Mix model (SD2.1 unCLIP + illuminatiDiffusionV1_v11)",
|
||||||
"reference": "https://huggingface.co/comfyanonymous/illuminatiDiffusionV1_v11_unCLIP",
|
"reference": "https://huggingface.co/comfyanonymous/illuminatiDiffusionV1_v11_unCLIP",
|
||||||
"filename": "illuminatiDiffusionV1_v11-unclip-h-fp16.safetensors",
|
"filename": "illuminatiDiffusionV1_v11-unclip-h-fp16.safetensors",
|
||||||
@@ -1106,7 +1139,7 @@
|
|||||||
"name": "Waifu Diffusion 1.5 unCLIP model",
|
"name": "Waifu Diffusion 1.5 unCLIP model",
|
||||||
"type": "unclip",
|
"type": "unclip",
|
||||||
"base": "SD2.1",
|
"base": "SD2.1",
|
||||||
"save_path": "default",
|
"save_path": "checkpoints/SD2.1",
|
||||||
"description": "Mix model (SD2.1 unCLIP + Waifu Diffusion 1.5)",
|
"description": "Mix model (SD2.1 unCLIP + Waifu Diffusion 1.5)",
|
||||||
"reference": "https://huggingface.co/comfyanonymous/wd-1.5-beta2_unCLIP",
|
"reference": "https://huggingface.co/comfyanonymous/wd-1.5-beta2_unCLIP",
|
||||||
"filename": "wd-1-5-beta2-aesthetic-unclip-h-fp16.safetensors",
|
"filename": "wd-1-5-beta2-aesthetic-unclip-h-fp16.safetensors",
|
||||||
@@ -1116,8 +1149,8 @@
|
|||||||
{
|
{
|
||||||
"name": "sdxl_vae.safetensors",
|
"name": "sdxl_vae.safetensors",
|
||||||
"type": "VAE",
|
"type": "VAE",
|
||||||
"base": "SDXL VAE",
|
"base": "SDXL",
|
||||||
"save_path": "default",
|
"save_path": "vae/SDXL",
|
||||||
"description": "SDXL-VAE",
|
"description": "SDXL-VAE",
|
||||||
"reference": "https://huggingface.co/stabilityai/sdxl-vae",
|
"reference": "https://huggingface.co/stabilityai/sdxl-vae",
|
||||||
"filename": "sdxl_vae.safetensors",
|
"filename": "sdxl_vae.safetensors",
|
||||||
@@ -1127,8 +1160,8 @@
|
|||||||
{
|
{
|
||||||
"name": "vae-ft-mse-840000-ema-pruned",
|
"name": "vae-ft-mse-840000-ema-pruned",
|
||||||
"type": "VAE",
|
"type": "VAE",
|
||||||
"base": "SD1.5 VAE",
|
"base": "SD1.5",
|
||||||
"save_path": "default",
|
"save_path": "vae/SD1.5",
|
||||||
"description": "vae-ft-mse-840000-ema-pruned",
|
"description": "vae-ft-mse-840000-ema-pruned",
|
||||||
"reference": "https://huggingface.co/stabilityai/sd-vae-ft-mse-original",
|
"reference": "https://huggingface.co/stabilityai/sd-vae-ft-mse-original",
|
||||||
"filename": "vae-ft-mse-840000-ema-pruned.safetensors",
|
"filename": "vae-ft-mse-840000-ema-pruned.safetensors",
|
||||||
@@ -1138,8 +1171,8 @@
|
|||||||
{
|
{
|
||||||
"name": "orangemix.vae",
|
"name": "orangemix.vae",
|
||||||
"type": "VAE",
|
"type": "VAE",
|
||||||
"base": "SD1.5 VAE",
|
"base": "SD1.5",
|
||||||
"save_path": "default",
|
"save_path": "vae/SD1.5",
|
||||||
"description": "orangemix vae model",
|
"description": "orangemix vae model",
|
||||||
"reference": "https://huggingface.co/WarriorMama777/OrangeMixs",
|
"reference": "https://huggingface.co/WarriorMama777/OrangeMixs",
|
||||||
"filename": "orangemix.vae.pt",
|
"filename": "orangemix.vae.pt",
|
||||||
@@ -1149,8 +1182,8 @@
|
|||||||
{
|
{
|
||||||
"name": "kl-f8-anime2",
|
"name": "kl-f8-anime2",
|
||||||
"type": "VAE",
|
"type": "VAE",
|
||||||
"base": "SD2.1 VAE",
|
"base": "SD2.1",
|
||||||
"save_path": "default",
|
"save_path": "vae/SD2.1",
|
||||||
"description": "kl-f8-anime2 vae model",
|
"description": "kl-f8-anime2 vae model",
|
||||||
"reference": "https://huggingface.co/hakurei/waifu-diffusion-v1-4",
|
"reference": "https://huggingface.co/hakurei/waifu-diffusion-v1-4",
|
||||||
"filename": "kl-f8-anime2.ckpt",
|
"filename": "kl-f8-anime2.ckpt",
|
||||||
@@ -1160,8 +1193,8 @@
|
|||||||
{
|
{
|
||||||
"name": "OpenAI Consistency Decoder",
|
"name": "OpenAI Consistency Decoder",
|
||||||
"type": "VAE",
|
"type": "VAE",
|
||||||
"base": "SD1.5 VAE",
|
"base": "SD1.5",
|
||||||
"save_path": "vae/openai_consistency_decoder",
|
"save_path": "vae/SD1.5/openai_consistency_decoder",
|
||||||
"description": "OpenAI Consistency Decoder. Improved decoding for stable diffusion vaes.",
|
"description": "OpenAI Consistency Decoder. Improved decoding for stable diffusion vaes.",
|
||||||
"reference": "https://github.com/openai/consistencydecoder",
|
"reference": "https://github.com/openai/consistencydecoder",
|
||||||
"filename": "decoder.pt",
|
"filename": "decoder.pt",
|
||||||
@@ -1172,7 +1205,7 @@
|
|||||||
"name": "LCM LoRA SD1.5",
|
"name": "LCM LoRA SD1.5",
|
||||||
"type": "lora",
|
"type": "lora",
|
||||||
"base": "SD1.5",
|
"base": "SD1.5",
|
||||||
"save_path": "loras/lcm/SD1.5",
|
"save_path": "loras/SD1.5/lcm",
|
||||||
"description": "Latent Consistency LoRA for SD1.5",
|
"description": "Latent Consistency LoRA for SD1.5",
|
||||||
"reference": "https://huggingface.co/latent-consistency/lcm-lora-sdv1-5",
|
"reference": "https://huggingface.co/latent-consistency/lcm-lora-sdv1-5",
|
||||||
"filename": "pytorch_lora_weights.safetensors",
|
"filename": "pytorch_lora_weights.safetensors",
|
||||||
@@ -1183,7 +1216,7 @@
|
|||||||
"name": "LCM LoRA SSD-1B",
|
"name": "LCM LoRA SSD-1B",
|
||||||
"type": "lora",
|
"type": "lora",
|
||||||
"base": "SSD-1B",
|
"base": "SSD-1B",
|
||||||
"save_path": "loras/lcm/SSD-1B",
|
"save_path": "loras/SSD-1B/lcm",
|
||||||
"description": "Latent Consistency LoRA for SSD-1B",
|
"description": "Latent Consistency LoRA for SSD-1B",
|
||||||
"reference": "https://huggingface.co/latent-consistency/lcm-lora-ssd-1b",
|
"reference": "https://huggingface.co/latent-consistency/lcm-lora-ssd-1b",
|
||||||
"filename": "pytorch_lora_weights.safetensors",
|
"filename": "pytorch_lora_weights.safetensors",
|
||||||
@@ -1194,7 +1227,7 @@
|
|||||||
"name": "LCM LoRA SDXL",
|
"name": "LCM LoRA SDXL",
|
||||||
"type": "lora",
|
"type": "lora",
|
||||||
"base": "SDXL",
|
"base": "SDXL",
|
||||||
"save_path": "loras/lcm/SDXL",
|
"save_path": "loras/SDXL/lcm",
|
||||||
"description": "Latent Consistency LoRA for SDXL",
|
"description": "Latent Consistency LoRA for SDXL",
|
||||||
"reference": "https://huggingface.co/latent-consistency/lcm-lora-sdxl",
|
"reference": "https://huggingface.co/latent-consistency/lcm-lora-sdxl",
|
||||||
"filename": "pytorch_lora_weights.safetensors",
|
"filename": "pytorch_lora_weights.safetensors",
|
||||||
@@ -1227,7 +1260,7 @@
|
|||||||
"name": "Theovercomer8's Contrast Fix (SD2.1)",
|
"name": "Theovercomer8's Contrast Fix (SD2.1)",
|
||||||
"type": "lora",
|
"type": "lora",
|
||||||
"base": "SD2.1",
|
"base": "SD2.1",
|
||||||
"save_path": "default",
|
"save_path": "loras/SD2.1",
|
||||||
"description": "LORA: Theovercomer8's Contrast Fix (SD2.1)",
|
"description": "LORA: Theovercomer8's Contrast Fix (SD2.1)",
|
||||||
"reference": "https://civitai.com/models/8765/theovercomer8s-contrast-fix-sd15sd21-768",
|
"reference": "https://civitai.com/models/8765/theovercomer8s-contrast-fix-sd15sd21-768",
|
||||||
"filename": "theovercomer8sContrastFix_sd21768.safetensors",
|
"filename": "theovercomer8sContrastFix_sd21768.safetensors",
|
||||||
@@ -1238,7 +1271,7 @@
|
|||||||
"name": "Theovercomer8's Contrast Fix (SD1.5)",
|
"name": "Theovercomer8's Contrast Fix (SD1.5)",
|
||||||
"type": "lora",
|
"type": "lora",
|
||||||
"base": "SD1.5",
|
"base": "SD1.5",
|
||||||
"save_path": "default",
|
"save_path": "loras/SD1.5",
|
||||||
"description": "LORA: Theovercomer8's Contrast Fix (SD1.5)",
|
"description": "LORA: Theovercomer8's Contrast Fix (SD1.5)",
|
||||||
"reference": "https://civitai.com/models/8765/theovercomer8s-contrast-fix-sd15sd21-768",
|
"reference": "https://civitai.com/models/8765/theovercomer8s-contrast-fix-sd15sd21-768",
|
||||||
"filename": "theovercomer8sContrastFix_sd15.safetensors",
|
"filename": "theovercomer8sContrastFix_sd15.safetensors",
|
||||||
@@ -1249,7 +1282,7 @@
|
|||||||
"name": "T2I-Adapter (depth)",
|
"name": "T2I-Adapter (depth)",
|
||||||
"type": "T2I-Adapter",
|
"type": "T2I-Adapter",
|
||||||
"base": "SD1.5",
|
"base": "SD1.5",
|
||||||
"save_path": "default",
|
"save_path": "controlnet/SD1.5",
|
||||||
"description": "ControlNet T2I-Adapter for depth",
|
"description": "ControlNet T2I-Adapter for depth",
|
||||||
"reference": "https://huggingface.co/TencentARC/T2I-Adapter",
|
"reference": "https://huggingface.co/TencentARC/T2I-Adapter",
|
||||||
"filename": "t2iadapter_depth_sd14v1.pth",
|
"filename": "t2iadapter_depth_sd14v1.pth",
|
||||||
@@ -1260,7 +1293,7 @@
|
|||||||
"name": "T2I-Adapter (seg)",
|
"name": "T2I-Adapter (seg)",
|
||||||
"type": "T2I-Adapter",
|
"type": "T2I-Adapter",
|
||||||
"base": "SD1.5",
|
"base": "SD1.5",
|
||||||
"save_path": "default",
|
"save_path": "controlnet/SD1.5",
|
||||||
"description": "ControlNet T2I-Adapter for seg",
|
"description": "ControlNet T2I-Adapter for seg",
|
||||||
"reference": "https://huggingface.co/TencentARC/T2I-Adapter",
|
"reference": "https://huggingface.co/TencentARC/T2I-Adapter",
|
||||||
"filename": "t2iadapter_seg_sd14v1.pth",
|
"filename": "t2iadapter_seg_sd14v1.pth",
|
||||||
@@ -1271,7 +1304,7 @@
|
|||||||
"name": "T2I-Adapter (sketch)",
|
"name": "T2I-Adapter (sketch)",
|
||||||
"type": "T2I-Adapter",
|
"type": "T2I-Adapter",
|
||||||
"base": "SD1.5",
|
"base": "SD1.5",
|
||||||
"save_path": "default",
|
"save_path": "controlnet/SD1.5",
|
||||||
"description": "ControlNet T2I-Adapter for sketch",
|
"description": "ControlNet T2I-Adapter for sketch",
|
||||||
"reference": "https://huggingface.co/TencentARC/T2I-Adapter",
|
"reference": "https://huggingface.co/TencentARC/T2I-Adapter",
|
||||||
"filename": "t2iadapter_sketch_sd14v1.pth",
|
"filename": "t2iadapter_sketch_sd14v1.pth",
|
||||||
@@ -1282,7 +1315,7 @@
|
|||||||
"name": "T2I-Adapter (keypose)",
|
"name": "T2I-Adapter (keypose)",
|
||||||
"type": "T2I-Adapter",
|
"type": "T2I-Adapter",
|
||||||
"base": "SD1.5",
|
"base": "SD1.5",
|
||||||
"save_path": "default",
|
"save_path": "controlnet/SD1.5",
|
||||||
"description": "ControlNet T2I-Adapter for keypose",
|
"description": "ControlNet T2I-Adapter for keypose",
|
||||||
"reference": "https://huggingface.co/TencentARC/T2I-Adapter",
|
"reference": "https://huggingface.co/TencentARC/T2I-Adapter",
|
||||||
"filename": "t2iadapter_keypose_sd14v1.pth",
|
"filename": "t2iadapter_keypose_sd14v1.pth",
|
||||||
@@ -1293,7 +1326,7 @@
|
|||||||
"name": "T2I-Adapter (openpose)",
|
"name": "T2I-Adapter (openpose)",
|
||||||
"type": "T2I-Adapter",
|
"type": "T2I-Adapter",
|
||||||
"base": "SD1.5",
|
"base": "SD1.5",
|
||||||
"save_path": "default",
|
"save_path": "controlnet/SD1.5",
|
||||||
"description": "ControlNet T2I-Adapter for openpose",
|
"description": "ControlNet T2I-Adapter for openpose",
|
||||||
"reference": "https://huggingface.co/TencentARC/T2I-Adapter",
|
"reference": "https://huggingface.co/TencentARC/T2I-Adapter",
|
||||||
"filename": "t2iadapter_openpose_sd14v1.pth",
|
"filename": "t2iadapter_openpose_sd14v1.pth",
|
||||||
@@ -1304,7 +1337,7 @@
|
|||||||
"name": "T2I-Adapter (color)",
|
"name": "T2I-Adapter (color)",
|
||||||
"type": "T2I-Adapter",
|
"type": "T2I-Adapter",
|
||||||
"base": "SD1.5",
|
"base": "SD1.5",
|
||||||
"save_path": "default",
|
"save_path": "controlnet/SD1.5",
|
||||||
"description": "ControlNet T2I-Adapter for color",
|
"description": "ControlNet T2I-Adapter for color",
|
||||||
"reference": "https://huggingface.co/TencentARC/T2I-Adapter",
|
"reference": "https://huggingface.co/TencentARC/T2I-Adapter",
|
||||||
"filename": "t2iadapter_color_sd14v1.pth",
|
"filename": "t2iadapter_color_sd14v1.pth",
|
||||||
@@ -1315,7 +1348,7 @@
|
|||||||
"name": "T2I-Adapter (canny)",
|
"name": "T2I-Adapter (canny)",
|
||||||
"type": "T2I-Adapter",
|
"type": "T2I-Adapter",
|
||||||
"base": "SD1.5",
|
"base": "SD1.5",
|
||||||
"save_path": "default",
|
"save_path": "controlnet/SD1.5",
|
||||||
"description": "ControlNet T2I-Adapter for canny",
|
"description": "ControlNet T2I-Adapter for canny",
|
||||||
"reference": "https://huggingface.co/TencentARC/T2I-Adapter",
|
"reference": "https://huggingface.co/TencentARC/T2I-Adapter",
|
||||||
"filename": "t2iadapter_canny_sd14v1.pth",
|
"filename": "t2iadapter_canny_sd14v1.pth",
|
||||||
@@ -1326,7 +1359,7 @@
|
|||||||
"name": "T2I-Style model",
|
"name": "T2I-Style model",
|
||||||
"type": "T2I-Style",
|
"type": "T2I-Style",
|
||||||
"base": "SD1.5",
|
"base": "SD1.5",
|
||||||
"save_path": "default",
|
"save_path": "controlnet/SD1.5",
|
||||||
"description": "ControlNet T2I-Adapter style model. Need to download CLIPVision model.",
|
"description": "ControlNet T2I-Adapter style model. Need to download CLIPVision model.",
|
||||||
"reference": "https://huggingface.co/TencentARC/T2I-Adapter",
|
"reference": "https://huggingface.co/TencentARC/T2I-Adapter",
|
||||||
"filename": "t2iadapter_style_sd14v1.pth",
|
"filename": "t2iadapter_style_sd14v1.pth",
|
||||||
@@ -1337,7 +1370,7 @@
|
|||||||
"name": "T2I-Adapter XL (lineart) FP16",
|
"name": "T2I-Adapter XL (lineart) FP16",
|
||||||
"type": "T2I-Adapter",
|
"type": "T2I-Adapter",
|
||||||
"base": "SDXL",
|
"base": "SDXL",
|
||||||
"save_path": "default",
|
"save_path": "controlnet/SDXL",
|
||||||
"description": "ControlNet T2I-Adapter XL for lineart",
|
"description": "ControlNet T2I-Adapter XL for lineart",
|
||||||
"reference": "https://huggingface.co/TencentARC/t2i-adapter-lineart-sdxl-1.0",
|
"reference": "https://huggingface.co/TencentARC/t2i-adapter-lineart-sdxl-1.0",
|
||||||
"filename": "t2i-adapter-lineart-sdxl-1.0.fp16.safetensors",
|
"filename": "t2i-adapter-lineart-sdxl-1.0.fp16.safetensors",
|
||||||
@@ -1348,7 +1381,7 @@
|
|||||||
"name": "T2I-Adapter XL (canny) FP16",
|
"name": "T2I-Adapter XL (canny) FP16",
|
||||||
"type": "T2I-Adapter",
|
"type": "T2I-Adapter",
|
||||||
"base": "SDXL",
|
"base": "SDXL",
|
||||||
"save_path": "default",
|
"save_path": "controlnet/SDXL",
|
||||||
"description": "ControlNet T2I-Adapter XL for canny",
|
"description": "ControlNet T2I-Adapter XL for canny",
|
||||||
"reference": "https://huggingface.co/TencentARC/t2i-adapter-canny-sdxl-1.0",
|
"reference": "https://huggingface.co/TencentARC/t2i-adapter-canny-sdxl-1.0",
|
||||||
"filename": "t2i-adapter-canny-sdxl-1.0.fp16.safetensors",
|
"filename": "t2i-adapter-canny-sdxl-1.0.fp16.safetensors",
|
||||||
@@ -1359,7 +1392,7 @@
|
|||||||
"name": "T2I-Adapter XL (depth-zoe) FP16",
|
"name": "T2I-Adapter XL (depth-zoe) FP16",
|
||||||
"type": "T2I-Adapter",
|
"type": "T2I-Adapter",
|
||||||
"base": "SDXL",
|
"base": "SDXL",
|
||||||
"save_path": "default",
|
"save_path": "controlnet/SDXL",
|
||||||
"description": "ControlNet T2I-Adapter XL for depth-zoe",
|
"description": "ControlNet T2I-Adapter XL for depth-zoe",
|
||||||
"reference": "https://huggingface.co/TencentARC/t2i-adapter-depth-zoe-sdxl-1.0",
|
"reference": "https://huggingface.co/TencentARC/t2i-adapter-depth-zoe-sdxl-1.0",
|
||||||
"filename": "t2i-adapter-depth-zoe-sdxl-1.0.fp16.safetensors",
|
"filename": "t2i-adapter-depth-zoe-sdxl-1.0.fp16.safetensors",
|
||||||
@@ -1370,7 +1403,7 @@
|
|||||||
"name": "T2I-Adapter XL (depth-midas) FP16",
|
"name": "T2I-Adapter XL (depth-midas) FP16",
|
||||||
"type": "T2I-Adapter",
|
"type": "T2I-Adapter",
|
||||||
"base": "SDXL",
|
"base": "SDXL",
|
||||||
"save_path": "default",
|
"save_path": "controlnet/SDXL",
|
||||||
"description": "ControlNet T2I-Adapter XL for depth-midas",
|
"description": "ControlNet T2I-Adapter XL for depth-midas",
|
||||||
"reference": "https://huggingface.co/TencentARC/t2i-adapter-depth-midas-sdxl-1.0",
|
"reference": "https://huggingface.co/TencentARC/t2i-adapter-depth-midas-sdxl-1.0",
|
||||||
"filename": "t2i-adapter-depth-midas-sdxl-1.0.fp16.safetensors",
|
"filename": "t2i-adapter-depth-midas-sdxl-1.0.fp16.safetensors",
|
||||||
@@ -1381,7 +1414,7 @@
|
|||||||
"name": "T2I-Adapter XL (sketch) FP16",
|
"name": "T2I-Adapter XL (sketch) FP16",
|
||||||
"type": "T2I-Adapter",
|
"type": "T2I-Adapter",
|
||||||
"base": "SDXL",
|
"base": "SDXL",
|
||||||
"save_path": "default",
|
"save_path": "controlnet/SDXL",
|
||||||
"description": "ControlNet T2I-Adapter XL for sketch",
|
"description": "ControlNet T2I-Adapter XL for sketch",
|
||||||
"reference": "https://huggingface.co/TencentARC/t2i-adapter-sketch-sdxl-1.0",
|
"reference": "https://huggingface.co/TencentARC/t2i-adapter-sketch-sdxl-1.0",
|
||||||
"filename": "t2i-adapter-sketch-sdxl-1.0.fp16.safetensors",
|
"filename": "t2i-adapter-sketch-sdxl-1.0.fp16.safetensors",
|
||||||
@@ -1392,7 +1425,7 @@
|
|||||||
"name": "T2I-Adapter XL (lineart)",
|
"name": "T2I-Adapter XL (lineart)",
|
||||||
"type": "T2I-Adapter",
|
"type": "T2I-Adapter",
|
||||||
"base": "SDXL",
|
"base": "SDXL",
|
||||||
"save_path": "default",
|
"save_path": "controlnet/SDXL",
|
||||||
"description": "ControlNet T2I-Adapter XL for lineart",
|
"description": "ControlNet T2I-Adapter XL for lineart",
|
||||||
"reference": "https://huggingface.co/TencentARC/t2i-adapter-lineart-sdxl-1.0",
|
"reference": "https://huggingface.co/TencentARC/t2i-adapter-lineart-sdxl-1.0",
|
||||||
"filename": "t2i-adapter-lineart-sdxl-1.0.safetensors",
|
"filename": "t2i-adapter-lineart-sdxl-1.0.safetensors",
|
||||||
@@ -1403,7 +1436,7 @@
|
|||||||
"name": "T2I-Adapter XL (canny)",
|
"name": "T2I-Adapter XL (canny)",
|
||||||
"type": "T2I-Adapter",
|
"type": "T2I-Adapter",
|
||||||
"base": "SDXL",
|
"base": "SDXL",
|
||||||
"save_path": "default",
|
"save_path": "controlnet/SDXL",
|
||||||
"description": "ControlNet T2I-Adapter XL for canny",
|
"description": "ControlNet T2I-Adapter XL for canny",
|
||||||
"reference": "https://huggingface.co/TencentARC/t2i-adapter-canny-sdxl-1.0",
|
"reference": "https://huggingface.co/TencentARC/t2i-adapter-canny-sdxl-1.0",
|
||||||
"filename": "t2i-adapter-canny-sdxl-1.0.safetensors",
|
"filename": "t2i-adapter-canny-sdxl-1.0.safetensors",
|
||||||
@@ -1414,7 +1447,7 @@
|
|||||||
"name": "T2I-Adapter XL (depth-zoe)",
|
"name": "T2I-Adapter XL (depth-zoe)",
|
||||||
"type": "T2I-Adapter",
|
"type": "T2I-Adapter",
|
||||||
"base": "SDXL",
|
"base": "SDXL",
|
||||||
"save_path": "default",
|
"save_path": "controlnet/SDXL",
|
||||||
"description": "ControlNet T2I-Adapter XL for depth-zoe",
|
"description": "ControlNet T2I-Adapter XL for depth-zoe",
|
||||||
"reference": "https://huggingface.co/TencentARC/t2i-adapter-depth-zoe-sdxl-1.0",
|
"reference": "https://huggingface.co/TencentARC/t2i-adapter-depth-zoe-sdxl-1.0",
|
||||||
"filename": "t2i-adapter-depth-zoe-sdxl-1.0.safetensors",
|
"filename": "t2i-adapter-depth-zoe-sdxl-1.0.safetensors",
|
||||||
@@ -1425,7 +1458,7 @@
|
|||||||
"name": "T2I-Adapter XL (depth-midas)",
|
"name": "T2I-Adapter XL (depth-midas)",
|
||||||
"type": "T2I-Adapter",
|
"type": "T2I-Adapter",
|
||||||
"base": "SDXL",
|
"base": "SDXL",
|
||||||
"save_path": "default",
|
"save_path": "controlnet/SDXL",
|
||||||
"description": "ControlNet T2I-Adapter XL for depth-midas",
|
"description": "ControlNet T2I-Adapter XL for depth-midas",
|
||||||
"reference": "https://huggingface.co/TencentARC/t2i-adapter-depth-midas-sdxl-1.0",
|
"reference": "https://huggingface.co/TencentARC/t2i-adapter-depth-midas-sdxl-1.0",
|
||||||
"filename": "t2i-adapter-depth-midas-sdxl-1.0.safetensors",
|
"filename": "t2i-adapter-depth-midas-sdxl-1.0.safetensors",
|
||||||
@@ -1436,7 +1469,7 @@
|
|||||||
"name": "T2I-Adapter XL (sketch)",
|
"name": "T2I-Adapter XL (sketch)",
|
||||||
"type": "T2I-Adapter",
|
"type": "T2I-Adapter",
|
||||||
"base": "SDXL",
|
"base": "SDXL",
|
||||||
"save_path": "default",
|
"save_path": "controlnet/SDXL",
|
||||||
"description": "ControlNet T2I-Adapter XL for sketch",
|
"description": "ControlNet T2I-Adapter XL for sketch",
|
||||||
"reference": "https://huggingface.co/TencentARC/t2i-adapter-sketch-sdxl-1.0",
|
"reference": "https://huggingface.co/TencentARC/t2i-adapter-sketch-sdxl-1.0",
|
||||||
"filename": "t2i-adapter-sketch-sdxl-1.0.safetensors",
|
"filename": "t2i-adapter-sketch-sdxl-1.0.safetensors",
|
||||||
@@ -1447,7 +1480,7 @@
|
|||||||
"name": "T2I-Adapter XL (openpose)",
|
"name": "T2I-Adapter XL (openpose)",
|
||||||
"type": "T2I-Adapter",
|
"type": "T2I-Adapter",
|
||||||
"base": "SDXL",
|
"base": "SDXL",
|
||||||
"save_path": "default",
|
"save_path": "controlnet/SDXL",
|
||||||
"description": "ControlNet T2I-Adapter XL for openpose",
|
"description": "ControlNet T2I-Adapter XL for openpose",
|
||||||
"reference": "https://huggingface.co/TencentARC/t2i-adapter-openpose-sdxl-1.0",
|
"reference": "https://huggingface.co/TencentARC/t2i-adapter-openpose-sdxl-1.0",
|
||||||
"filename": "t2i-adapter-openpose-sdxl-1.0.safetensors",
|
"filename": "t2i-adapter-openpose-sdxl-1.0.safetensors",
|
||||||
@@ -1458,7 +1491,7 @@
|
|||||||
"name": "CiaraRowles/TemporalNet2",
|
"name": "CiaraRowles/TemporalNet2",
|
||||||
"type": "controlnet",
|
"type": "controlnet",
|
||||||
"base": "SD1.5",
|
"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",
|
"description": "TemporalNet was a ControlNet model designed to enhance the temporal consistency of generated outputs",
|
||||||
"reference": "https://huggingface.co/CiaraRowles/TemporalNet2",
|
"reference": "https://huggingface.co/CiaraRowles/TemporalNet2",
|
||||||
"filename": "temporalnetversion2.safetensors",
|
"filename": "temporalnetversion2.safetensors",
|
||||||
@@ -1468,14 +1501,27 @@
|
|||||||
{
|
{
|
||||||
"name": "CiaraRowles/TemporalNet1XL (1.0)",
|
"name": "CiaraRowles/TemporalNet1XL (1.0)",
|
||||||
"type": "controlnet",
|
"type": "controlnet",
|
||||||
"base": "SD1.5",
|
"base": "SDXL",
|
||||||
"save_path": "controlnet/TemporalNet1XL",
|
"save_path": "controlnet/SDXL/TemporalNet1XL",
|
||||||
"description": "This is TemporalNet1XL, it is a re-train of the controlnet TemporalNet1 with Stable Diffusion XL.",
|
"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",
|
"reference": "https://huggingface.co/CiaraRowles/controlnet-temporalnet-sdxl-1.0",
|
||||||
"filename": "diffusion_pytorch_model.safetensors",
|
"filename": "diffusion_pytorch_model.safetensors",
|
||||||
"url": "https://huggingface.co/CiaraRowles/controlnet-temporalnet-sdxl-1.0/resolve/main/diffusion_pytorch_model.safetensors",
|
"url": "https://huggingface.co/CiaraRowles/controlnet-temporalnet-sdxl-1.0/resolve/main/diffusion_pytorch_model.safetensors",
|
||||||
"size": "5.00GB"
|
"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)",
|
"name": "CLIPVision model (stabilityai/clip_vision_g)",
|
||||||
"type": "clip_vision",
|
"type": "clip_vision",
|
||||||
@@ -1535,7 +1581,7 @@
|
|||||||
"name": "stabilityai/control-lora-canny-rank128.safetensors",
|
"name": "stabilityai/control-lora-canny-rank128.safetensors",
|
||||||
"type": "controlnet",
|
"type": "controlnet",
|
||||||
"base": "SDXL",
|
"base": "SDXL",
|
||||||
"save_path": "default",
|
"save_path": "controlnet/SDXL",
|
||||||
"description": "Control-LoRA: canny rank128",
|
"description": "Control-LoRA: canny rank128",
|
||||||
"reference": "https://huggingface.co/stabilityai/control-lora",
|
"reference": "https://huggingface.co/stabilityai/control-lora",
|
||||||
"filename": "control-lora-canny-rank128.safetensors",
|
"filename": "control-lora-canny-rank128.safetensors",
|
||||||
@@ -1546,7 +1592,7 @@
|
|||||||
"name": "stabilityai/control-lora-depth-rank128.safetensors",
|
"name": "stabilityai/control-lora-depth-rank128.safetensors",
|
||||||
"type": "controlnet",
|
"type": "controlnet",
|
||||||
"base": "SDXL",
|
"base": "SDXL",
|
||||||
"save_path": "default",
|
"save_path": "controlnet/SDXL",
|
||||||
"description": "Control-LoRA: depth rank128",
|
"description": "Control-LoRA: depth rank128",
|
||||||
"reference": "https://huggingface.co/stabilityai/control-lora",
|
"reference": "https://huggingface.co/stabilityai/control-lora",
|
||||||
"filename": "control-lora-depth-rank128.safetensors",
|
"filename": "control-lora-depth-rank128.safetensors",
|
||||||
@@ -1557,7 +1603,7 @@
|
|||||||
"name": "stabilityai/control-lora-recolor-rank128.safetensors",
|
"name": "stabilityai/control-lora-recolor-rank128.safetensors",
|
||||||
"type": "controlnet",
|
"type": "controlnet",
|
||||||
"base": "SDXL",
|
"base": "SDXL",
|
||||||
"save_path": "default",
|
"save_path": "controlnet/SDXL",
|
||||||
"description": "Control-LoRA: recolor rank128",
|
"description": "Control-LoRA: recolor rank128",
|
||||||
"reference": "https://huggingface.co/stabilityai/control-lora",
|
"reference": "https://huggingface.co/stabilityai/control-lora",
|
||||||
"filename": "control-lora-recolor-rank128.safetensors",
|
"filename": "control-lora-recolor-rank128.safetensors",
|
||||||
@@ -1568,7 +1614,7 @@
|
|||||||
"name": "stabilityai/control-lora-sketch-rank128-metadata.safetensors",
|
"name": "stabilityai/control-lora-sketch-rank128-metadata.safetensors",
|
||||||
"type": "controlnet",
|
"type": "controlnet",
|
||||||
"base": "SDXL",
|
"base": "SDXL",
|
||||||
"save_path": "default",
|
"save_path": "controlnet/SDXL",
|
||||||
"description": "Control-LoRA: sketch rank128 metadata",
|
"description": "Control-LoRA: sketch rank128 metadata",
|
||||||
"reference": "https://huggingface.co/stabilityai/control-lora",
|
"reference": "https://huggingface.co/stabilityai/control-lora",
|
||||||
"filename": "control-lora-sketch-rank128-metadata.safetensors",
|
"filename": "control-lora-sketch-rank128-metadata.safetensors",
|
||||||
@@ -1579,7 +1625,7 @@
|
|||||||
"name": "stabilityai/control-lora-canny-rank256.safetensors",
|
"name": "stabilityai/control-lora-canny-rank256.safetensors",
|
||||||
"type": "controlnet",
|
"type": "controlnet",
|
||||||
"base": "SDXL",
|
"base": "SDXL",
|
||||||
"save_path": "default",
|
"save_path": "controlnet/SDXL",
|
||||||
"description": "Control-LoRA: canny rank256",
|
"description": "Control-LoRA: canny rank256",
|
||||||
"reference": "https://huggingface.co/stabilityai/control-lora",
|
"reference": "https://huggingface.co/stabilityai/control-lora",
|
||||||
"filename": "control-lora-canny-rank256.safetensors",
|
"filename": "control-lora-canny-rank256.safetensors",
|
||||||
@@ -1590,7 +1636,7 @@
|
|||||||
"name": "stabilityai/control-lora-depth-rank256.safetensors",
|
"name": "stabilityai/control-lora-depth-rank256.safetensors",
|
||||||
"type": "controlnet",
|
"type": "controlnet",
|
||||||
"base": "SDXL",
|
"base": "SDXL",
|
||||||
"save_path": "default",
|
"save_path": "controlnet/SDXL",
|
||||||
"description": "Control-LoRA: depth rank256",
|
"description": "Control-LoRA: depth rank256",
|
||||||
"reference": "https://huggingface.co/stabilityai/control-lora",
|
"reference": "https://huggingface.co/stabilityai/control-lora",
|
||||||
"filename": "control-lora-depth-rank256.safetensors",
|
"filename": "control-lora-depth-rank256.safetensors",
|
||||||
@@ -1601,7 +1647,7 @@
|
|||||||
"name": "stabilityai/control-lora-recolor-rank256.safetensors",
|
"name": "stabilityai/control-lora-recolor-rank256.safetensors",
|
||||||
"type": "controlnet",
|
"type": "controlnet",
|
||||||
"base": "SDXL",
|
"base": "SDXL",
|
||||||
"save_path": "default",
|
"save_path": "controlnet/SDXL",
|
||||||
"description": "Control-LoRA: recolor rank256",
|
"description": "Control-LoRA: recolor rank256",
|
||||||
"reference": "https://huggingface.co/stabilityai/control-lora",
|
"reference": "https://huggingface.co/stabilityai/control-lora",
|
||||||
"filename": "control-lora-recolor-rank256.safetensors",
|
"filename": "control-lora-recolor-rank256.safetensors",
|
||||||
@@ -1612,7 +1658,7 @@
|
|||||||
"name": "stabilityai/control-lora-sketch-rank256.safetensors",
|
"name": "stabilityai/control-lora-sketch-rank256.safetensors",
|
||||||
"type": "controlnet",
|
"type": "controlnet",
|
||||||
"base": "SDXL",
|
"base": "SDXL",
|
||||||
"save_path": "default",
|
"save_path": "controlnet/SDXL",
|
||||||
"description": "Control-LoRA: sketch rank256",
|
"description": "Control-LoRA: sketch rank256",
|
||||||
"reference": "https://huggingface.co/stabilityai/control-lora",
|
"reference": "https://huggingface.co/stabilityai/control-lora",
|
||||||
"filename": "control-lora-sketch-rank256.safetensors",
|
"filename": "control-lora-sketch-rank256.safetensors",
|
||||||
@@ -1634,7 +1680,7 @@
|
|||||||
"name": "SDXL-controlnet: OpenPose (v2)",
|
"name": "SDXL-controlnet: OpenPose (v2)",
|
||||||
"type": "controlnet",
|
"type": "controlnet",
|
||||||
"base": "SDXL",
|
"base": "SDXL",
|
||||||
"save_path": "default",
|
"save_path": "controlnet/SDXL",
|
||||||
"description": "ControlNet openpose model for SDXL",
|
"description": "ControlNet openpose model for SDXL",
|
||||||
"reference": "https://huggingface.co/thibaud/controlnet-openpose-sdxl-1.0",
|
"reference": "https://huggingface.co/thibaud/controlnet-openpose-sdxl-1.0",
|
||||||
"filename": "OpenPoseXL2.safetensors",
|
"filename": "OpenPoseXL2.safetensors",
|
||||||
@@ -1645,7 +1691,7 @@
|
|||||||
"name": "controlnet-SargeZT/controlnet-sd-xl-1.0-softedge-dexined",
|
"name": "controlnet-SargeZT/controlnet-sd-xl-1.0-softedge-dexined",
|
||||||
"type": "controlnet",
|
"type": "controlnet",
|
||||||
"base": "SDXL",
|
"base": "SDXL",
|
||||||
"save_path": "default",
|
"save_path": "controlnet/SDXL",
|
||||||
"description": "ControlNet softedge model for SDXL",
|
"description": "ControlNet softedge model for SDXL",
|
||||||
"reference": "https://huggingface.co/SargeZT/controlnet-sd-xl-1.0-softedge-dexined",
|
"reference": "https://huggingface.co/SargeZT/controlnet-sd-xl-1.0-softedge-dexined",
|
||||||
"filename": "controlnet-sd-xl-1.0-softedge-dexined.safetensors",
|
"filename": "controlnet-sd-xl-1.0-softedge-dexined.safetensors",
|
||||||
@@ -1656,7 +1702,7 @@
|
|||||||
"name": "controlnet-SargeZT/controlnet-sd-xl-1.0-depth-16bit-zoe",
|
"name": "controlnet-SargeZT/controlnet-sd-xl-1.0-depth-16bit-zoe",
|
||||||
"type": "controlnet",
|
"type": "controlnet",
|
||||||
"base": "SDXL",
|
"base": "SDXL",
|
||||||
"save_path": "default",
|
"save_path": "controlnet/SDXL",
|
||||||
"description": "ControlNet depth-zoe model for SDXL",
|
"description": "ControlNet depth-zoe model for SDXL",
|
||||||
"reference": "https://huggingface.co/SargeZT/controlnet-sd-xl-1.0-depth-16bit-zoe",
|
"reference": "https://huggingface.co/SargeZT/controlnet-sd-xl-1.0-depth-16bit-zoe",
|
||||||
"filename": "depth-zoe-xl-v1.0-controlnet.safetensors",
|
"filename": "depth-zoe-xl-v1.0-controlnet.safetensors",
|
||||||
@@ -1667,7 +1713,7 @@
|
|||||||
"name": "ControlNet-v1-1 (ip2p; fp16)",
|
"name": "ControlNet-v1-1 (ip2p; fp16)",
|
||||||
"type": "controlnet",
|
"type": "controlnet",
|
||||||
"base": "SD1.5",
|
"base": "SD1.5",
|
||||||
"save_path": "default",
|
"save_path": "controlnet/1.5",
|
||||||
"description": "Safetensors/FP16 versions of the new ControlNet-v1-1 checkpoints (ip2p)",
|
"description": "Safetensors/FP16 versions of the new ControlNet-v1-1 checkpoints (ip2p)",
|
||||||
"reference": "https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors",
|
"reference": "https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors",
|
||||||
"filename": "control_v11e_sd15_ip2p_fp16.safetensors",
|
"filename": "control_v11e_sd15_ip2p_fp16.safetensors",
|
||||||
@@ -1678,7 +1724,7 @@
|
|||||||
"name": "ControlNet-v1-1 (shuffle; fp16)",
|
"name": "ControlNet-v1-1 (shuffle; fp16)",
|
||||||
"type": "controlnet",
|
"type": "controlnet",
|
||||||
"base": "SD1.5",
|
"base": "SD1.5",
|
||||||
"save_path": "default",
|
"save_path": "controlnet/1.5",
|
||||||
"description": "Safetensors/FP16 versions of the new ControlNet-v1-1 checkpoints (shuffle)",
|
"description": "Safetensors/FP16 versions of the new ControlNet-v1-1 checkpoints (shuffle)",
|
||||||
"reference": "https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors",
|
"reference": "https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors",
|
||||||
"filename": "control_v11e_sd15_shuffle_fp16.safetensors",
|
"filename": "control_v11e_sd15_shuffle_fp16.safetensors",
|
||||||
@@ -1689,7 +1735,7 @@
|
|||||||
"name": "ControlNet-v1-1 (canny; fp16)",
|
"name": "ControlNet-v1-1 (canny; fp16)",
|
||||||
"type": "controlnet",
|
"type": "controlnet",
|
||||||
"base": "SD1.5",
|
"base": "SD1.5",
|
||||||
"save_path": "default",
|
"save_path": "controlnet/1.5",
|
||||||
"description": "Safetensors/FP16 versions of the new ControlNet-v1-1 checkpoints (canny)",
|
"description": "Safetensors/FP16 versions of the new ControlNet-v1-1 checkpoints (canny)",
|
||||||
"reference": "https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors",
|
"reference": "https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors",
|
||||||
"filename": "control_v11p_sd15_canny_fp16.safetensors",
|
"filename": "control_v11p_sd15_canny_fp16.safetensors",
|
||||||
@@ -1700,7 +1746,7 @@
|
|||||||
"name": "ControlNet-v1-1 (depth; fp16)",
|
"name": "ControlNet-v1-1 (depth; fp16)",
|
||||||
"type": "controlnet",
|
"type": "controlnet",
|
||||||
"base": "SD1.5",
|
"base": "SD1.5",
|
||||||
"save_path": "default",
|
"save_path": "controlnet/1.5",
|
||||||
"description": "Safetensors/FP16 versions of the new ControlNet-v1-1 checkpoints (depth)",
|
"description": "Safetensors/FP16 versions of the new ControlNet-v1-1 checkpoints (depth)",
|
||||||
"reference": "https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors",
|
"reference": "https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors",
|
||||||
"filename": "control_v11f1p_sd15_depth_fp16.safetensors",
|
"filename": "control_v11f1p_sd15_depth_fp16.safetensors",
|
||||||
@@ -1711,7 +1757,7 @@
|
|||||||
"name": "ControlNet-v1-1 (inpaint; fp16)",
|
"name": "ControlNet-v1-1 (inpaint; fp16)",
|
||||||
"type": "controlnet",
|
"type": "controlnet",
|
||||||
"base": "SD1.5",
|
"base": "SD1.5",
|
||||||
"save_path": "default",
|
"save_path": "controlnet/1.5",
|
||||||
"description": "Safetensors/FP16 versions of the new ControlNet-v1-1 checkpoints (inpaint)",
|
"description": "Safetensors/FP16 versions of the new ControlNet-v1-1 checkpoints (inpaint)",
|
||||||
"reference": "https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors",
|
"reference": "https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors",
|
||||||
"filename": "control_v11p_sd15_inpaint_fp16.safetensors",
|
"filename": "control_v11p_sd15_inpaint_fp16.safetensors",
|
||||||
@@ -1722,7 +1768,7 @@
|
|||||||
"name": "ControlNet-v1-1 (lineart; fp16)",
|
"name": "ControlNet-v1-1 (lineart; fp16)",
|
||||||
"type": "controlnet",
|
"type": "controlnet",
|
||||||
"base": "SD1.5",
|
"base": "SD1.5",
|
||||||
"save_path": "default",
|
"save_path": "controlnet/1.5",
|
||||||
"description": "Safetensors/FP16 versions of the new ControlNet-v1-1 checkpoints (lineart)",
|
"description": "Safetensors/FP16 versions of the new ControlNet-v1-1 checkpoints (lineart)",
|
||||||
"reference": "https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors",
|
"reference": "https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors",
|
||||||
"filename": "control_v11p_sd15_lineart_fp16.safetensors",
|
"filename": "control_v11p_sd15_lineart_fp16.safetensors",
|
||||||
@@ -1733,7 +1779,7 @@
|
|||||||
"name": "ControlNet-v1-1 (mlsd; fp16)",
|
"name": "ControlNet-v1-1 (mlsd; fp16)",
|
||||||
"type": "controlnet",
|
"type": "controlnet",
|
||||||
"base": "SD1.5",
|
"base": "SD1.5",
|
||||||
"save_path": "default",
|
"save_path": "controlnet/1.5",
|
||||||
"description": "Safetensors/FP16 versions of the new ControlNet-v1-1 checkpoints (mlsd)",
|
"description": "Safetensors/FP16 versions of the new ControlNet-v1-1 checkpoints (mlsd)",
|
||||||
"reference": "https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors",
|
"reference": "https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors",
|
||||||
"filename": "control_v11p_sd15_mlsd_fp16.safetensors",
|
"filename": "control_v11p_sd15_mlsd_fp16.safetensors",
|
||||||
@@ -1744,7 +1790,7 @@
|
|||||||
"name": "ControlNet-v1-1 (normalbae; fp16)",
|
"name": "ControlNet-v1-1 (normalbae; fp16)",
|
||||||
"type": "controlnet",
|
"type": "controlnet",
|
||||||
"base": "SD1.5",
|
"base": "SD1.5",
|
||||||
"save_path": "default",
|
"save_path": "controlnet/1.5",
|
||||||
"description": "Safetensors/FP16 versions of the new ControlNet-v1-1 checkpoints (normalbae)",
|
"description": "Safetensors/FP16 versions of the new ControlNet-v1-1 checkpoints (normalbae)",
|
||||||
"reference": "https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors",
|
"reference": "https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors",
|
||||||
"filename": "control_v11p_sd15_normalbae_fp16.safetensors",
|
"filename": "control_v11p_sd15_normalbae_fp16.safetensors",
|
||||||
@@ -1755,7 +1801,7 @@
|
|||||||
"name": "ControlNet-v1-1 (openpose; fp16)",
|
"name": "ControlNet-v1-1 (openpose; fp16)",
|
||||||
"type": "controlnet",
|
"type": "controlnet",
|
||||||
"base": "SD1.5",
|
"base": "SD1.5",
|
||||||
"save_path": "default",
|
"save_path": "controlnet/1.5",
|
||||||
"description": "Safetensors/FP16 versions of the new ControlNet-v1-1 checkpoints (openpose)",
|
"description": "Safetensors/FP16 versions of the new ControlNet-v1-1 checkpoints (openpose)",
|
||||||
"reference": "https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors",
|
"reference": "https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors",
|
||||||
"filename": "control_v11p_sd15_openpose_fp16.safetensors",
|
"filename": "control_v11p_sd15_openpose_fp16.safetensors",
|
||||||
@@ -1766,7 +1812,7 @@
|
|||||||
"name": "ControlNet-v1-1 (scribble; fp16)",
|
"name": "ControlNet-v1-1 (scribble; fp16)",
|
||||||
"type": "controlnet",
|
"type": "controlnet",
|
||||||
"base": "SD1.5",
|
"base": "SD1.5",
|
||||||
"save_path": "default",
|
"save_path": "controlnet/1.5",
|
||||||
"description": "Safetensors/FP16 versions of the new ControlNet-v1-1 checkpoints (scribble)",
|
"description": "Safetensors/FP16 versions of the new ControlNet-v1-1 checkpoints (scribble)",
|
||||||
"reference": "https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors",
|
"reference": "https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors",
|
||||||
"filename": "control_v11p_sd15_scribble_fp16.safetensors",
|
"filename": "control_v11p_sd15_scribble_fp16.safetensors",
|
||||||
@@ -1777,7 +1823,7 @@
|
|||||||
"name": "ControlNet-v1-1 (seg; fp16)",
|
"name": "ControlNet-v1-1 (seg; fp16)",
|
||||||
"type": "controlnet",
|
"type": "controlnet",
|
||||||
"base": "SD1.5",
|
"base": "SD1.5",
|
||||||
"save_path": "default",
|
"save_path": "controlnet/1.5",
|
||||||
"description": "Safetensors/FP16 versions of the new ControlNet-v1-1 checkpoints (seg)",
|
"description": "Safetensors/FP16 versions of the new ControlNet-v1-1 checkpoints (seg)",
|
||||||
"reference": "https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors",
|
"reference": "https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors",
|
||||||
"filename": "control_v11p_sd15_seg_fp16.safetensors",
|
"filename": "control_v11p_sd15_seg_fp16.safetensors",
|
||||||
@@ -1788,7 +1834,7 @@
|
|||||||
"name": "ControlNet-v1-1 (softedge; fp16)",
|
"name": "ControlNet-v1-1 (softedge; fp16)",
|
||||||
"type": "controlnet",
|
"type": "controlnet",
|
||||||
"base": "SD1.5",
|
"base": "SD1.5",
|
||||||
"save_path": "default",
|
"save_path": "controlnet/1.5",
|
||||||
"description": "Safetensors/FP16 versions of the new ControlNet-v1-1 checkpoints (softedge)",
|
"description": "Safetensors/FP16 versions of the new ControlNet-v1-1 checkpoints (softedge)",
|
||||||
"reference": "https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors",
|
"reference": "https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors",
|
||||||
"filename": "control_v11p_sd15_softedge_fp16.safetensors",
|
"filename": "control_v11p_sd15_softedge_fp16.safetensors",
|
||||||
@@ -1799,7 +1845,7 @@
|
|||||||
"name": "ControlNet-v1-1 (anime; fp16)",
|
"name": "ControlNet-v1-1 (anime; fp16)",
|
||||||
"type": "controlnet",
|
"type": "controlnet",
|
||||||
"base": "SD1.5",
|
"base": "SD1.5",
|
||||||
"save_path": "default",
|
"save_path": "controlnet/1.5",
|
||||||
"description": "Safetensors/FP16 versions of the new ControlNet-v1-1 checkpoints (anime)",
|
"description": "Safetensors/FP16 versions of the new ControlNet-v1-1 checkpoints (anime)",
|
||||||
"reference": "https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors",
|
"reference": "https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors",
|
||||||
"filename": "control_v11p_sd15s2_lineart_anime_fp16.safetensors",
|
"filename": "control_v11p_sd15s2_lineart_anime_fp16.safetensors",
|
||||||
@@ -1810,7 +1856,7 @@
|
|||||||
"name": "ControlNet-v1-1 (tile; fp16; v11u)",
|
"name": "ControlNet-v1-1 (tile; fp16; v11u)",
|
||||||
"type": "controlnet",
|
"type": "controlnet",
|
||||||
"base": "SD1.5",
|
"base": "SD1.5",
|
||||||
"save_path": "default",
|
"save_path": "controlnet/1.5",
|
||||||
"description": "Safetensors/FP16 versions of the new ControlNet-v1-1 checkpoints (tile) / v11u",
|
"description": "Safetensors/FP16 versions of the new ControlNet-v1-1 checkpoints (tile) / v11u",
|
||||||
"reference": "https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors",
|
"reference": "https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors",
|
||||||
"filename": "control_v11u_sd15_tile_fp16.safetensors",
|
"filename": "control_v11u_sd15_tile_fp16.safetensors",
|
||||||
@@ -1821,7 +1867,7 @@
|
|||||||
"name": "ControlNet-v1-1 (tile; fp16; v11f1e)",
|
"name": "ControlNet-v1-1 (tile; fp16; v11f1e)",
|
||||||
"type": "controlnet",
|
"type": "controlnet",
|
||||||
"base": "SD1.5",
|
"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>",
|
"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",
|
"reference": "https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors",
|
||||||
"filename": "control_v11f1e_sd15_tile_fp16.safetensors",
|
"filename": "control_v11f1e_sd15_tile_fp16.safetensors",
|
||||||
@@ -1832,7 +1878,7 @@
|
|||||||
"name": "ControlNet-HandRefiner-pruned (inpaint-depth-hand; fp16)",
|
"name": "ControlNet-HandRefiner-pruned (inpaint-depth-hand; fp16)",
|
||||||
"type": "controlnet",
|
"type": "controlnet",
|
||||||
"base": "SD1.5",
|
"base": "SD1.5",
|
||||||
"save_path": "default",
|
"save_path": "controlnet/1.5",
|
||||||
"description": "This inpaint-depth controlnet model is specialized for the hand refiner.",
|
"description": "This inpaint-depth controlnet model is specialized for the hand refiner.",
|
||||||
"reference": "https://huggingface.co/hr16/ControlNet-HandRefiner-pruned",
|
"reference": "https://huggingface.co/hr16/ControlNet-HandRefiner-pruned",
|
||||||
"filename": "control_sd15_inpaint_depth_hand_fp16.safetensors",
|
"filename": "control_sd15_inpaint_depth_hand_fp16.safetensors",
|
||||||
@@ -1843,7 +1889,7 @@
|
|||||||
"name": "control_boxdepth_LooseControlfp16 (fp16)",
|
"name": "control_boxdepth_LooseControlfp16 (fp16)",
|
||||||
"type": "controlnet",
|
"type": "controlnet",
|
||||||
"base": "SD1.5",
|
"base": "SD1.5",
|
||||||
"save_path": "default",
|
"save_path": "controlnet/1.5",
|
||||||
"description": "Loose ControlNet model",
|
"description": "Loose ControlNet model",
|
||||||
"reference": "https://huggingface.co/ioclab/LooseControl_WebUICombine",
|
"reference": "https://huggingface.co/ioclab/LooseControl_WebUICombine",
|
||||||
"filename": "control_boxdepth_LooseControlfp16.safetensors",
|
"filename": "control_boxdepth_LooseControlfp16.safetensors",
|
||||||
@@ -1854,7 +1900,7 @@
|
|||||||
"name": "GLIGEN textbox (fp16; pruned)",
|
"name": "GLIGEN textbox (fp16; pruned)",
|
||||||
"type": "gligen",
|
"type": "gligen",
|
||||||
"base": "SD1.5",
|
"base": "SD1.5",
|
||||||
"save_path": "default",
|
"save_path": "gligen/SD1.5",
|
||||||
"description": "GLIGEN textbox model",
|
"description": "GLIGEN textbox model",
|
||||||
"reference": "https://huggingface.co/comfyanonymous/GLIGEN_pruned_safetensors",
|
"reference": "https://huggingface.co/comfyanonymous/GLIGEN_pruned_safetensors",
|
||||||
"filename": "gligen_sd14_textbox_pruned_fp16.safetensors",
|
"filename": "gligen_sd14_textbox_pruned_fp16.safetensors",
|
||||||
@@ -3100,7 +3146,7 @@
|
|||||||
"name": "monster-labs - Controlnet QR Code Monster v1 For SDXL",
|
"name": "monster-labs - Controlnet QR Code Monster v1 For SDXL",
|
||||||
"type": "controlnet",
|
"type": "controlnet",
|
||||||
"base": "SDXL",
|
"base": "SDXL",
|
||||||
"save_path": "default",
|
"save_path": "controlnet/SDXL",
|
||||||
"description": "monster-labs - Controlnet QR Code Monster v1 For SDXL",
|
"description": "monster-labs - Controlnet QR Code Monster v1 For SDXL",
|
||||||
"reference": "https://huggingface.co/monster-labs/control_v1p_sdxl_qrcode_monster",
|
"reference": "https://huggingface.co/monster-labs/control_v1p_sdxl_qrcode_monster",
|
||||||
"filename": "control_v1p_sdxl_qrcode_monster.safetensors",
|
"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",
|
"url": "https://huggingface.co/InstantX/FLUX.1-dev-Controlnet-Union/resolve/main/diffusion_pytorch_model.safetensors",
|
||||||
"size": "6.6GB"
|
"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",
|
"name": "Shakker-Labs/FLUX.1-dev-ControlNet-Union-Pro",
|
||||||
"type": "controlnet",
|
"type": "controlnet",
|
||||||
@@ -3493,6 +3552,7 @@
|
|||||||
"url": "https://huggingface.co/Kijai/flux-fp8/resolve/main/flux_shakker_labs_union_pro-fp8_e4m3fn.safetensors",
|
"url": "https://huggingface.co/Kijai/flux-fp8/resolve/main/flux_shakker_labs_union_pro-fp8_e4m3fn.safetensors",
|
||||||
"size": "3.3GB"
|
"size": "3.3GB"
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
"name": "jasperai/FLUX.1-dev-Controlnet-Upscaler",
|
"name": "jasperai/FLUX.1-dev-Controlnet-Upscaler",
|
||||||
"type": "controlnet",
|
"type": "controlnet",
|
||||||
@@ -3661,6 +3721,41 @@
|
|||||||
"size": "1.19GB"
|
"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)",
|
"name": "Kijai/ToonCrafter model checkpoint (interpolation fp16)",
|
||||||
"type": "checkpoint",
|
"type": "checkpoint",
|
||||||
@@ -3929,6 +4024,18 @@
|
|||||||
"url": "https://huggingface.co/Kijai/flux-fp8/resolve/main/flux1-schnell-fp8.safetensors",
|
"url": "https://huggingface.co/Kijai/flux-fp8/resolve/main/flux1-schnell-fp8.safetensors",
|
||||||
"size": "11.9GB"
|
"size": "11.9GB"
|
||||||
},
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
"name": "FLUX.1 [Dev] Diffusion model (scaled fp8)",
|
||||||
|
"type": "diffusion_model",
|
||||||
|
"base": "FLUX.1",
|
||||||
|
"save_path": "diffusion_models/FLUX1",
|
||||||
|
"description": "FLUX.1 [Dev] Diffusion model (scaled fp8)[w/Due to the large size of the model, it is recommended to download it through a browser if possible.]",
|
||||||
|
"reference": "https://huggingface.co/comfyanonymous/flux_dev_scaled_fp8_test",
|
||||||
|
"filename": "flux_dev_fp8_scaled_diffusion_model.safetensors",
|
||||||
|
"url": "https://huggingface.co/comfyanonymous/flux_dev_scaled_fp8_test/resolve/main/flux_dev_fp8_scaled_diffusion_model.safetensors",
|
||||||
|
"size": "11.9GB"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "kijai/FLUX.1 [dev] Diffusion model (float8_e4m3fn)",
|
"name": "kijai/FLUX.1 [dev] Diffusion model (float8_e4m3fn)",
|
||||||
"type": "diffusion_model",
|
"type": "diffusion_model",
|
||||||
@@ -4387,6 +4494,64 @@
|
|||||||
"filename": "chatglm3-fp16.safetensors",
|
"filename": "chatglm3-fp16.safetensors",
|
||||||
"url": "https://huggingface.co/Kijai/ChatGLM3-safetensors/resolve/main/chatglm3-fp16.safetensors",
|
"url": "https://huggingface.co/Kijai/ChatGLM3-safetensors/resolve/main/chatglm3-fp16.safetensors",
|
||||||
"size": "12.52GB"
|
"size": "12.52GB"
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
"name": "pulid_flux_v0.9.1.safetensors",
|
||||||
|
"type": "PuLID",
|
||||||
|
"base": "FLUX",
|
||||||
|
"save_path": "pulid",
|
||||||
|
"description": "This is required for PuLID (FLUX)",
|
||||||
|
"reference": "https://huggingface.co/guozinan/PuLID",
|
||||||
|
"filename": "pulid_flux_v0.9.1.safetensors",
|
||||||
|
"url": "https://huggingface.co/guozinan/PuLID/resolve/main/pulid_flux_v0.9.1.safetensors",
|
||||||
|
"size": "1.14GB"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "pulid_v1.1.safetensors",
|
||||||
|
"type": "PuLID",
|
||||||
|
"base": "SDXL",
|
||||||
|
"save_path": "pulid",
|
||||||
|
"description": "This is required for PuLID (SDXL)",
|
||||||
|
"reference": "https://huggingface.co/guozinan/PuLID",
|
||||||
|
"filename": "pulid_v1.1.safetensors",
|
||||||
|
"url": "https://huggingface.co/guozinan/PuLID/resolve/main/pulid_v1.1.safetensors",
|
||||||
|
"size": "984MB"
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
"name": "kijai/MoGe_ViT_L_fp16.safetensors",
|
||||||
|
"type": "MoGe",
|
||||||
|
"base": "MoGe",
|
||||||
|
"save_path": "MoGe",
|
||||||
|
"description": "Safetensors versions of [a/https://github.com/microsoft/MoGe](https://github.com/microsoft/MoGe)",
|
||||||
|
"reference": "https://huggingface.co/Kijai/MoGe_safetensors",
|
||||||
|
"filename": "MoGe_ViT_L_fp16.safetensors",
|
||||||
|
"url": "https://huggingface.co/Kijai/MoGe_safetensors/resolve/main/MoGe_ViT_L_fp16.safetensors",
|
||||||
|
"size": "628MB"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "kijai/MoGe_ViT_L_fp16.safetensors",
|
||||||
|
"type": "MoGe",
|
||||||
|
"base": "MoGe",
|
||||||
|
"save_path": "MoGe",
|
||||||
|
"description": "Safetensors versions of [a/https://github.com/microsoft/MoGe](https://github.com/microsoft/MoGe)",
|
||||||
|
"reference": "https://huggingface.co/Kijai/MoGe_safetensors",
|
||||||
|
"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"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -12,6 +12,452 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
{
|
||||||
|
"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]",
|
||||||
|
"reference": "https://github.com/Anze-/ComfyUI_deepDeband",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/Anze-/ComfyUI_deepDeband"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "ComyUI wrapper for RaymondLZhou/deepDeband image and video debanding\nNOTE: The files in the repo are not organized."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "bmad4ever",
|
||||||
|
"title": "Bmad Nodes [UNSAFE]",
|
||||||
|
"id": "bmad",
|
||||||
|
"reference": "https://github.com/bmad4ever/comfyui_bmad_nodes",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/bmad4ever/comfyui_bmad_nodes"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "This custom node offers the following functionalities: API support for setting up API requests, computer vision primarily for masking or collages, and general utility to streamline workflow setup or implement essential missing features.\nNOTE: Vulnerability discovered. Not being managed."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "suncat2ps",
|
||||||
|
"title": "ComfyUI-SaveImgNextcloud",
|
||||||
|
"reference": "https://github.com/suncat2ps/ComfyUI-SaveImgNextcloud",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/suncat2ps/ComfyUI-SaveImgNextcloud"
|
||||||
|
],
|
||||||
|
"description": "NODES:Save Image to Nextcloud",
|
||||||
|
"install_type": "git-clone"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "KoreTeknology",
|
||||||
|
"title": "ComfyUI Production Nodes Pack [WIP]",
|
||||||
|
"reference": "https://github.com/KoreTeknology/ComfyUI-Nai-Production-Nodes-Pack",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/KoreTeknology/ComfyUI-Nai-Production-Nodes-Pack"
|
||||||
|
],
|
||||||
|
"description": "This is set of custom nodes for your ComfyUI1 production setup. It offers the very basic nodes that are missing in the official 'Vanilla' package. It is a research Node based project on Artificial Intelligence using ComfyUI visual editor. This repository also includes a set of workflows to test the nodes.",
|
||||||
|
"install_type": "git-clone"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "DoctorDiffusion",
|
||||||
|
"title": "ComfyUI-Flashback",
|
||||||
|
"reference": "https://github.com/DoctorDiffusion/ComfyUI-Flashback",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/DoctorDiffusion/ComfyUI-Flashback"
|
||||||
|
],
|
||||||
|
"description": "NODES:Latent Export, Latent Import, Latent Loop",
|
||||||
|
"install_type": "git-clone"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "sswink",
|
||||||
|
"title": "comfyui-lingshang",
|
||||||
|
"reference": "https://github.com/sswink/comfyui-lingshang",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/sswink/comfyui-lingshang"
|
||||||
|
],
|
||||||
|
"description": "NODES:LS_SaveImageToOss, LS_LoadMaskFromUrl, LS_DigImageByMask, LS_ALY_Seg_Utils, LS_ALY_UploadToOssAndGetUrl, LS_GrowMaskWithBlur, LS_ALY_Seg_Body_Utils, LS_ALY_Seg_Common_Utils, LS_ALY_Seg_Clothes_Utils, LS_ALY_Seg_Body_Utils_Return_crop, ...",
|
||||||
|
"install_type": "git-clone"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "AICodeFactory",
|
||||||
|
"title": "ComfyUI-Viva",
|
||||||
|
"reference": "https://github.com/AICodeFactory/ComfyUI-Viva",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/AICodeFactory/ComfyUI-Viva"
|
||||||
|
],
|
||||||
|
"description": "NODES:HttpTrigger (Viva), HttpTrigger (Image), HttpTrigger (Common)",
|
||||||
|
"install_type": "git-clone"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "LogicAI",
|
||||||
|
"title": "ComfyUI-MagicAI [UNSAFE]",
|
||||||
|
"reference": "https://github.com/lcolok/ComfyUI-MagicAI",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/lcolok/ComfyUI-MagicAI"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "NODES:Mask Size Calculator (MagicAI), Universal Mask Converter (MagicAI), Python Execution (MagicAI), Extract JSON From Text Node(MagicAI)\n[w/This extension allows the execution of arbitrary Python code from a workflow.]"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "T8star1984",
|
||||||
|
"title": "comfyui-purgevram",
|
||||||
|
"reference": "https://github.com/T8star1984/comfyui-purgevram",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/T8star1984/comfyui-purgevram"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "NODES:PurgeVRAM.\nCan be added after any node to clean up vram and memory"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "Laser-one",
|
||||||
|
"title": "ComfyUI-align-pose",
|
||||||
|
"reference": "https://github.com/Laser-one/ComfyUI-align-pose",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/Laser-one/ComfyUI-align-pose"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "NODES:align pose"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "chenbaiyujason",
|
||||||
|
"title": "ComfyUI_StepFun",
|
||||||
|
"reference": "https://github.com/chenbaiyujason/ComfyUI_StepFun",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/chenbaiyujason/ComfyUI_StepFun"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "To use stepfun's library, you need an official api that supports multimodal inputs such as video and pictures [a/https://platform.stepfun.com/request-restriction](https://platform.stepfun.com/request-restriction)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "attashe",
|
||||||
|
"title": "ComfyUI-FluxRegionAttention [WIP]",
|
||||||
|
"reference": "https://github.com/attashe/ComfyUI-FluxRegionAttention",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/attashe/ComfyUI-FluxRegionAttention"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Implement Region Attention for Flux model"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "aria1th",
|
||||||
|
"title": "ComfyUI-SkipCFGSigmas",
|
||||||
|
"reference": "https://github.com/aria1th/ComfyUI-SkipCFGSigmas",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/aria1th/ComfyUI-SkipCFGSigmas"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "NODES:CFGControl_SKIPCFG"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "PnthrLeo",
|
||||||
|
"title": "comfyUI-image-search",
|
||||||
|
"reference": "https://github.com/PnthrLeo/comfyUI-image-search",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/PnthrLeo/comfyUI-image-search"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "NODES:CloseImagesSearcher"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "Clelstyn",
|
||||||
|
"title": "ComfyUI-Inpaint_with_Detailer",
|
||||||
|
"reference": "https://github.com/Clelstyn/ComfyUI-Inpaint_with_Detailer",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/Clelstyn/ComfyUI-Inpaint_with_Detailer"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "NODES:Masked Resize Image, Paste Masked Image, Filter And Blur Mask"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "Looking-Glass",
|
||||||
|
"title": "LKG-ComfyUI",
|
||||||
|
"reference": "https://github.com/Looking-Glass/LKG-ComfyUI",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/Looking-Glass/LKG-ComfyUI"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "NODES:Side by Side Node, Bridge Preview Node, Load Folder, Scale Maintain Aspect Ratio Node, "
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "xiaoyumu",
|
||||||
|
"title": "ComfyUI-XYNodes",
|
||||||
|
"reference": "https://github.com/xiaoyumu/ComfyUI-XYNodes",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/xiaoyumu/ComfyUI-XYNodes"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Nodes:PrimitiveBBOX."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "ainanoha",
|
||||||
|
"title": "etm_comfyui_nodes",
|
||||||
|
"reference": "https://github.com/ainanoha/etm_comfyui_nodes",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/ainanoha/etm_comfyui_nodes"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "NODES:LETM Save Image, ETM Load Image From Local"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "oshtz",
|
||||||
|
"title": "ComfyUI-oshtz-nodes [WIP]",
|
||||||
|
"reference": "https://github.com/oshtz/ComfyUI-oshtz-nodes",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/oshtz/ComfyUI-oshtz-nodes"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Custom nodes for ComfyUI created for some of my workflows.\nLLM All-in-One Node, String Splitter Node, LoRA Switcher Node, Image Overlay Node"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "DoctorDiffusion",
|
||||||
|
"title": "DoctorDiffusion [WIP]",
|
||||||
|
"reference": "https://github.com/DoctorDiffusion/Doctor-Tools",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/DoctorDiffusion/Doctor-Tools"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "NODES:Final Frame Selector, Video Merge.\nNOTE: The files in the repo are not organized."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "m-ai-studio",
|
||||||
|
"title": "mai-prompt-progress",
|
||||||
|
"reference": "https://github.com/m-ai-studio/mai-prompt-progress",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/m-ai-studio/mai-prompt-progress"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "mai-prompt-progress"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "neeltheninja",
|
"author": "neeltheninja",
|
||||||
"title": "ComfyUI-TempFileDeleter [UNSAFE]",
|
"title": "ComfyUI-TempFileDeleter [UNSAFE]",
|
||||||
@@ -24,7 +470,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author": "kylegrover",
|
"author": "kylegrover",
|
||||||
"title": "ComfyUI-MochiWrapper [UNSAFE]",
|
"title": "comfyui-python-cowboy [UNSAFE]",
|
||||||
"reference": "https://github.com/kylegrover/comfyui-python-cowboy",
|
"reference": "https://github.com/kylegrover/comfyui-python-cowboy",
|
||||||
"files": [
|
"files": [
|
||||||
"https://github.com/kylegrover/comfyui-python-cowboy"
|
"https://github.com/kylegrover/comfyui-python-cowboy"
|
||||||
@@ -112,16 +558,6 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "Upscale image with model multiple times !"
|
"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",
|
"author": "rouxianmantou",
|
||||||
"title": "comfyui-rxmt-nodes",
|
"title": "comfyui-rxmt-nodes",
|
||||||
@@ -172,16 +608,6 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "here put custom input nodes such as text,video...\nNOTE: The files in the repo are not organized."
|
"description": "here put custom input nodes such as text,video...\nNOTE: The files in the repo are not organized."
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"author": "dafeng012",
|
|
||||||
"title": "comfyui-imgmake [WIP]",
|
|
||||||
"reference": "https://github.com/dafeng012/comfyui-imgmake",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/dafeng012/comfyui-imgmake"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "This project is inspired by [a/https://github.com/s9roll7/ebsynth_utility](https://github.com/s9roll7/ebsynth_utility)\nNOTE: The files in the repo are not organized."
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"author": "fablestudio",
|
"author": "fablestudio",
|
||||||
"title": "ComfyUI-Showrunner-Utils",
|
"title": "ComfyUI-Showrunner-Utils",
|
||||||
@@ -297,7 +723,7 @@
|
|||||||
"title": "VLLMVisionChatNode",
|
"title": "VLLMVisionChatNode",
|
||||||
"reference": "https://github.com/okg21/VLLMVisionChatNode",
|
"reference": "https://github.com/okg21/VLLMVisionChatNode",
|
||||||
"files": [
|
"files": [
|
||||||
"https://github.com/okg21/VLLMVisionChatNode/raw/refs/heads/main/VLLMVisionChatNode.py"
|
"https://raw.githubusercontent.com/okg21/VLLMVisionChatNode/refs/heads/main/VLLMVisionChatNode.py"
|
||||||
],
|
],
|
||||||
"pip": ["openai", "numpy"],
|
"pip": ["openai", "numpy"],
|
||||||
"install_type": "copy",
|
"install_type": "copy",
|
||||||
@@ -595,16 +1021,6 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "NODES:image select, Load AnyLLM, Ask LLM, OpenAI DAlle Node, SK Text_String, SK Random File Name"
|
"description": "NODES:image select, Load AnyLLM, Ask LLM, OpenAI DAlle Node, SK Text_String, SK Random File Name"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"author": "Cardoso-topdev",
|
|
||||||
"title": "comfyui_meshanything_v1 [WIP]",
|
|
||||||
"reference": "https://github.com/Cardoso-topdev/comfyui_meshanything_v1",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/Cardoso-topdev/comfyui_meshanything_v1"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "MeshAnything V2: Artist-Created Mesh Generation With Adjacent Mesh Tokenization"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"author": "Lilien86",
|
"author": "Lilien86",
|
||||||
"title": "lauger NodePack for ComfyUI [WIP]",
|
"title": "lauger NodePack for ComfyUI [WIP]",
|
||||||
@@ -1071,17 +1487,6 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "Nodes:LoadImgFromInputUrl"
|
"description": "Nodes:LoadImgFromInputUrl"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"author": "LevelPixel",
|
|
||||||
"title": "ComfyUI-LevelPixel",
|
|
||||||
"id": "levelpixel",
|
|
||||||
"reference": "https://github.com/LevelPixel/ComfyUI-LevelPixel",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/LevelPixel/ComfyUI-LevelPixel"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "Nodes:Model Unloader, LLM Optional Memory Free Advanced"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"author": "StartHua",
|
"author": "StartHua",
|
||||||
"title": "Comfyui_CXH_CRM",
|
"title": "Comfyui_CXH_CRM",
|
||||||
@@ -1225,8 +1630,8 @@
|
|||||||
"title": "ComfyUI-Waveform-Extensions",
|
"title": "ComfyUI-Waveform-Extensions",
|
||||||
"reference": "https://github.com/NeuralNotW0rk/ComfyUI-Waveform-Extensions",
|
"reference": "https://github.com/NeuralNotW0rk/ComfyUI-Waveform-Extensions",
|
||||||
"files": [
|
"files": [
|
||||||
"https://github.com/NeuralNotW0rk/ComfyUI-Waveform-Extensions/raw/main/EXT_VariationUtils.py",
|
"https://raw.githubusercontent.com/NeuralNotW0rk/ComfyUI-Waveform-Extensions/main/EXT_VariationUtils.py",
|
||||||
"https://github.com/NeuralNotW0rk/ComfyUI-Waveform-Extensions/raw/main/EXT_AudioManipulation.py"
|
"https://raw.githubusercontent.com/NeuralNotW0rk/ComfyUI-Waveform-Extensions/main/EXT_AudioManipulation.py"
|
||||||
],
|
],
|
||||||
"install_type": "copy",
|
"install_type": "copy",
|
||||||
"description": "Some additional audio utilites for use on top of Sample Diffusion ComfyUI Extension"
|
"description": "Some additional audio utilites for use on top of Sample Diffusion ComfyUI Extension"
|
||||||
@@ -1264,14 +1669,14 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author": "AllenEdgarPoe",
|
"author": "AllenEdgarPoe",
|
||||||
"title": "ComfyUI-Xorbis-nodes",
|
"title": "ComfyUI-Xorbis-nodes [WIP]",
|
||||||
"id": "xorbis",
|
"id": "xorbis",
|
||||||
"reference": "https://github.com/AllenEdgarPoe/ComfyUI-Xorbis-nodes",
|
"reference": "https://github.com/AllenEdgarPoe/ComfyUI-Xorbis-nodes",
|
||||||
"files": [
|
"files": [
|
||||||
"https://github.com/AllenEdgarPoe/ComfyUI-Xorbis-nodes"
|
"https://github.com/AllenEdgarPoe/ComfyUI-Xorbis-nodes"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"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",
|
"author": "mikeymcfish",
|
||||||
@@ -1425,17 +1830,6 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "Nodes:Add_text_by_mask.[w/This custom node cannot be installed simultaneously as it has the same repository name as MarkoCa1/ComfyUI-Text.]"
|
"description": "Nodes:Add_text_by_mask.[w/This custom node cannot be installed simultaneously as it has the same repository name as MarkoCa1/ComfyUI-Text.]"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"author": "yushan777",
|
|
||||||
"title": "Y7 Nodes for ComfyUI",
|
|
||||||
"id": "y7nodes",
|
|
||||||
"reference": "https://github.com/yushan777/ComfyUI-Y7Nodes",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/yushan777/ComfyUI-Y7Nodes"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "Nodes:Count_Tokens_(Y7)"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"author": "norgeous",
|
"author": "norgeous",
|
||||||
"title": "UI Builder [WIP]",
|
"title": "UI Builder [WIP]",
|
||||||
@@ -1723,8 +2117,8 @@
|
|||||||
"title": "comfyUI_padding-resize_node",
|
"title": "comfyUI_padding-resize_node",
|
||||||
"reference": "https://github.com/jp0215/comfyUI_padding-resize_node",
|
"reference": "https://github.com/jp0215/comfyUI_padding-resize_node",
|
||||||
"files": [
|
"files": [
|
||||||
"https://github.com/jp0215/comfyUI_padding-resize_node/raw/main/PaddingNode.py",
|
"https://raw.githubusercontent.com/jp0215/comfyUI_padding-resize_node/main/PaddingNode.py",
|
||||||
"https://github.com/jp0215/comfyUI_padding-resize_node/raw/main/ResizeNode.py"
|
"https://raw.githubusercontent.com/jp0215/comfyUI_padding-resize_node/main/ResizeNode.py"
|
||||||
],
|
],
|
||||||
"install_type": "copy",
|
"install_type": "copy",
|
||||||
"description": "Padding image to 8x: input image and mask, if the side length is not an integer multiple of 8, expand the side length to the smallest multiple of 8 greater than the original side length. Output padding image and mask. Resize to the origin: input the generated image and the original image, crop the generated image to the size of the original image, output the cropped image."
|
"description": "Padding image to 8x: input image and mask, if the side length is not an integer multiple of 8, expand the side length to the smallest multiple of 8 greater than the original side length. Output padding image and mask. Resize to the origin: input the generated image and the original image, crop the generated image to the size of the original image, output the cropped image."
|
||||||
@@ -2429,7 +2823,7 @@
|
|||||||
"title": "ComfyUI_Prompt_Template_CustomNodes",
|
"title": "ComfyUI_Prompt_Template_CustomNodes",
|
||||||
"reference": "https://github.com/komojini/ComfyUI_Prompt_Template_CustomNodes",
|
"reference": "https://github.com/komojini/ComfyUI_Prompt_Template_CustomNodes",
|
||||||
"files": [
|
"files": [
|
||||||
"https://github.com/komojini/ComfyUI_Prompt_Template_CustomNodes/raw/main/prompt_with_template.py"
|
"https://raw.githubusercontent.com/komojini/ComfyUI_Prompt_Template_CustomNodes/main/prompt_with_template.py"
|
||||||
],
|
],
|
||||||
"install_type": "copy",
|
"install_type": "copy",
|
||||||
"description": "Nodes:Prompt with Template"
|
"description": "Nodes:Prompt with Template"
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -10,6 +10,99 @@
|
|||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
|
{
|
||||||
|
"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]",
|
||||||
|
"reference": "https://github.com/thecooltechguy/ComfyUI-ComfyRun",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/thecooltechguy/ComfyUI-ComfyRun"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "The easiest way to run & share any ComfyUI workflow [a/https://comfyrun.com](https://comfyrun.com)\nNOTE: Vulnerability discovered. Not being managed."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "Cardoso-topdev",
|
||||||
|
"title": "comfyui_meshanything_v1 [REMOVED]",
|
||||||
|
"reference": "https://github.com/Cardoso-topdev/comfyui_meshanything_v1",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/Cardoso-topdev/comfyui_meshanything_v1"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "MeshAnything V2: Artist-Created Mesh Generation With Adjacent Mesh Tokenization"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "palant",
|
||||||
|
"title": "Extended Save Image for ComfyUI [DEPRECATED]",
|
||||||
|
"reference": "https://github.com/palant/extended-saveimage-comfyui",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/palant/extended-saveimage-comfyui"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "This custom node is largely identical to the usual Save Image but allows saving images also in JPEG and WEBP formats, the latter with both lossless and lossy compression. Metadata is embedded in the images as usual, and the resulting images can be used to load a workflow."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "1038lab",
|
||||||
|
"title": "ComfyUI-GPT2P [REMOVED]",
|
||||||
|
"id": "gpt2p",
|
||||||
|
"reference": "https://github.com/1038lab/ComfyUI-GPT2P",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/1038lab/ComfyUI-GPT2P"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "ComfyUI Node - Hugging Face repositories GTP2 Prompt"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "yushan777",
|
||||||
|
"title": "Y7 Nodes for ComfyUI [REMOVED]",
|
||||||
|
"id": "y7nodes",
|
||||||
|
"reference": "https://github.com/yushan777/ComfyUI-Y7Nodes",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/yushan777/ComfyUI-Y7Nodes"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Nodes:Count_Tokens_(Y7)"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "city96",
|
"author": "city96",
|
||||||
"title": "SD-Advanced-Noise [DEPRECATED]",
|
"title": "SD-Advanced-Noise [DEPRECATED]",
|
||||||
@@ -249,16 +342,6 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "This custom node for ComfyUI provides full-body animation capabilities, including facial rigging, various lighting styles, and green screen output."
|
"description": "This custom node for ComfyUI provides full-body animation capabilities, including facial rigging, various lighting styles, and green screen output."
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"author": "m-ai-studio",
|
|
||||||
"title": "mai-prompt-progress [REMOVED]",
|
|
||||||
"reference": "https://github.com/m-ai-studio/mai-prompt-progress",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/m-ai-studio/mai-prompt-progress"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "mai-prompt-progress"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"author": "ZHO-ZHO-ZHO",
|
"author": "ZHO-ZHO-ZHO",
|
||||||
"title": "ComfyUI-AnyText [NOT MAINTAINED]",
|
"title": "ComfyUI-AnyText [NOT MAINTAINED]",
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,5 +1,166 @@
|
|||||||
{
|
{
|
||||||
"models": [
|
"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",
|
||||||
|
"base": "FLUX.1",
|
||||||
|
"save_path": "diffusion_models/FLUX1",
|
||||||
|
"description": "FLUX.1 [Dev] Diffusion model (scaled fp8)[w/Due to the large size of the model, it is recommended to download it through a browser if possible.]",
|
||||||
|
"reference": "https://huggingface.co/comfyanonymous/flux_dev_scaled_fp8_test",
|
||||||
|
"filename": "flux_dev_fp8_scaled_diffusion_model.safetensors",
|
||||||
|
"url": "https://huggingface.co/comfyanonymous/flux_dev_scaled_fp8_test/resolve/main/flux_dev_fp8_scaled_diffusion_model.safetensors",
|
||||||
|
"size": "11.9GB"
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
"name": "kijai/MoGe_ViT_L_fp16.safetensors",
|
||||||
|
"type": "MoGe",
|
||||||
|
"base": "MoGe",
|
||||||
|
"save_path": "MoGe",
|
||||||
|
"description": "Safetensors versions of [a/https://github.com/microsoft/MoGe](https://github.com/microsoft/MoGe)",
|
||||||
|
"reference": "https://huggingface.co/Kijai/MoGe_safetensors",
|
||||||
|
"filename": "MoGe_ViT_L_fp16.safetensors",
|
||||||
|
"url": "https://huggingface.co/Kijai/MoGe_safetensors/resolve/main/MoGe_ViT_L_fp16.safetensors",
|
||||||
|
"size": "628MB"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "kijai/MoGe_ViT_L_fp16.safetensors",
|
||||||
|
"type": "MoGe",
|
||||||
|
"base": "MoGe",
|
||||||
|
"save_path": "MoGe",
|
||||||
|
"description": "Safetensors versions of [a/https://github.com/microsoft/MoGe](https://github.com/microsoft/MoGe)",
|
||||||
|
"reference": "https://huggingface.co/Kijai/MoGe_safetensors",
|
||||||
|
"filename": "MoGe_ViT_L_fp16.safetensors",
|
||||||
|
"url": "https://huggingface.co/Kijai/MoGe_safetensors/resolve/main/MoGe_ViT_L_fp16.safetensors",
|
||||||
|
"size": "1.26GB"
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
"name": "pulid_flux_v0.9.1.safetensors",
|
||||||
|
"type": "PuLID",
|
||||||
|
"base": "FLUX",
|
||||||
|
"save_path": "pulid",
|
||||||
|
"description": "This is required for PuLID (FLUX)",
|
||||||
|
"reference": "https://huggingface.co/guozinan/PuLID",
|
||||||
|
"filename": "pulid_flux_v0.9.1.safetensors",
|
||||||
|
"url": "https://huggingface.co/guozinan/PuLID/resolve/main/pulid_flux_v0.9.1.safetensors",
|
||||||
|
"size": "1.14GB"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "pulid_v1.1.safetensors",
|
||||||
|
"type": "PuLID",
|
||||||
|
"base": "SDXL",
|
||||||
|
"save_path": "pulid",
|
||||||
|
"description": "This is required for PuLID (SDXL)",
|
||||||
|
"reference": "https://huggingface.co/guozinan/PuLID",
|
||||||
|
"filename": "pulid_v1.1.safetensors",
|
||||||
|
"url": "https://huggingface.co/guozinan/PuLID/resolve/main/pulid_v1.1.safetensors",
|
||||||
|
"size": "984MB"
|
||||||
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
"name": "Kolors-IP-Adapter-Plus.bin (Kwai-Kolors/Kolors-IP-Adapter-Plus)",
|
"name": "Kolors-IP-Adapter-Plus.bin (Kwai-Kolors/Kolors-IP-Adapter-Plus)",
|
||||||
"type": "IP-Adapter",
|
"type": "IP-Adapter",
|
||||||
@@ -519,172 +680,6 @@
|
|||||||
"filename": "flux1-dev-Q5_0.gguf",
|
"filename": "flux1-dev-Q5_0.gguf",
|
||||||
"url": "https://huggingface.co/city96/FLUX.1-dev-gguf/resolve/main/flux1-dev-Q5_0.gguf",
|
"url": "https://huggingface.co/city96/FLUX.1-dev-gguf/resolve/main/flux1-dev-Q5_0.gguf",
|
||||||
"size": "8.27GB"
|
"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"
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -90,16 +90,6 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "Nodes:WW_ImageResize"
|
"description": "Nodes:WW_ImageResize"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"author": "bmz55",
|
|
||||||
"title": "bmz nodes",
|
|
||||||
"reference": "https://github.com/bmz55/comfyui-bmz-nodes",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/bmz55/comfyui-bmz-nodes"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "Nodes:Load Images From Dir With Name (Inspire - BMZ), Count Images In Dir (BMZ), Get Level Text (BMZ), Get Level Float (BMZ)"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"author": "azure-dragon-ai",
|
"author": "azure-dragon-ai",
|
||||||
"title": "ComfyUI-HPSv2-Nodes",
|
"title": "ComfyUI-HPSv2-Nodes",
|
||||||
@@ -150,26 +140,6 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "This module provides an annotation @ComfyFunc to streamline adding custom node types in ComfyUI. It processes your function's signature to create a wrapped function and custom node definition required for ComfyUI, eliminating all the boilerplate code. In most cases you can just add a @ComfyFunc(\"category\") annotation to your existing function."
|
"description": "This module provides an annotation @ComfyFunc to streamline adding custom node types in ComfyUI. It processes your function's signature to create a wrapped function and custom node definition required for ComfyUI, eliminating all the boilerplate code. In most cases you can just add a @ComfyFunc(\"category\") annotation to your existing function."
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"author": "MokkaBoss1",
|
|
||||||
"title": "Woman_in_a_dress",
|
|
||||||
"reference": "https://github.com/MokkaBoss1/Woman_in_a_dress",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/MokkaBoss1/Woman_in_a_dress/raw/main/Woman_In_A_Dress.py"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "Nodes:Woman_in_a_dress"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "shinich39",
|
|
||||||
"title": "comfyui-concat-text-39",
|
|
||||||
"reference": "https://github.com/shinich39/comfyui-concat-text-39",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/shinich39/comfyui-concat-text-39"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "Nodes:Concatenate multiple text nodes."
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"author": "OuticNZ",
|
"author": "OuticNZ",
|
||||||
"title": "ComfyUI-Simple-Of-Complex",
|
"title": "ComfyUI-Simple-Of-Complex",
|
||||||
@@ -250,6 +220,26 @@
|
|||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "The primitive node and dummy input are required because comfy doesn't accept requests with identical graphs. You'll also need a show text node. I like the one from ComfyUI-Custom-Scripts. I got the generic tetris remake from claude so it may or may not be ripped from somewhere else."
|
"description": "The primitive node and dummy input are required because comfy doesn't accept requests with identical graphs. You'll also need a show text node. I like the one from ComfyUI-Custom-Scripts. I got the generic tetris remake from claude so it may or may not be ripped from somewhere else."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "FlyMyAI",
|
||||||
|
"title": "ComfyUI-ExampleNode",
|
||||||
|
"reference": "https://github.com/FlyMyAI/ComfyUI-ExampleNode",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/FlyMyAI/ComfyUI-ExampleNode"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Node to provide convenient ComfyUI standard, supported by flymy_comfyui."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "Wanghanying",
|
||||||
|
"title": "ComfyUI_RAGDemo",
|
||||||
|
"reference": "https://github.com/Wanghanying/ComfyUI_RAGDemo",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/Wanghanying/ComfyUI_RAGDemo"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "RAG Demo for LLM"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -1 +1,546 @@
|
|||||||
{}
|
{
|
||||||
|
"https://github.com/BadCafeCode/execution-inversion-demo-comfyui": [
|
||||||
|
[
|
||||||
|
"AccumulateNode",
|
||||||
|
"AccumulationGetItemNode",
|
||||||
|
"AccumulationGetLengthNode",
|
||||||
|
"AccumulationHeadNode",
|
||||||
|
"AccumulationSetItemNode",
|
||||||
|
"AccumulationTailNode",
|
||||||
|
"AccumulationToListNode",
|
||||||
|
"BoolOperationNode",
|
||||||
|
"ComponentInput",
|
||||||
|
"ComponentMetadata",
|
||||||
|
"ComponentOutput",
|
||||||
|
"DebugPrint",
|
||||||
|
"ExecutionBlocker",
|
||||||
|
"FloatConditions",
|
||||||
|
"ForLoopClose",
|
||||||
|
"ForLoopOpen",
|
||||||
|
"IntConditions",
|
||||||
|
"IntMathOperation",
|
||||||
|
"InversionDemoAdvancedPromptNode",
|
||||||
|
"InversionDemoLazyConditional",
|
||||||
|
"InversionDemoLazyIndexSwitch",
|
||||||
|
"InversionDemoLazyMixImages",
|
||||||
|
"InversionDemoLazySwitch",
|
||||||
|
"ListToAccumulationNode",
|
||||||
|
"MakeListNode",
|
||||||
|
"StringConditions",
|
||||||
|
"ToBoolNode",
|
||||||
|
"WhileLoopClose",
|
||||||
|
"WhileLoopOpen"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "execution-inversion-demo-comfyui"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"https://github.com/BetaDoggo/ComfyUI-Tetris": [
|
||||||
|
[
|
||||||
|
"Tetris"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI Tetris"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"https://github.com/BoosterCore/ComfyUI-BC-Experimental": [
|
||||||
|
[
|
||||||
|
"ClipTextEncodeBC",
|
||||||
|
"ClipTextEncodeBCA",
|
||||||
|
"FluxEmptyLatentSize",
|
||||||
|
"LoraWithTriggerWord",
|
||||||
|
"SaveAnyText",
|
||||||
|
"SimpleText"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-BC-Experimental"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"https://github.com/FlyMyAI/ComfyUI-ExampleNode": [
|
||||||
|
[
|
||||||
|
"ExampleT2IFMANode"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-ExampleNode"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"https://github.com/IvanRybakov/comfyui-node-int-to-string-convertor": [
|
||||||
|
[
|
||||||
|
"Int To String"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "comfyui-node-int-to-string-convertor"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"https://github.com/LarryJane491/Custom-Node-Base": [
|
||||||
|
[
|
||||||
|
"My First Node"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "Custom-Node-Base"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"https://github.com/OuticNZ/ComfyUI-Simple-Of-Complex": [
|
||||||
|
[
|
||||||
|
"Pipe From Parameters",
|
||||||
|
"Pipe To Parameters",
|
||||||
|
"Prompt Tidy",
|
||||||
|
"Text Switch 2 Way",
|
||||||
|
"Text With Context"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-Simple-Of-Complex"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"https://github.com/Suzie1/ComfyUI_Guide_To_Making_Custom_Nodes": [
|
||||||
|
[
|
||||||
|
"Concatenate Hello World",
|
||||||
|
"Hello World Overlay Text",
|
||||||
|
"Print Hello World"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "Guide To Making Custom Nodes in ComfyUI"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"https://github.com/Wanghanying/ComfyUI_RAGDemo": [
|
||||||
|
[
|
||||||
|
"testRAG"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI_RAGDemo"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"https://github.com/azure-dragon-ai/ComfyUI-HPSv2-Nodes": [
|
||||||
|
[
|
||||||
|
"GetImageSize",
|
||||||
|
"HaojihuiHPSv2ImageProcessor",
|
||||||
|
"HaojihuiHPSv2ImageScore",
|
||||||
|
"HaojihuiHPSv2ImageScores",
|
||||||
|
"HaojihuiHPSv2Loader",
|
||||||
|
"HaojihuiHPSv2SaveAnimatedWEBP",
|
||||||
|
"HaojihuiHPSv2SaveImage",
|
||||||
|
"HaojihuiHPSv2SaveWEBP",
|
||||||
|
"HaojihuiHPSv2SaveWebpImage",
|
||||||
|
"HaojihuiHPSv2TextProcessor",
|
||||||
|
"SaveImageWebp",
|
||||||
|
"ScaleShort"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-HPSv2-Nodes"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"https://github.com/bamboodia/BAM_Nodes": [
|
||||||
|
[
|
||||||
|
"BAM Crop To Ratio",
|
||||||
|
"BAM Empty Latent By Ratio",
|
||||||
|
"BAM Get Shortest Side",
|
||||||
|
"BAM OnOff INT",
|
||||||
|
"BAM Random Float",
|
||||||
|
"BAM Random Image From Folder"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "BAM Nodes"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"https://github.com/boricuapab/ComfyUI_BoricuapabWFNodePack": [
|
||||||
|
[
|
||||||
|
"BoricuapabWF Concatenate Hello World",
|
||||||
|
"BoricuapabWF Integer",
|
||||||
|
"BoricuapabWF Print Hello Puerto Rican World",
|
||||||
|
"BoricuapabWF Print Puerto Rican"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI_BoricuapabWFNodePack"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"https://github.com/comfyanonymous/ComfyUI": [
|
||||||
|
[
|
||||||
|
"AddNoise",
|
||||||
|
"AlignYourStepsScheduler",
|
||||||
|
"BasicGuider",
|
||||||
|
"BasicScheduler",
|
||||||
|
"BetaSamplingScheduler",
|
||||||
|
"CFGGuider",
|
||||||
|
"CLIPAttentionMultiply",
|
||||||
|
"CLIPLoader",
|
||||||
|
"CLIPMergeAdd",
|
||||||
|
"CLIPMergeSimple",
|
||||||
|
"CLIPMergeSubtract",
|
||||||
|
"CLIPSave",
|
||||||
|
"CLIPSetLastLayer",
|
||||||
|
"CLIPTextEncode",
|
||||||
|
"CLIPTextEncodeControlnet",
|
||||||
|
"CLIPTextEncodeFlux",
|
||||||
|
"CLIPTextEncodeHunyuanDiT",
|
||||||
|
"CLIPTextEncodeSD3",
|
||||||
|
"CLIPTextEncodeSDXL",
|
||||||
|
"CLIPTextEncodeSDXLRefiner",
|
||||||
|
"CLIPVisionEncode",
|
||||||
|
"CLIPVisionLoader",
|
||||||
|
"Canny",
|
||||||
|
"CheckpointLoader",
|
||||||
|
"CheckpointLoaderSimple",
|
||||||
|
"CheckpointSave",
|
||||||
|
"ConditioningAverage",
|
||||||
|
"ConditioningCombine",
|
||||||
|
"ConditioningConcat",
|
||||||
|
"ConditioningSetArea",
|
||||||
|
"ConditioningSetAreaPercentage",
|
||||||
|
"ConditioningSetAreaStrength",
|
||||||
|
"ConditioningSetMask",
|
||||||
|
"ConditioningSetTimestepRange",
|
||||||
|
"ConditioningZeroOut",
|
||||||
|
"ControlNetApply",
|
||||||
|
"ControlNetApplyAdvanced",
|
||||||
|
"ControlNetApplySD3",
|
||||||
|
"ControlNetInpaintingAliMamaApply",
|
||||||
|
"ControlNetLoader",
|
||||||
|
"CropMask",
|
||||||
|
"DiffControlNetLoader",
|
||||||
|
"DifferentialDiffusion",
|
||||||
|
"DiffusersLoader",
|
||||||
|
"DisableNoise",
|
||||||
|
"DualCFGGuider",
|
||||||
|
"DualCLIPLoader",
|
||||||
|
"EmptyImage",
|
||||||
|
"EmptyLatentAudio",
|
||||||
|
"EmptyLatentImage",
|
||||||
|
"EmptyMochiLatentVideo",
|
||||||
|
"EmptySD3LatentImage",
|
||||||
|
"ExponentialScheduler",
|
||||||
|
"FeatherMask",
|
||||||
|
"FlipSigmas",
|
||||||
|
"FluxGuidance",
|
||||||
|
"FreeU",
|
||||||
|
"FreeU_V2",
|
||||||
|
"GITSScheduler",
|
||||||
|
"GLIGENLoader",
|
||||||
|
"GLIGENTextBoxApply",
|
||||||
|
"GrowMask",
|
||||||
|
"HyperTile",
|
||||||
|
"HypernetworkLoader",
|
||||||
|
"ImageBatch",
|
||||||
|
"ImageBlend",
|
||||||
|
"ImageBlur",
|
||||||
|
"ImageColorToMask",
|
||||||
|
"ImageCompositeMasked",
|
||||||
|
"ImageCrop",
|
||||||
|
"ImageFromBatch",
|
||||||
|
"ImageInvert",
|
||||||
|
"ImageOnlyCheckpointLoader",
|
||||||
|
"ImageOnlyCheckpointSave",
|
||||||
|
"ImagePadForOutpaint",
|
||||||
|
"ImageQuantize",
|
||||||
|
"ImageScale",
|
||||||
|
"ImageScaleBy",
|
||||||
|
"ImageScaleToTotalPixels",
|
||||||
|
"ImageSharpen",
|
||||||
|
"ImageToMask",
|
||||||
|
"ImageUpscaleWithModel",
|
||||||
|
"InpaintModelConditioning",
|
||||||
|
"InstructPixToPixConditioning",
|
||||||
|
"InvertMask",
|
||||||
|
"JoinImageWithAlpha",
|
||||||
|
"KSampler",
|
||||||
|
"KSamplerAdvanced",
|
||||||
|
"KSamplerSelect",
|
||||||
|
"KarrasScheduler",
|
||||||
|
"LaplaceScheduler",
|
||||||
|
"LatentAdd",
|
||||||
|
"LatentApplyOperation",
|
||||||
|
"LatentApplyOperationCFG",
|
||||||
|
"LatentBatch",
|
||||||
|
"LatentBatchSeedBehavior",
|
||||||
|
"LatentBlend",
|
||||||
|
"LatentComposite",
|
||||||
|
"LatentCompositeMasked",
|
||||||
|
"LatentCrop",
|
||||||
|
"LatentFlip",
|
||||||
|
"LatentFromBatch",
|
||||||
|
"LatentInterpolate",
|
||||||
|
"LatentMultiply",
|
||||||
|
"LatentOperationSharpen",
|
||||||
|
"LatentOperationTonemapReinhard",
|
||||||
|
"LatentRotate",
|
||||||
|
"LatentSubtract",
|
||||||
|
"LatentUpscale",
|
||||||
|
"LatentUpscaleBy",
|
||||||
|
"LoadAudio",
|
||||||
|
"LoadImage",
|
||||||
|
"LoadImageMask",
|
||||||
|
"LoadLatent",
|
||||||
|
"LoraLoader",
|
||||||
|
"LoraLoaderModelOnly",
|
||||||
|
"LoraSave",
|
||||||
|
"MaskComposite",
|
||||||
|
"MaskToImage",
|
||||||
|
"ModelMergeAdd",
|
||||||
|
"ModelMergeBlocks",
|
||||||
|
"ModelMergeFlux1",
|
||||||
|
"ModelMergeSD1",
|
||||||
|
"ModelMergeSD2",
|
||||||
|
"ModelMergeSD35_Large",
|
||||||
|
"ModelMergeSD3_2B",
|
||||||
|
"ModelMergeSDXL",
|
||||||
|
"ModelMergeSimple",
|
||||||
|
"ModelMergeSubtract",
|
||||||
|
"ModelSamplingAuraFlow",
|
||||||
|
"ModelSamplingContinuousEDM",
|
||||||
|
"ModelSamplingContinuousV",
|
||||||
|
"ModelSamplingDiscrete",
|
||||||
|
"ModelSamplingFlux",
|
||||||
|
"ModelSamplingSD3",
|
||||||
|
"ModelSamplingStableCascade",
|
||||||
|
"ModelSave",
|
||||||
|
"Morphology",
|
||||||
|
"PatchModelAddDownscale",
|
||||||
|
"PerpNeg",
|
||||||
|
"PerpNegGuider",
|
||||||
|
"PerturbedAttentionGuidance",
|
||||||
|
"PhotoMakerEncode",
|
||||||
|
"PhotoMakerLoader",
|
||||||
|
"PolyexponentialScheduler",
|
||||||
|
"PorterDuffImageComposite",
|
||||||
|
"PreviewAudio",
|
||||||
|
"PreviewImage",
|
||||||
|
"RandomNoise",
|
||||||
|
"RebatchImages",
|
||||||
|
"RebatchLatents",
|
||||||
|
"RepeatImageBatch",
|
||||||
|
"RepeatLatentBatch",
|
||||||
|
"RescaleCFG",
|
||||||
|
"SDTurboScheduler",
|
||||||
|
"SD_4XUpscale_Conditioning",
|
||||||
|
"SV3D_Conditioning",
|
||||||
|
"SVD_img2vid_Conditioning",
|
||||||
|
"SamplerCustom",
|
||||||
|
"SamplerCustomAdvanced",
|
||||||
|
"SamplerDPMAdaptative",
|
||||||
|
"SamplerDPMPP_2M_SDE",
|
||||||
|
"SamplerDPMPP_2S_Ancestral",
|
||||||
|
"SamplerDPMPP_3M_SDE",
|
||||||
|
"SamplerDPMPP_SDE",
|
||||||
|
"SamplerEulerAncestral",
|
||||||
|
"SamplerEulerAncestralCFGPP",
|
||||||
|
"SamplerEulerCFGpp",
|
||||||
|
"SamplerLCMUpscale",
|
||||||
|
"SamplerLMS",
|
||||||
|
"SaveAnimatedPNG",
|
||||||
|
"SaveAnimatedWEBP",
|
||||||
|
"SaveAudio",
|
||||||
|
"SaveImage",
|
||||||
|
"SaveImageWebsocket",
|
||||||
|
"SaveLatent",
|
||||||
|
"SelfAttentionGuidance",
|
||||||
|
"SetLatentNoiseMask",
|
||||||
|
"SetUnionControlNetType",
|
||||||
|
"SkipLayerGuidanceSD3",
|
||||||
|
"SolidMask",
|
||||||
|
"SplitImageWithAlpha",
|
||||||
|
"SplitSigmas",
|
||||||
|
"SplitSigmasDenoise",
|
||||||
|
"StableCascade_EmptyLatentImage",
|
||||||
|
"StableCascade_StageB_Conditioning",
|
||||||
|
"StableCascade_StageC_VAEEncode",
|
||||||
|
"StableCascade_SuperResolutionControlnet",
|
||||||
|
"StableZero123_Conditioning",
|
||||||
|
"StableZero123_Conditioning_Batched",
|
||||||
|
"StubConstantImage",
|
||||||
|
"StubFloat",
|
||||||
|
"StubImage",
|
||||||
|
"StubInt",
|
||||||
|
"StubMask",
|
||||||
|
"StyleModelApply",
|
||||||
|
"StyleModelLoader",
|
||||||
|
"TestAccumulateNode",
|
||||||
|
"TestAccumulationGetItemNode",
|
||||||
|
"TestAccumulationGetLengthNode",
|
||||||
|
"TestAccumulationHeadNode",
|
||||||
|
"TestAccumulationSetItemNode",
|
||||||
|
"TestAccumulationTailNode",
|
||||||
|
"TestAccumulationToListNode",
|
||||||
|
"TestBoolOperationNode",
|
||||||
|
"TestCustomIsChanged",
|
||||||
|
"TestCustomValidation1",
|
||||||
|
"TestCustomValidation2",
|
||||||
|
"TestCustomValidation3",
|
||||||
|
"TestCustomValidation4",
|
||||||
|
"TestCustomValidation5",
|
||||||
|
"TestDynamicDependencyCycle",
|
||||||
|
"TestExecutionBlocker",
|
||||||
|
"TestFloatConditions",
|
||||||
|
"TestForLoopClose",
|
||||||
|
"TestForLoopOpen",
|
||||||
|
"TestIntConditions",
|
||||||
|
"TestIntMathOperation",
|
||||||
|
"TestIsChangedWithConstants",
|
||||||
|
"TestLazyMixImages",
|
||||||
|
"TestListToAccumulationNode",
|
||||||
|
"TestMakeListNode",
|
||||||
|
"TestMixedExpansionReturns",
|
||||||
|
"TestStringConditions",
|
||||||
|
"TestToBoolNode",
|
||||||
|
"TestVariadicAverage",
|
||||||
|
"TestWhileLoopClose",
|
||||||
|
"TestWhileLoopOpen",
|
||||||
|
"ThresholdMask",
|
||||||
|
"TomePatchModel",
|
||||||
|
"TorchCompileModel",
|
||||||
|
"TripleCLIPLoader",
|
||||||
|
"UNETLoader",
|
||||||
|
"UNetCrossAttentionMultiply",
|
||||||
|
"UNetSelfAttentionMultiply",
|
||||||
|
"UNetTemporalAttentionMultiply",
|
||||||
|
"UpscaleModelLoader",
|
||||||
|
"VAEDecode",
|
||||||
|
"VAEDecodeAudio",
|
||||||
|
"VAEDecodeTiled",
|
||||||
|
"VAEEncode",
|
||||||
|
"VAEEncodeAudio",
|
||||||
|
"VAEEncodeForInpaint",
|
||||||
|
"VAEEncodeTiled",
|
||||||
|
"VAELoader",
|
||||||
|
"VAESave",
|
||||||
|
"VPScheduler",
|
||||||
|
"VideoLinearCFGGuidance",
|
||||||
|
"VideoTriangleCFGGuidance",
|
||||||
|
"WebcamCapture",
|
||||||
|
"unCLIPCheckpointLoader",
|
||||||
|
"unCLIPConditioning"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"https://github.com/dynamixar/Atluris": [
|
||||||
|
[
|
||||||
|
"RandomLine"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "Atluris"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"https://github.com/ecjojo/ecjojo-example-nodes": [
|
||||||
|
[
|
||||||
|
"BiggerNote_Example",
|
||||||
|
"DisplayTextNode_Example",
|
||||||
|
"EmptyNode_Example",
|
||||||
|
"ExampleNode_Example",
|
||||||
|
"FilePrefixNode_Example",
|
||||||
|
"HelloWorldNode_Example",
|
||||||
|
"RandomSizeNode_Example",
|
||||||
|
"StringNode_Example",
|
||||||
|
"TextOverlayNode_Example"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ecjojo_example_nodes"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"https://github.com/et118/ComfyUI-ElGogh-Nodes": [
|
||||||
|
[
|
||||||
|
"ElGoghCLIPSetLastLayer",
|
||||||
|
"ElGoghCheckpointLoaderSimple",
|
||||||
|
"ElGoghEmptyLatentImage",
|
||||||
|
"ElGoghKSamplerAdvanced",
|
||||||
|
"ElGoghNegativePrompt",
|
||||||
|
"ElGoghPositivePrompt",
|
||||||
|
"ElGoghPrimaryLoraLoader",
|
||||||
|
"ElGoghSecondaryLoraLoader",
|
||||||
|
"ElGoghSendWebsocketNSFWBool",
|
||||||
|
"ElGoghTertiaryLoraLoader",
|
||||||
|
"ElGoghVAELoader"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-ElGogh-Nodes"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"https://github.com/foxtrot-roger/comfyui-custom-nodes": [
|
||||||
|
[
|
||||||
|
"RF_Tutorial"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "comfyui-custom-nodes"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"https://github.com/jtong/comfyui-jtong-workflow": [
|
||||||
|
[
|
||||||
|
"Example",
|
||||||
|
"high_workflow_caller",
|
||||||
|
"jtong.Highend",
|
||||||
|
"jtong.Highway"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"author": "Trung0246",
|
||||||
|
"description": "Random nodes for ComfyUI I made to solve my struggle with ComfyUI (ex: pipe, process). Have varying quality.",
|
||||||
|
"nickname": "ComfyUI-0246",
|
||||||
|
"title": "ComfyUI-0246",
|
||||||
|
"title_aux": "comfyui-jtong-workflow"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"https://github.com/kappa54m/ComfyUI_Usability": [
|
||||||
|
[
|
||||||
|
"KLoadImageByPath",
|
||||||
|
"KLoadImageByPathAdvanced",
|
||||||
|
"KLoadImageDedup"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-HPSv2-Nodes"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"https://github.com/mira-6/mira-wildcard-node": [
|
||||||
|
[
|
||||||
|
"MiraWildcard"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"author": "mira-6",
|
||||||
|
"description": "Single-node wildcard implementation.",
|
||||||
|
"nickname": "mira-wildcard-node",
|
||||||
|
"title": "mira-wildcard-node",
|
||||||
|
"title_aux": "mira-wildcard-node"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"https://github.com/sonyeon-sj/ComfyUI-easy_ImageSize_Selecter": [
|
||||||
|
[
|
||||||
|
"ImageSizer",
|
||||||
|
"promptSelecter"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-easy_ImageSize_Selecter"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"https://github.com/thinkthinking/ComfyUI-Ye": [
|
||||||
|
[
|
||||||
|
"CheckpointLoader|Ye",
|
||||||
|
"OllamaVision|Ye",
|
||||||
|
"PrintHelloWorld|Ye",
|
||||||
|
"Signature|Ye"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-Ye"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"https://github.com/wailovet/ComfyUI-WW": [
|
||||||
|
[
|
||||||
|
"WW_AccumulationPreviewImages",
|
||||||
|
"WW_AppendString",
|
||||||
|
"WW_CurrentPreviewImages",
|
||||||
|
"WW_ImageResize",
|
||||||
|
"WW_PreviewTextNode",
|
||||||
|
"WW_RandString"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-WW"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"https://github.com/yowipr/ComfyUI-Manual": [
|
||||||
|
[
|
||||||
|
"EXAMPLE",
|
||||||
|
"M_Layer",
|
||||||
|
"M_Output",
|
||||||
|
"M_RenderArea"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-Manual"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -1,4 +1,3 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
source ../../../../venv/bin/activate
|
rm ~/.tmp/dev/*.py > /dev/null 2>&1
|
||||||
rm .tmp/*.py > /dev/null
|
python ../../scanner.py ~/.tmp/tutorial
|
||||||
python ../../scanner.py
|
|
||||||
|
|||||||
@@ -385,30 +385,7 @@ check_bypass_ssl()
|
|||||||
# Perform install
|
# Perform install
|
||||||
processed_install = set()
|
processed_install = set()
|
||||||
script_list_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), "startup-scripts", "install-scripts.txt")
|
script_list_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), "startup-scripts", "install-scripts.txt")
|
||||||
pip_map = None
|
pip_fixer = PIPFixer(get_installed_packages())
|
||||||
|
|
||||||
|
|
||||||
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
|
|
||||||
|
|
||||||
|
|
||||||
def is_installed(name):
|
def is_installed(name):
|
||||||
@@ -620,8 +597,11 @@ if os.path.exists(script_list_path):
|
|||||||
print("\n[ComfyUI-Manager] Startup script completed.")
|
print("\n[ComfyUI-Manager] Startup script completed.")
|
||||||
print("#######################################################################\n")
|
print("#######################################################################\n")
|
||||||
|
|
||||||
|
pip_fixer.fix_broken()
|
||||||
|
|
||||||
del processed_install
|
del processed_install
|
||||||
del pip_map
|
del pip_fixer
|
||||||
|
clear_pip_cache()
|
||||||
|
|
||||||
|
|
||||||
def check_windows_event_loop_policy():
|
def check_windows_event_loop_policy():
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "comfyui-manager"
|
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."
|
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.53"
|
||||||
license = { file = "LICENSE.txt" }
|
license = { file = "LICENSE.txt" }
|
||||||
dependencies = ["GitPython", "PyGithub", "matrix-client==0.4.0", "transformers", "huggingface-hub>0.20", "typer", "rich", "typing-extensions"]
|
dependencies = ["GitPython", "PyGithub", "matrix-client==0.4.0", "transformers", "huggingface-hub>0.20", "typer", "rich", "typing-extensions"]
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
pygit2
|
||||||
GitPython
|
GitPython
|
||||||
PyGithub
|
PyGithub
|
||||||
matrix-client==0.4.0
|
matrix-client==0.4.0
|
||||||
|
|||||||
2
scan.sh
2
scan.sh
@@ -1,6 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
rm ~/.tmp/default/*.py > /dev/null 2>&1
|
rm ~/.tmp/default/*.py > /dev/null 2>&1
|
||||||
python scanner.py ~/.tmp/default $*
|
python -m scanner ~/.tmp/default $*
|
||||||
cp extension-node-map.json node_db/new/.
|
cp extension-node-map.json node_db/new/.
|
||||||
|
|
||||||
echo "Integrity check"
|
echo "Integrity check"
|
||||||
|
|||||||
13
scanner.py
13
scanner.py
@@ -2,7 +2,8 @@ import ast
|
|||||||
import re
|
import re
|
||||||
import os
|
import os
|
||||||
import json
|
import json
|
||||||
from git import Repo
|
import sys
|
||||||
|
from glob import git_wrapper
|
||||||
import concurrent
|
import concurrent
|
||||||
import datetime
|
import datetime
|
||||||
import concurrent.futures
|
import concurrent.futures
|
||||||
@@ -243,25 +244,27 @@ def get_py_urls_from_json(json_file):
|
|||||||
|
|
||||||
return py_files
|
return py_files
|
||||||
|
|
||||||
|
import traceback
|
||||||
def clone_or_pull_git_repository(git_url):
|
def clone_or_pull_git_repository(git_url):
|
||||||
repo_name = git_url.split("/")[-1].split(".")[0]
|
repo_name = git_url.split("/")[-1].split(".")[0]
|
||||||
repo_dir = os.path.join(temp_dir, repo_name)
|
repo_dir = os.path.join(temp_dir, repo_name)
|
||||||
|
|
||||||
if os.path.exists(repo_dir):
|
if os.path.exists(repo_dir):
|
||||||
try:
|
try:
|
||||||
repo = Repo(repo_dir)
|
repo = git_wrapper.Repo(repo_dir)
|
||||||
origin = repo.remote(name="origin")
|
origin = repo.remote(name="origin")
|
||||||
origin.pull()
|
origin.pull()
|
||||||
repo.git.submodule('update', '--init', '--recursive')
|
repo.update_recursive()
|
||||||
print(f"Pulling {repo_name}...")
|
print(f"Pulling {repo_name}...")
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
|
traceback.print_exc()
|
||||||
print(f"Pulling {repo_name} failed: {e}")
|
print(f"Pulling {repo_name} failed: {e}")
|
||||||
else:
|
else:
|
||||||
try:
|
try:
|
||||||
Repo.clone_from(git_url, repo_dir, recursive=True)
|
git_wrapper.clone_from(git_url, repo_dir, recursive=True)
|
||||||
print(f"Cloning {repo_name}...")
|
print(f"Cloning {repo_name}...")
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
|
traceback.print_exc()
|
||||||
print(f"Cloning {repo_name} failed: {e}")
|
print(f"Cloning {repo_name} failed: {e}")
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user