Skip to content

Commit b980035

Browse files
committed
feat: extra schedulers - support OSS Chroma
1 parent df330c1 commit b980035

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

modules/impact/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import logging
44

55

6-
version_code = [8, 19, 1]
6+
version_code = [8, 20]
77
version = f"V{version_code[0]}.{version_code[1]}" + (f'.{version_code[2]}' if len(version_code) > 2 else '')
88

99
my_path = os.path.dirname(__file__)

modules/impact/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757

5858
current_prompt = None
5959

60-
SCHEDULERS = comfy.samplers.KSampler.SCHEDULERS + ['AYS SDXL', 'AYS SD1', 'AYS SVD', 'GITS[coeff=1.2]', 'LTXV[default]', 'OSS FLUX', 'OSS Wan']
60+
SCHEDULERS = comfy.samplers.KSampler.SCHEDULERS + ['AYS SDXL', 'AYS SD1', 'AYS SVD', 'GITS[coeff=1.2]', 'LTXV[default]', 'OSS FLUX', 'OSS Wan', 'OSS Chroma']
6161

6262

6363
def is_execution_model_version_supported():

modules/impact/impact_pack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2468,7 +2468,7 @@ class ImpactSchedulerAdapter:
24682468
def INPUT_TYPES(s):
24692469
return {"required": {
24702470
"scheduler": (comfy.samplers.KSampler.SCHEDULERS, {"defaultInput": True, }),
2471-
"extra_scheduler": (['None', 'AYS SDXL', 'AYS SD1', 'AYS SVD', 'GITS[coeff=1.2]', 'LTXV[default]', 'OSS FLUX', 'OSS Wan'],),
2471+
"extra_scheduler": (['None', 'AYS SDXL', 'AYS SD1', 'AYS SVD', 'GITS[coeff=1.2]', 'LTXV[default]', 'OSS FLUX', 'OSS Wan', 'OSS Chroma'],),
24722472
}}
24732473

24742474
CATEGORY = "ImpactPack/Util"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "comfyui-impact-pack"
33
description = "This node pack offers various detector nodes and detailer nodes that allow you to configure a workflow that automatically enhances facial details. And provide iterative upscaler."
4-
version = "8.19.1"
4+
version = "8.20"
55
license = { file = "LICENSE.txt" }
66
dependencies = ["segment-anything", "scikit-image", "piexif", "transformers", "opencv-python-headless", "GitPython", "scipy>=1.11.4"]
77

0 commit comments

Comments
 (0)