Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refine SD3.5 nodes #185

Merged
merged 1 commit into from
Oct 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions bizyair_extras/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
from .nodes_image_utils import *
from .nodes_ipadapter_plus.nodes_ipadapter_plus import *
from .nodes_kolors_mz import *
from .nodes_model_advanced import *
from .nodes_sd3 import *
from .nodes_testing_utils import *
from .nodes_ultimatesdupscale import *
Expand Down
21 changes: 21 additions & 0 deletions bizyair_extras/nodes_model_advanced.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# ComfyUI/comfy_extras/nodes_model_advanced.py
from bizyair import BizyAirBaseNode, BizyAirNodeIO, data_types


class ModelSamplingSD3(BizyAirBaseNode):
@classmethod
def INPUT_TYPES(s):
return {
"required": {
"model": (data_types.MODEL,),
"shift": (
"FLOAT",
{"default": 3.0, "min": 0.0, "max": 100.0, "step": 0.01},
),
}
}

RETURN_TYPES = (data_types.MODEL,)
# FUNCTION = "patch"

CATEGORY = "advanced/model"
Loading
Loading