Skip to content

Commit d76c82a

Browse files
committed
Update ComfyUI / nodes / nunchaku
1 parent 28a3343 commit d76c82a

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

ai_diffusion/resources.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88

99
# Version identifier for all the resources defined here. This is used as the server version.
1010
# It usually follows the plugin version, but not all new plugin versions also require a server update.
11-
version = "1.38.0"
11+
version = "1.40.0"
1212

1313
comfy_url = "https://github.com/comfyanonymous/ComfyUI"
14-
comfy_version = "7139d6d93fc7b5481a69b687080bd36f7b531c46"
15-
nunchaku_version = "1.0.0"
14+
comfy_version = "637221995f7424a561bd825de3e61ea117dfe1e3"
15+
nunchaku_version = "1.0.1"
1616

1717

1818
class CustomNode(NamedTuple):
@@ -42,7 +42,7 @@ class CustomNode(NamedTuple):
4242
"External Tooling Nodes",
4343
"comfyui-tooling-nodes",
4444
"https://github.com/Acly/comfyui-tooling-nodes",
45-
"fa46b933297ef8bc8fd760674af27330b24dccd9",
45+
"20f8d8ecc9f35550f84da7c41fb704a8f418b2bd",
4646
["ETN_LoadImageBase64", "ETN_LoadMaskBase64", "ETN_SendImageWebSocket", "ETN_Translate"],
4747
),
4848
CustomNode(
@@ -59,14 +59,14 @@ class CustomNode(NamedTuple):
5959
"GGUF",
6060
"ComfyUI-GGUF",
6161
"https://github.com/city96/ComfyUI-GGUF",
62-
"cf0573351ac260d629d460d97f09b09ac17d3726",
62+
"be2a08330d7ec232d684e50ab938870d7529471e",
6363
["UnetLoaderGGUF", "DualCLIPLoaderGGUF"],
6464
),
6565
CustomNode(
6666
"Nunchaku",
6767
"ComfyUI-nunchaku",
6868
"https://github.com/nunchaku-tech/ComfyUI-nunchaku",
69-
"90fb8ccf455a4bffa5fb832b84e54951d1e2949d",
69+
"d3a640a1d0c9f726b7ca3acc28daca8f52d10922",
7070
["NunchakuFluxDiTLoader"],
7171
),
7272
]

ai_diffusion/server.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -319,8 +319,8 @@ async def _install_nunchaku(self, network: QNetworkAccessManager, cb: InternalCB
319319
assert "3.12" in pyver, "Nunchaku requires Python 3.12"
320320

321321
platform = "win_amd64" if is_windows else "linux_x86_64"
322-
ver = resources.nunchaku_version # TODO: replace nightly version string
323-
whl_url = f"https://github.com/nunchaku-tech/nunchaku/releases/download/v1.0.0dev20250816/nunchaku-{ver}+torch2.8-cp312-cp312-{platform}.whl"
322+
ver = resources.nunchaku_version
323+
whl_url = f"https://github.com/nunchaku-tech/nunchaku/releases/download/v{ver}/nunchaku-{ver}+torch2.8-cp312-cp312-{platform}.whl"
324324
await self._pip_install("Nunchaku", [whl_url], cb)
325325

326326
async def _install_requirements(

0 commit comments

Comments
 (0)