mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-07-27 08:16:44 +00:00
Removed V1/V3 from as_dict and get_io_type functions on Inputs/Outputs, refactor GET_NODE_INFO_V1/V3 to use a function on SchemaV3 instead, add optional key to as_dict for inputs but remove it when dealing with v1 in add_to_dict_v1, cleanup of old test code in io.py, renamed widgetType to widget_type in WidgetInputV3 definition for consistency
This commit is contained in:
parent
3aceeab359
commit
b99e3d1336
@ -189,14 +189,15 @@ class InputV3(IO_V3):
|
|||||||
self.lazy = lazy
|
self.lazy = lazy
|
||||||
self.extra_dict = extra_dict if extra_dict is not None else {}
|
self.extra_dict = extra_dict if extra_dict is not None else {}
|
||||||
|
|
||||||
def as_dict_V1(self):
|
def as_dict(self):
|
||||||
return prune_dict({
|
return prune_dict({
|
||||||
"display_name": self.display_name,
|
"display_name": self.display_name,
|
||||||
|
"optional": self.optional,
|
||||||
"tooltip": self.tooltip,
|
"tooltip": self.tooltip,
|
||||||
"lazy": self.lazy,
|
"lazy": self.lazy,
|
||||||
}) | prune_dict(self.extra_dict)
|
}) | prune_dict(self.extra_dict)
|
||||||
|
|
||||||
def get_io_type_V1(self):
|
def get_io_type(self):
|
||||||
return self.io_type
|
return self.io_type
|
||||||
|
|
||||||
class WidgetInputV3(InputV3):
|
class WidgetInputV3(InputV3):
|
||||||
@ -205,23 +206,23 @@ class WidgetInputV3(InputV3):
|
|||||||
'''
|
'''
|
||||||
def __init__(self, id: str, display_name: str=None, optional=False, tooltip: str=None, lazy: bool=None,
|
def __init__(self, id: str, display_name: str=None, optional=False, tooltip: str=None, lazy: bool=None,
|
||||||
default: Any=None,
|
default: Any=None,
|
||||||
socketless: bool=None, widgetType: str=None, force_input: bool=None, extra_dict=None):
|
socketless: bool=None, widget_type: str=None, force_input: bool=None, extra_dict=None):
|
||||||
super().__init__(id, display_name, optional, tooltip, lazy, extra_dict)
|
super().__init__(id, display_name, optional, tooltip, lazy, extra_dict)
|
||||||
self.default = default
|
self.default = default
|
||||||
self.socketless = socketless
|
self.socketless = socketless
|
||||||
self.widgetType = widgetType
|
self.widget_type = widget_type
|
||||||
self.force_input = force_input
|
self.force_input = force_input
|
||||||
|
|
||||||
def as_dict_V1(self):
|
def as_dict(self):
|
||||||
return super().as_dict_V1() | prune_dict({
|
return super().as_dict() | prune_dict({
|
||||||
"default": self.default,
|
"default": self.default,
|
||||||
"socketless": self.socketless,
|
"socketless": self.socketless,
|
||||||
"widgetType": self.widgetType,
|
"widgetType": self.widget_type,
|
||||||
"forceInput": self.force_input,
|
"forceInput": self.force_input,
|
||||||
})
|
})
|
||||||
|
|
||||||
def get_io_type_V1(self):
|
def get_io_type(self):
|
||||||
return self.widgetType if self.widgetType is not None else super().get_io_type_V1()
|
return self.widget_type if self.widget_type is not None else super().get_io_type()
|
||||||
|
|
||||||
|
|
||||||
class OutputV3(IO_V3):
|
class OutputV3(IO_V3):
|
||||||
@ -232,13 +233,16 @@ class OutputV3(IO_V3):
|
|||||||
self.tooltip = tooltip
|
self.tooltip = tooltip
|
||||||
self.is_output_list = is_output_list
|
self.is_output_list = is_output_list
|
||||||
|
|
||||||
def as_dict_V3(self):
|
def as_dict(self):
|
||||||
return prune_dict({
|
return prune_dict({
|
||||||
"display_name": self.display_name,
|
"display_name": self.display_name,
|
||||||
"tooltip": self.tooltip,
|
"tooltip": self.tooltip,
|
||||||
"is_output_list": self.is_output_list,
|
"is_output_list": self.is_output_list,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
def get_io_type(self):
|
||||||
|
return self.io_type
|
||||||
|
|
||||||
|
|
||||||
class ComfyTypeI(ComfyType):
|
class ComfyTypeI(ComfyType):
|
||||||
'''ComfyType subclass that only has a default Input class - intended for types that only have Inputs.'''
|
'''ComfyType subclass that only has a default Input class - intended for types that only have Inputs.'''
|
||||||
@ -326,8 +330,8 @@ class Boolean(ComfyTypeIO):
|
|||||||
self.label_off = label_off
|
self.label_off = label_off
|
||||||
self.default: bool
|
self.default: bool
|
||||||
|
|
||||||
def as_dict_V1(self):
|
def as_dict(self):
|
||||||
return super().as_dict_V1() | prune_dict({
|
return super().as_dict() | prune_dict({
|
||||||
"label_on": self.label_on,
|
"label_on": self.label_on,
|
||||||
"label_off": self.label_off,
|
"label_off": self.label_off,
|
||||||
})
|
})
|
||||||
@ -349,8 +353,8 @@ class Int(ComfyTypeIO):
|
|||||||
self.display_mode = display_mode
|
self.display_mode = display_mode
|
||||||
self.default: int
|
self.default: int
|
||||||
|
|
||||||
def as_dict_V1(self):
|
def as_dict(self):
|
||||||
return super().as_dict_V1() | prune_dict({
|
return super().as_dict() | prune_dict({
|
||||||
"min": self.min,
|
"min": self.min,
|
||||||
"max": self.max,
|
"max": self.max,
|
||||||
"step": self.step,
|
"step": self.step,
|
||||||
@ -375,8 +379,8 @@ class Float(ComfyTypeIO):
|
|||||||
self.display_mode = display_mode
|
self.display_mode = display_mode
|
||||||
self.default: float
|
self.default: float
|
||||||
|
|
||||||
def as_dict_V1(self):
|
def as_dict(self):
|
||||||
return super().as_dict_V1() | prune_dict({
|
return super().as_dict() | prune_dict({
|
||||||
"min": self.min,
|
"min": self.min,
|
||||||
"max": self.max,
|
"max": self.max,
|
||||||
"step": self.step,
|
"step": self.step,
|
||||||
@ -399,8 +403,8 @@ class String(ComfyTypeIO):
|
|||||||
self.dynamic_prompts = dynamic_prompts
|
self.dynamic_prompts = dynamic_prompts
|
||||||
self.default: str
|
self.default: str
|
||||||
|
|
||||||
def as_dict_V1(self):
|
def as_dict(self):
|
||||||
return super().as_dict_V1() | prune_dict({
|
return super().as_dict() | prune_dict({
|
||||||
"multiline": self.multiline,
|
"multiline": self.multiline,
|
||||||
"placeholder": self.placeholder,
|
"placeholder": self.placeholder,
|
||||||
"dynamicPrompts": self.dynamic_prompts,
|
"dynamicPrompts": self.dynamic_prompts,
|
||||||
@ -426,8 +430,8 @@ class Combo(ComfyTypeI):
|
|||||||
self.remote = remote
|
self.remote = remote
|
||||||
self.default: str
|
self.default: str
|
||||||
|
|
||||||
def as_dict_V1(self):
|
def as_dict(self):
|
||||||
return super().as_dict_V1() | prune_dict({
|
return super().as_dict() | prune_dict({
|
||||||
"multiselect": self.multiselect,
|
"multiselect": self.multiselect,
|
||||||
"options": self.options,
|
"options": self.options,
|
||||||
"control_after_generate": self.control_after_generate,
|
"control_after_generate": self.control_after_generate,
|
||||||
@ -445,15 +449,15 @@ class MultiCombo(ComfyTypeI):
|
|||||||
class Input(Combo.Input):
|
class Input(Combo.Input):
|
||||||
def __init__(self, id: str, options: list[str], display_name: str=None, optional=False, tooltip: str=None, lazy: bool=None,
|
def __init__(self, id: str, options: list[str], display_name: str=None, optional=False, tooltip: str=None, lazy: bool=None,
|
||||||
default: list[str]=None, placeholder: str=None, chip: bool=None, control_after_generate: bool=None,
|
default: list[str]=None, placeholder: str=None, chip: bool=None, control_after_generate: bool=None,
|
||||||
socketless: bool=None, widgetType: str=None):
|
socketless: bool=None):
|
||||||
super().__init__(id, options, display_name, optional, tooltip, lazy, default, control_after_generate, socketless, widgetType)
|
super().__init__(id, options, display_name, optional, tooltip, lazy, default, control_after_generate, socketless=socketless)
|
||||||
self.multiselect = True
|
self.multiselect = True
|
||||||
self.placeholder = placeholder
|
self.placeholder = placeholder
|
||||||
self.chip = chip
|
self.chip = chip
|
||||||
self.default: list[str]
|
self.default: list[str]
|
||||||
|
|
||||||
def as_dict_V1(self):
|
def as_dict(self):
|
||||||
to_return = super().as_dict_V1() | prune_dict({
|
to_return = super().as_dict() | prune_dict({
|
||||||
"multi_select": self.multiselect,
|
"multi_select": self.multiselect,
|
||||||
"placeholder": self.placeholder,
|
"placeholder": self.placeholder,
|
||||||
"chip": self.chip,
|
"chip": self.chip,
|
||||||
@ -768,9 +772,9 @@ class MultiType:
|
|||||||
display_name = id.display_name if id.display_name is not None else display_name
|
display_name = id.display_name if id.display_name is not None else display_name
|
||||||
lazy = id.lazy if id.lazy is not None else lazy
|
lazy = id.lazy if id.lazy is not None else lazy
|
||||||
id = id.id
|
id = id.id
|
||||||
# if is a widget input, make sure widgetType is set appropriately
|
# if is a widget input, make sure widget_type is set appropriately
|
||||||
if isinstance(self.input_override, WidgetInputV3):
|
if isinstance(self.input_override, WidgetInputV3):
|
||||||
self.input_override.widgetType = self.input_override.get_io_type_V1()
|
self.input_override.widget_type = self.input_override.get_io_type()
|
||||||
super().__init__(id, display_name, optional, tooltip, lazy, extra_dict)
|
super().__init__(id, display_name, optional, tooltip, lazy, extra_dict)
|
||||||
self._io_types = types
|
self._io_types = types
|
||||||
|
|
||||||
@ -787,18 +791,18 @@ class MultiType:
|
|||||||
io_types.append(x)
|
io_types.append(x)
|
||||||
return io_types
|
return io_types
|
||||||
|
|
||||||
def get_io_type_V1(self):
|
def get_io_type(self):
|
||||||
# ensure types are unique and order is preserved
|
# ensure types are unique and order is preserved
|
||||||
str_types = [x.io_type for x in self.io_types]
|
str_types = [x.io_type for x in self.io_types]
|
||||||
if self.input_override is not None:
|
if self.input_override is not None:
|
||||||
str_types.insert(0, self.input_override.get_io_type_V1())
|
str_types.insert(0, self.input_override.get_io_type())
|
||||||
return ",".join(list(dict.fromkeys(str_types)))
|
return ",".join(list(dict.fromkeys(str_types)))
|
||||||
|
|
||||||
def as_dict_V1(self):
|
def as_dict(self):
|
||||||
if self.input_override is not None:
|
if self.input_override is not None:
|
||||||
return self.input_override.as_dict_V1() | super().as_dict_V1()
|
return self.input_override.as_dict() | super().as_dict()
|
||||||
else:
|
else:
|
||||||
return super().as_dict_V1()
|
return super().as_dict()
|
||||||
|
|
||||||
class DynamicInput(InputV3, ABC):
|
class DynamicInput(InputV3, ABC):
|
||||||
'''
|
'''
|
||||||
@ -890,8 +894,8 @@ class MatchType(ComfyTypeIO):
|
|||||||
def get_dynamic(self) -> list[InputV3]:
|
def get_dynamic(self) -> list[InputV3]:
|
||||||
return [self]
|
return [self]
|
||||||
|
|
||||||
def as_dict_V1(self):
|
def as_dict(self):
|
||||||
return super().as_dict_V1() | prune_dict({
|
return super().as_dict() | prune_dict({
|
||||||
"template": self.template.as_dict(),
|
"template": self.template.as_dict(),
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -904,8 +908,8 @@ class MatchType(ComfyTypeIO):
|
|||||||
def get_dynamic(self) -> list[OutputV3]:
|
def get_dynamic(self) -> list[OutputV3]:
|
||||||
return [self]
|
return [self]
|
||||||
|
|
||||||
def as_dict_V3(self):
|
def as_dict(self):
|
||||||
return super().as_dict_V3() | prune_dict({
|
return super().as_dict() | prune_dict({
|
||||||
"template": self.template.as_dict(),
|
"template": self.template.as_dict(),
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -980,6 +984,19 @@ class NodeInfoV1:
|
|||||||
experimental: bool=None
|
experimental: bool=None
|
||||||
api_node: bool=None
|
api_node: bool=None
|
||||||
|
|
||||||
|
@dataclass
|
||||||
|
class NodeInfoV3:
|
||||||
|
input: dict=None
|
||||||
|
output: dict=None
|
||||||
|
hidden: list[str]=None
|
||||||
|
name: str=None
|
||||||
|
display_name: str=None
|
||||||
|
description: str=None
|
||||||
|
category: str=None
|
||||||
|
output_node: bool=None
|
||||||
|
deprecated: bool=None
|
||||||
|
experimental: bool=None
|
||||||
|
api_node: bool=None
|
||||||
|
|
||||||
def as_pruned_dict(dataclass_obj):
|
def as_pruned_dict(dataclass_obj):
|
||||||
'''Return dict of dataclass object with pruned None values.'''
|
'''Return dict of dataclass object with pruned None values.'''
|
||||||
@ -1082,6 +1099,84 @@ class SchemaV3:
|
|||||||
if output.id is None:
|
if output.id is None:
|
||||||
output.id = f"_{i}_{output.io_type}_"
|
output.id = f"_{i}_{output.io_type}_"
|
||||||
|
|
||||||
|
def get_v1_info(self, cls) -> NodeInfoV1:
|
||||||
|
# get V1 inputs
|
||||||
|
input = {
|
||||||
|
"required": {}
|
||||||
|
}
|
||||||
|
if self.inputs:
|
||||||
|
for i in self.inputs:
|
||||||
|
if isinstance(i, DynamicInput):
|
||||||
|
dynamic_inputs = i.get_dynamic()
|
||||||
|
for d in dynamic_inputs:
|
||||||
|
add_to_dict_v1(d, input)
|
||||||
|
else:
|
||||||
|
add_to_dict_v1(i, input)
|
||||||
|
if self.hidden:
|
||||||
|
for hidden in self.hidden:
|
||||||
|
input.setdefault("hidden", {})[hidden.name] = (hidden.value,)
|
||||||
|
# create separate lists from output fields
|
||||||
|
output = []
|
||||||
|
output_is_list = []
|
||||||
|
output_name = []
|
||||||
|
output_tooltips = []
|
||||||
|
if self.outputs:
|
||||||
|
for o in self.outputs:
|
||||||
|
output.append(o.io_type)
|
||||||
|
output_is_list.append(o.is_output_list)
|
||||||
|
output_name.append(o.display_name if o.display_name else o.io_type)
|
||||||
|
output_tooltips.append(o.tooltip if o.tooltip else None)
|
||||||
|
|
||||||
|
info = NodeInfoV1(
|
||||||
|
input=input,
|
||||||
|
input_order={key: list(value.keys()) for (key, value) in input.items()},
|
||||||
|
output=output,
|
||||||
|
output_is_list=output_is_list,
|
||||||
|
output_name=output_name,
|
||||||
|
output_tooltips=output_tooltips,
|
||||||
|
name=self.node_id,
|
||||||
|
display_name=self.display_name,
|
||||||
|
category=self.category,
|
||||||
|
description=self.description,
|
||||||
|
output_node=self.is_output_node,
|
||||||
|
deprecated=self.is_deprecated,
|
||||||
|
experimental=self.is_experimental,
|
||||||
|
api_node=self.is_api_node,
|
||||||
|
python_module=getattr(cls, "RELATIVE_PYTHON_MODULE", "nodes")
|
||||||
|
)
|
||||||
|
return info
|
||||||
|
|
||||||
|
|
||||||
|
def get_v3_info(self, cls) -> NodeInfoV3:
|
||||||
|
input_dict = {}
|
||||||
|
output_dict = {}
|
||||||
|
hidden_list = []
|
||||||
|
# TODO: make sure dynamic types will be handled correctly
|
||||||
|
if self.inputs:
|
||||||
|
for input in self.inputs:
|
||||||
|
add_to_dict_v3(input, input_dict)
|
||||||
|
if self.outputs:
|
||||||
|
for output in self.outputs:
|
||||||
|
add_to_dict_v3(output, output_dict)
|
||||||
|
if self.hidden:
|
||||||
|
for hidden in self.hidden:
|
||||||
|
hidden_list.append(hidden.value)
|
||||||
|
|
||||||
|
info = NodeInfoV3(
|
||||||
|
input=input_dict,
|
||||||
|
output=output_dict,
|
||||||
|
hidden=hidden_list,
|
||||||
|
name=self.node_id,
|
||||||
|
display_name=self.display_name,
|
||||||
|
description=self.description,
|
||||||
|
category=self.category,
|
||||||
|
output_node=self.is_output_node,
|
||||||
|
deprecated=self.is_deprecated,
|
||||||
|
experimental=self.is_experimental,
|
||||||
|
api_node=self.is_api_node,
|
||||||
|
python_module=getattr(cls, "RELATIVE_PYTHON_MODULE", "nodes")
|
||||||
|
)
|
||||||
|
return info
|
||||||
|
|
||||||
class Serializer:
|
class Serializer:
|
||||||
def __init_subclass__(cls, io_type: str, **kwargs):
|
def __init_subclass__(cls, io_type: str, **kwargs):
|
||||||
@ -1140,7 +1235,13 @@ def lock_class(cls):
|
|||||||
|
|
||||||
def add_to_dict_v1(i: InputV3, input: dict):
|
def add_to_dict_v1(i: InputV3, input: dict):
|
||||||
key = "optional" if i.optional else "required"
|
key = "optional" if i.optional else "required"
|
||||||
input.setdefault(key, {})[i.id] = (i.get_io_type_V1(), i.as_dict_V1())
|
as_dict = i.as_dict()
|
||||||
|
# for v1, we don't want to include the optional key
|
||||||
|
as_dict.pop("optional", None)
|
||||||
|
input.setdefault(key, {})[i.id] = (i.get_io_type(), as_dict)
|
||||||
|
|
||||||
|
def add_to_dict_v3(io: InputV3 | OutputV3, d: dict):
|
||||||
|
d[io.id] = (io.get_io_type(), io.as_dict())
|
||||||
|
|
||||||
|
|
||||||
class ComfyNodeV3(ComfyNodeInternal):
|
class ComfyNodeV3(ComfyNodeInternal):
|
||||||
@ -1197,9 +1298,9 @@ class ComfyNodeV3(ComfyNodeInternal):
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def GET_NODE_INFO_V3(cls) -> dict[str, Any]:
|
def GET_NODE_INFO_V3(cls) -> dict[str, Any]:
|
||||||
# schema = cls.GET_SCHEMA()
|
schema = cls.GET_SCHEMA()
|
||||||
# TODO: finish
|
info = schema.get_v3_info(cls)
|
||||||
return None
|
return asdict(info)
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
self.local_state: NodeStateLocal = None
|
self.local_state: NodeStateLocal = None
|
||||||
@ -1330,21 +1431,10 @@ class ComfyNodeV3(ComfyNodeInternal):
|
|||||||
@classmethod
|
@classmethod
|
||||||
def INPUT_TYPES(cls, include_hidden=True, return_schema=False) -> dict[str, dict] | tuple[dict[str, dict], SchemaV3]:
|
def INPUT_TYPES(cls, include_hidden=True, return_schema=False) -> dict[str, dict] | tuple[dict[str, dict], SchemaV3]:
|
||||||
schema = cls.FINALIZE_SCHEMA()
|
schema = cls.FINALIZE_SCHEMA()
|
||||||
# for V1, make inputs be a dict with potential keys {required, optional, hidden}
|
info = schema.get_v1_info(cls)
|
||||||
input = {
|
input = info.input
|
||||||
"required": {}
|
if not include_hidden:
|
||||||
}
|
input.pop("hidden", None)
|
||||||
if schema.inputs:
|
|
||||||
for i in schema.inputs:
|
|
||||||
if isinstance(i, DynamicInput):
|
|
||||||
dynamic_inputs = i.get_dynamic()
|
|
||||||
for d in dynamic_inputs:
|
|
||||||
add_to_dict_v1(d, input)
|
|
||||||
else:
|
|
||||||
add_to_dict_v1(i, input)
|
|
||||||
if schema.hidden and include_hidden:
|
|
||||||
for hidden in schema.hidden:
|
|
||||||
input.setdefault("hidden", {})[hidden.name] = (hidden.value,)
|
|
||||||
if return_schema:
|
if return_schema:
|
||||||
return input, schema
|
return input, schema
|
||||||
return input
|
return input
|
||||||
@ -1401,38 +1491,7 @@ class ComfyNodeV3(ComfyNodeInternal):
|
|||||||
@classmethod
|
@classmethod
|
||||||
def GET_NODE_INFO_V1(cls) -> dict[str, Any]:
|
def GET_NODE_INFO_V1(cls) -> dict[str, Any]:
|
||||||
schema = cls.GET_SCHEMA()
|
schema = cls.GET_SCHEMA()
|
||||||
# get V1 inputs
|
info = schema.get_v1_info(cls)
|
||||||
input = cls.INPUT_TYPES()
|
|
||||||
|
|
||||||
# create separate lists from output fields
|
|
||||||
output = []
|
|
||||||
output_is_list = []
|
|
||||||
output_name = []
|
|
||||||
output_tooltips = []
|
|
||||||
if schema.outputs:
|
|
||||||
for o in schema.outputs:
|
|
||||||
output.append(o.io_type)
|
|
||||||
output_is_list.append(o.is_output_list)
|
|
||||||
output_name.append(o.display_name if o.display_name else o.io_type)
|
|
||||||
output_tooltips.append(o.tooltip if o.tooltip else None)
|
|
||||||
|
|
||||||
info = NodeInfoV1(
|
|
||||||
input=input,
|
|
||||||
input_order={key: list(value.keys()) for (key, value) in input.items()},
|
|
||||||
output=output,
|
|
||||||
output_is_list=output_is_list,
|
|
||||||
output_name=output_name,
|
|
||||||
output_tooltips=output_tooltips,
|
|
||||||
name=schema.node_id,
|
|
||||||
display_name=schema.display_name,
|
|
||||||
category=schema.category,
|
|
||||||
description=schema.description,
|
|
||||||
output_node=schema.is_output_node,
|
|
||||||
deprecated=schema.is_deprecated,
|
|
||||||
experimental=schema.is_experimental,
|
|
||||||
api_node=schema.is_api_node,
|
|
||||||
python_module=getattr(cls, "RELATIVE_PYTHON_MODULE", "nodes")
|
|
||||||
)
|
|
||||||
return asdict(info)
|
return asdict(info)
|
||||||
#--------------------------------------------
|
#--------------------------------------------
|
||||||
#############################################
|
#############################################
|
||||||
@ -1479,57 +1538,4 @@ class _UIOutput(ABC):
|
|||||||
|
|
||||||
@abstractmethod
|
@abstractmethod
|
||||||
def as_dict(self) -> dict:
|
def as_dict(self) -> dict:
|
||||||
... # TODO: finish
|
...
|
||||||
|
|
||||||
class TestNode(ComfyNodeV3):
|
|
||||||
@classmethod
|
|
||||||
def define_schema(cls):
|
|
||||||
return SchemaV3(
|
|
||||||
node_id="TestNode_v3",
|
|
||||||
display_name="Test Node (V3)",
|
|
||||||
category="v3_test",
|
|
||||||
inputs=[Int.Input("my_int"),
|
|
||||||
#AutoGrowDynamicInput("growing", Image.Input),
|
|
||||||
Mask.Input("thing"),
|
|
||||||
],
|
|
||||||
outputs=[Image.Output("image_output")],
|
|
||||||
hidden=[Hidden.api_key_comfy_org, Hidden.auth_token_comfy_org, Hidden.unique_id]
|
|
||||||
)
|
|
||||||
|
|
||||||
@classmethod
|
|
||||||
def execute(cls, **kwargs):
|
|
||||||
pass
|
|
||||||
|
|
||||||
# if __name__ == "__main__":
|
|
||||||
# print("hello there")
|
|
||||||
# inputs: list[InputV3] = [
|
|
||||||
# Int.Input("tessfes", widgetType=String.io_type),
|
|
||||||
# Int.Input("my_int"),
|
|
||||||
# Custom("XYZ").Input("xyz"),
|
|
||||||
# Custom("MODEL_M").Input("model1"),
|
|
||||||
# Image.Input("my_image"),
|
|
||||||
# Float.Input("my_float"),
|
|
||||||
# MultiType.Input("my_inputs", [String, Custom("MODEL_M"), Custom("XYZ")]),
|
|
||||||
# ]
|
|
||||||
# Custom("XYZ").Input()
|
|
||||||
# outputs: list[OutputV3] = [
|
|
||||||
# Image.Output("image"),
|
|
||||||
# Custom("XYZ").Output("xyz"),
|
|
||||||
# ]
|
|
||||||
#
|
|
||||||
# for c in inputs:
|
|
||||||
# if isinstance(c, MultiType):
|
|
||||||
# print(f"{c}, {type(c)}, {type(c).io_type}, {c.id}, {[x.io_type for x in c.io_types]}")
|
|
||||||
# print(c.get_io_type_V1())
|
|
||||||
# else:
|
|
||||||
# print(f"{c}, {type(c)}, {type(c).io_type}, {c.id}")
|
|
||||||
#
|
|
||||||
# for c in outputs:
|
|
||||||
# print(f"{c}, {type(c)}, {type(c).io_type}, {c.id}")
|
|
||||||
#
|
|
||||||
# zz = TestNode()
|
|
||||||
# print(zz.GET_NODE_INFO_V1())
|
|
||||||
#
|
|
||||||
# # aa = NodeInfoV1()
|
|
||||||
# # print(asdict(aa))
|
|
||||||
# # print(as_pruned_dict(aa))
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user