bizyengine 1.1.3__py3-none-any.whl → 1.2.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- bizyengine/bizy_server/api_client.py +349 -42
- bizyengine/bizy_server/errno.py +410 -88
- bizyengine/bizy_server/profile.py +90 -0
- bizyengine/bizy_server/resp.py +8 -4
- bizyengine/bizy_server/server.py +194 -1
- bizyengine/bizy_server/utils.py +11 -0
- bizyengine/bizyair_extras/nodes_comfyui_instantid.py +11 -0
- bizyengine/bizyair_extras/nodes_comfyui_pulid_flux.py +15 -0
- bizyengine/bizyair_extras/nodes_ipadapter_plus/nodes_ipadapter_plus.py +39 -0
- bizyengine/bizyair_extras/nodes_kolors_mz/__init__.py +41 -1
- bizyengine/bizyair_extras/nodes_upscale_model.py +11 -0
- bizyengine/core/commands/processors/prompt_processor.py +14 -7
- bizyengine/core/common/client.py +22 -8
- bizyengine/core/common/env_var.py +7 -4
- bizyengine/core/configs/models.yaml +11 -0
- bizyengine/core/nodes_base.py +20 -1
- bizyengine/core/path_utils/path_manager.py +62 -9
- bizyengine/misc/nodes.py +219 -3
- bizyengine/misc/supernode.py +0 -36
- bizyengine/version.txt +1 -1
- {bizyengine-1.1.3.dist-info → bizyengine-1.2.1.dist-info}/METADATA +1 -1
- {bizyengine-1.1.3.dist-info → bizyengine-1.2.1.dist-info}/RECORD +24 -23
- {bizyengine-1.1.3.dist-info → bizyengine-1.2.1.dist-info}/WHEEL +0 -0
- {bizyengine-1.1.3.dist-info → bizyengine-1.2.1.dist-info}/top_level.txt +0 -0
|
@@ -9,7 +9,7 @@ from dataclasses import dataclass
|
|
|
9
9
|
from functools import lru_cache
|
|
10
10
|
from typing import Any, Collection, Dict, List, Union
|
|
11
11
|
|
|
12
|
-
from bizyengine.core.common import fetch_models_by_type
|
|
12
|
+
from bizyengine.core.common import client, fetch_models_by_type
|
|
13
13
|
from bizyengine.core.common.env_var import BIZYAIR_DEBUG, BIZYAIR_SERVER_ADDRESS
|
|
14
14
|
from bizyengine.core.configs.conf import ModelRule, config_manager
|
|
15
15
|
from bizyengine.core.path_utils.utils import (
|
|
@@ -74,19 +74,72 @@ models_config: Dict[str, Dict[str, Any]] = load_yaml_config(
|
|
|
74
74
|
)
|
|
75
75
|
|
|
76
76
|
|
|
77
|
+
def detect_model(model_version_id, detection_type, **kwargs):
|
|
78
|
+
return "SDXL"
|
|
79
|
+
# TODO support detect_model_type
|
|
80
|
+
# json_data = {
|
|
81
|
+
# "prompt": {
|
|
82
|
+
# "model_version_id": model_version_id,
|
|
83
|
+
# "detection_type": detection_type,
|
|
84
|
+
# },
|
|
85
|
+
# "exec_info": {"api_key": client.get_api_key()},
|
|
86
|
+
# }
|
|
87
|
+
# detect_model_type: dict = models_config["model_version_config"]["detect_model_type"]
|
|
88
|
+
# resq = client.send_request(
|
|
89
|
+
# url=detect_model_type["url"], data=json.dumps(json_data).encode("utf-8")
|
|
90
|
+
# )
|
|
91
|
+
# if resq["type"] != "success":
|
|
92
|
+
# raise RuntimeError(
|
|
93
|
+
# f"Request failed: {resq.get('type', 'unknown error')} - {resq.get('message', 'No details available')}"
|
|
94
|
+
# )
|
|
95
|
+
|
|
96
|
+
# payload = resq["data"]["payload"]
|
|
97
|
+
|
|
98
|
+
# model_type = payload.get("model_type")
|
|
99
|
+
# return model_type
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
def action_call(action: str, *args, **kwargs) -> any:
|
|
103
|
+
if action == "detect_model":
|
|
104
|
+
return detect_model(*args, **kwargs)
|
|
105
|
+
|
|
106
|
+
|
|
77
107
|
def guess_url_from_node(
|
|
78
108
|
node: Dict[str, Dict[str, Any]], class_type_table: Dict[str, bool]
|
|
79
109
|
) -> Union[List[ModelRule], None]:
|
|
80
110
|
rules: List[ModelRule] = config_manager.get_rules(node["class_type"])
|
|
81
|
-
out = [
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
if len(rule.inputs) == 0
|
|
85
|
-
or all(
|
|
86
|
-
any(re.search(p, node["inputs"][key]) is not None for p in patterns)
|
|
87
|
-
for key, patterns in rule.inputs.items()
|
|
88
|
-
)
|
|
111
|
+
out = []
|
|
112
|
+
model_version_id_prefix = models_config["model_version_config"][
|
|
113
|
+
"model_version_id_prefix"
|
|
89
114
|
]
|
|
115
|
+
model_type = None
|
|
116
|
+
for rule in rules:
|
|
117
|
+
if len(rule.inputs) == 0:
|
|
118
|
+
out.append(rule)
|
|
119
|
+
|
|
120
|
+
skip = False
|
|
121
|
+
for key, patterns in rule.inputs.items():
|
|
122
|
+
if skip:
|
|
123
|
+
break
|
|
124
|
+
for pattern in patterns:
|
|
125
|
+
value = node["inputs"][key]
|
|
126
|
+
if isinstance(pattern, str) and re.search(pattern, value) is not None:
|
|
127
|
+
out.append(rule)
|
|
128
|
+
skip = True
|
|
129
|
+
break
|
|
130
|
+
elif isinstance(pattern, dict) and value.startswith(
|
|
131
|
+
model_version_id_prefix
|
|
132
|
+
):
|
|
133
|
+
action = pattern["action"]
|
|
134
|
+
detection_type = pattern["detection_type"]
|
|
135
|
+
model_type = action_call(
|
|
136
|
+
action=action,
|
|
137
|
+
model_version_id=value[len(model_version_id_prefix) :],
|
|
138
|
+
detection_type=detection_type,
|
|
139
|
+
)
|
|
140
|
+
if model_type and model_type == rule.base_model:
|
|
141
|
+
out.append(rule)
|
|
142
|
+
|
|
90
143
|
return out
|
|
91
144
|
|
|
92
145
|
|
bizyengine/misc/nodes.py
CHANGED
|
@@ -144,7 +144,17 @@ class BizyAir_CheckpointLoaderSimple(BizyAirBaseNode):
|
|
|
144
144
|
def INPUT_TYPES(s):
|
|
145
145
|
return {
|
|
146
146
|
"required": {
|
|
147
|
-
"ckpt_name": (
|
|
147
|
+
"ckpt_name": (
|
|
148
|
+
[
|
|
149
|
+
"to choose",
|
|
150
|
+
],
|
|
151
|
+
),
|
|
152
|
+
"model_version_id": (
|
|
153
|
+
"STRING",
|
|
154
|
+
{
|
|
155
|
+
"default": "",
|
|
156
|
+
},
|
|
157
|
+
),
|
|
148
158
|
}
|
|
149
159
|
}
|
|
150
160
|
|
|
@@ -157,7 +167,22 @@ class BizyAir_CheckpointLoaderSimple(BizyAirBaseNode):
|
|
|
157
167
|
f"vae",
|
|
158
168
|
)
|
|
159
169
|
|
|
160
|
-
|
|
170
|
+
@classmethod
|
|
171
|
+
def VALIDATE_INPUTS(cls, ckpt_name):
|
|
172
|
+
# TODO
|
|
173
|
+
import warnings
|
|
174
|
+
|
|
175
|
+
warnings.warn(message=f"TODO fix {cls}VALIDATE_INPUTS")
|
|
176
|
+
if ckpt_name == "" or ckpt_name is None:
|
|
177
|
+
return False
|
|
178
|
+
return True
|
|
179
|
+
|
|
180
|
+
def load_checkpoint(self, ckpt_name, model_version_id=""):
|
|
181
|
+
if model_version_id != "":
|
|
182
|
+
# use model version id as lora name
|
|
183
|
+
ckpt_name = (
|
|
184
|
+
f"{config_manager.get_model_version_id_prefix()}{model_version_id}"
|
|
185
|
+
)
|
|
161
186
|
node_datas = [
|
|
162
187
|
create_node_data(
|
|
163
188
|
class_type="CheckpointLoaderSimple",
|
|
@@ -589,6 +614,17 @@ class BizyAir_CLIPVisionLoader(BizyAirBaseNode):
|
|
|
589
614
|
return {
|
|
590
615
|
"required": {
|
|
591
616
|
"clip_name": (folder_paths.get_filename_list("clip_vision"),),
|
|
617
|
+
# "clip_name": (
|
|
618
|
+
# [
|
|
619
|
+
# "to choose",
|
|
620
|
+
# ],
|
|
621
|
+
# ),
|
|
622
|
+
# "model_version_id": (
|
|
623
|
+
# "STRING",
|
|
624
|
+
# {
|
|
625
|
+
# "default": "",
|
|
626
|
+
# },
|
|
627
|
+
# ),
|
|
592
628
|
}
|
|
593
629
|
}
|
|
594
630
|
|
|
@@ -606,11 +642,50 @@ class BizyAir_CLIPVisionLoader(BizyAirBaseNode):
|
|
|
606
642
|
clip_vision = BizyAirNodeIO(self.assigned_id, {self.assigned_id: node_data})
|
|
607
643
|
return (clip_vision,)
|
|
608
644
|
|
|
645
|
+
# @classmethod
|
|
646
|
+
# def VALIDATE_INPUTS(cls, clip_name):
|
|
647
|
+
# # TODO
|
|
648
|
+
# import warnings
|
|
649
|
+
|
|
650
|
+
# warnings.warn(message=f"TODO fix {cls}VALIDATE_INPUTS")
|
|
651
|
+
# if clip_name == "" or clip_name is None:
|
|
652
|
+
# return False
|
|
653
|
+
# return True
|
|
654
|
+
|
|
655
|
+
# def load_clip(self, clip_name, model_version_id=""):
|
|
656
|
+
# if model_version_id != "":
|
|
657
|
+
# # use model version id as lora name
|
|
658
|
+
# clip_name = (
|
|
659
|
+
# f"{config_manager.get_model_version_id_prefix()}{model_version_id}"
|
|
660
|
+
# )
|
|
661
|
+
# node_data = create_node_data(
|
|
662
|
+
# class_type="CLIPVisionLoader",
|
|
663
|
+
# inputs={"clip_name": clip_name},
|
|
664
|
+
# outputs={"slot_index": 0},
|
|
665
|
+
# )
|
|
666
|
+
# clip_vision = BizyAirNodeIO(self.assigned_id, {self.assigned_id: node_data})
|
|
667
|
+
# return (clip_vision,)
|
|
668
|
+
|
|
609
669
|
|
|
610
670
|
class VAELoader(BizyAirBaseNode):
|
|
611
671
|
@classmethod
|
|
612
672
|
def INPUT_TYPES(s):
|
|
613
673
|
return {"required": {"vae_name": (folder_paths.get_filename_list("vae"),)}}
|
|
674
|
+
# return {
|
|
675
|
+
# "required": {
|
|
676
|
+
# "vae_name": (
|
|
677
|
+
# [
|
|
678
|
+
# "to choose",
|
|
679
|
+
# ],
|
|
680
|
+
# ),
|
|
681
|
+
# "model_version_id": (
|
|
682
|
+
# "STRING",
|
|
683
|
+
# {
|
|
684
|
+
# "default": "",
|
|
685
|
+
# },
|
|
686
|
+
# ),
|
|
687
|
+
# }
|
|
688
|
+
# }
|
|
614
689
|
|
|
615
690
|
RETURN_TYPES = (data_types.VAE,)
|
|
616
691
|
RETURN_NAMES = ("vae",)
|
|
@@ -631,6 +706,34 @@ class VAELoader(BizyAirBaseNode):
|
|
|
631
706
|
)
|
|
632
707
|
return (vae,)
|
|
633
708
|
|
|
709
|
+
# @classmethod
|
|
710
|
+
# def VALIDATE_INPUTS(cls, vae_name):
|
|
711
|
+
# # TODO
|
|
712
|
+
# import warnings
|
|
713
|
+
|
|
714
|
+
# warnings.warn(message=f"TODO fix {cls}VALIDATE_INPUTS")
|
|
715
|
+
# if vae_name == "" or vae_name is None:
|
|
716
|
+
# return False
|
|
717
|
+
# return True
|
|
718
|
+
|
|
719
|
+
# def load_vae(self, vae_name, model_version_id):
|
|
720
|
+
# if model_version_id != "":
|
|
721
|
+
# # use model version id as lora name
|
|
722
|
+
# vae_name = (
|
|
723
|
+
# f"{config_manager.get_model_version_id_prefix()}{model_version_id}"
|
|
724
|
+
# )
|
|
725
|
+
# node_data = create_node_data(
|
|
726
|
+
# class_type="VAELoader",
|
|
727
|
+
# inputs={"vae_name": vae_name},
|
|
728
|
+
# outputs={"slot_index": 0},
|
|
729
|
+
# )
|
|
730
|
+
# vae = BizyAirNodeIO(
|
|
731
|
+
# self.assigned_id,
|
|
732
|
+
# {self.assigned_id: node_data},
|
|
733
|
+
# config_file=folder_paths.guess_config(vae_name=vae_name),
|
|
734
|
+
# )
|
|
735
|
+
# return (vae,)
|
|
736
|
+
|
|
634
737
|
|
|
635
738
|
class UNETLoader(BizyAirBaseNode):
|
|
636
739
|
@classmethod
|
|
@@ -638,6 +741,17 @@ class UNETLoader(BizyAirBaseNode):
|
|
|
638
741
|
return {
|
|
639
742
|
"required": {
|
|
640
743
|
"unet_name": (folder_paths.get_filename_list("unet"),),
|
|
744
|
+
# "unet_name": (
|
|
745
|
+
# [
|
|
746
|
+
# "to choose",
|
|
747
|
+
# ],
|
|
748
|
+
# ),
|
|
749
|
+
# "model_version_id": (
|
|
750
|
+
# "STRING",
|
|
751
|
+
# {
|
|
752
|
+
# "default": "",
|
|
753
|
+
# },
|
|
754
|
+
# ),
|
|
641
755
|
"weight_dtype": (["default", "fp8_e4m3fn", "fp8_e5m2"],),
|
|
642
756
|
}
|
|
643
757
|
}
|
|
@@ -663,6 +777,37 @@ class UNETLoader(BizyAirBaseNode):
|
|
|
663
777
|
)
|
|
664
778
|
return (model,)
|
|
665
779
|
|
|
780
|
+
# @classmethod
|
|
781
|
+
# def VALIDATE_INPUTS(cls, unet_name):
|
|
782
|
+
# # TODO
|
|
783
|
+
# import warnings
|
|
784
|
+
|
|
785
|
+
# warnings.warn(message=f"TODO fix {cls}VALIDATE_INPUTS")
|
|
786
|
+
# if unet_name == "" or unet_name is None:
|
|
787
|
+
# return False
|
|
788
|
+
# return True
|
|
789
|
+
|
|
790
|
+
# def load_unet(self, unet_name, model_version_id, weight_dtype):
|
|
791
|
+
# if model_version_id != "":
|
|
792
|
+
# # use model version id as lora name
|
|
793
|
+
# unet_name = (
|
|
794
|
+
# f"{config_manager.get_model_version_id_prefix()}{model_version_id}"
|
|
795
|
+
# )
|
|
796
|
+
# node_data = create_node_data(
|
|
797
|
+
# class_type="UNETLoader",
|
|
798
|
+
# inputs={
|
|
799
|
+
# "unet_name": unet_name,
|
|
800
|
+
# "weight_dtype": weight_dtype,
|
|
801
|
+
# },
|
|
802
|
+
# outputs={"slot_index": 0},
|
|
803
|
+
# )
|
|
804
|
+
# model = BizyAirNodeIO(
|
|
805
|
+
# self.assigned_id,
|
|
806
|
+
# {self.assigned_id: node_data},
|
|
807
|
+
# config_file=folder_paths.guess_config(unet_name=unet_name),
|
|
808
|
+
# )
|
|
809
|
+
# return (model,)
|
|
810
|
+
|
|
666
811
|
|
|
667
812
|
class SamplerCustomAdvanced(BizyAirBaseNode):
|
|
668
813
|
@classmethod
|
|
@@ -759,6 +904,28 @@ class DualCLIPLoader(BizyAirBaseNode):
|
|
|
759
904
|
"required": {
|
|
760
905
|
"clip_name1": (folder_paths.get_filename_list("clip"),),
|
|
761
906
|
"clip_name2": (folder_paths.get_filename_list("clip"),),
|
|
907
|
+
# "clip_name1": (
|
|
908
|
+
# [
|
|
909
|
+
# "to choose",
|
|
910
|
+
# ],
|
|
911
|
+
# ),
|
|
912
|
+
# "model_version_id1": (
|
|
913
|
+
# "STRING",
|
|
914
|
+
# {
|
|
915
|
+
# "default": "",
|
|
916
|
+
# },
|
|
917
|
+
# ),
|
|
918
|
+
# "clip_name2": (
|
|
919
|
+
# [
|
|
920
|
+
# "to choose",
|
|
921
|
+
# ],
|
|
922
|
+
# ),
|
|
923
|
+
# "model_version_id2": (
|
|
924
|
+
# "STRING",
|
|
925
|
+
# {
|
|
926
|
+
# "default": "",
|
|
927
|
+
# },
|
|
928
|
+
# ),
|
|
762
929
|
"type": (["sdxl", "sd3", "flux"],),
|
|
763
930
|
}
|
|
764
931
|
}
|
|
@@ -769,7 +936,6 @@ class DualCLIPLoader(BizyAirBaseNode):
|
|
|
769
936
|
CATEGORY = "advanced/loaders"
|
|
770
937
|
|
|
771
938
|
def load_clip(self, clip_name1, clip_name2, type):
|
|
772
|
-
|
|
773
939
|
node_data = create_node_data(
|
|
774
940
|
class_type="DualCLIPLoader",
|
|
775
941
|
inputs={
|
|
@@ -786,6 +952,45 @@ class DualCLIPLoader(BizyAirBaseNode):
|
|
|
786
952
|
)
|
|
787
953
|
return (model,)
|
|
788
954
|
|
|
955
|
+
# @classmethod
|
|
956
|
+
# def VALIDATE_INPUTS(cls, ckpt_name):
|
|
957
|
+
# # TODO
|
|
958
|
+
# import warnings
|
|
959
|
+
|
|
960
|
+
# warnings.warn(message=f"TODO fix {cls}VALIDATE_INPUTS")
|
|
961
|
+
# if ckpt_name == "" or ckpt_name is None:
|
|
962
|
+
# return False
|
|
963
|
+
# return True
|
|
964
|
+
|
|
965
|
+
# def load_clip(
|
|
966
|
+
# self, clip_name1, model_version_id1, clip_name2, model_version_id2, type
|
|
967
|
+
# ):
|
|
968
|
+
# if model_version_id1 != "":
|
|
969
|
+
# # use model version id as lora name
|
|
970
|
+
# clip_name1 = (
|
|
971
|
+
# f"{config_manager.get_model_version_id_prefix()}{model_version_id1}"
|
|
972
|
+
# )
|
|
973
|
+
# if model_version_id2 != "":
|
|
974
|
+
# # use model version id as lora name
|
|
975
|
+
# clip_name2 = (
|
|
976
|
+
# f"{config_manager.get_model_version_id_prefix()}{model_version_id2}"
|
|
977
|
+
# )
|
|
978
|
+
# node_data = create_node_data(
|
|
979
|
+
# class_type="DualCLIPLoader",
|
|
980
|
+
# inputs={
|
|
981
|
+
# "clip_name1": clip_name1,
|
|
982
|
+
# "clip_name2": clip_name2,
|
|
983
|
+
# "type": type,
|
|
984
|
+
# },
|
|
985
|
+
# outputs={"slot_index": 0},
|
|
986
|
+
# )
|
|
987
|
+
# model = BizyAirNodeIO(
|
|
988
|
+
# self.assigned_id,
|
|
989
|
+
# {self.assigned_id: node_data},
|
|
990
|
+
# config_file=folder_paths.guess_config(clip_name=clip_name1),
|
|
991
|
+
# )
|
|
992
|
+
# return (model,)
|
|
993
|
+
|
|
789
994
|
|
|
790
995
|
class KSamplerSelect(BizyAirBaseNode):
|
|
791
996
|
@classmethod
|
|
@@ -1182,6 +1387,17 @@ class StyleModelLoader(BizyAirBaseNode):
|
|
|
1182
1387
|
return {
|
|
1183
1388
|
"required": {
|
|
1184
1389
|
"style_model_name": (folder_paths.get_filename_list("style_models"),)
|
|
1390
|
+
# "style_model_name": (
|
|
1391
|
+
# [
|
|
1392
|
+
# "to choose",
|
|
1393
|
+
# ],
|
|
1394
|
+
# ),
|
|
1395
|
+
# "model_version_id": (
|
|
1396
|
+
# "STRING",
|
|
1397
|
+
# {
|
|
1398
|
+
# "default": "",
|
|
1399
|
+
# },
|
|
1400
|
+
# ),
|
|
1185
1401
|
}
|
|
1186
1402
|
}
|
|
1187
1403
|
|
bizyengine/misc/supernode.py
CHANGED
|
@@ -136,47 +136,11 @@ class GenerateLightningImage:
|
|
|
136
136
|
return (tensors,)
|
|
137
137
|
|
|
138
138
|
|
|
139
|
-
class ToggleServerEndpoint:
|
|
140
|
-
BIZYAIR_SERVER_ENDPOINTS = [
|
|
141
|
-
"https://bizyair-api-st.siliconflow.cn/x/v1",
|
|
142
|
-
"https://bizyair-api.siliconflow.cn/x/v1",
|
|
143
|
-
]
|
|
144
|
-
|
|
145
|
-
def __init__(self):
|
|
146
|
-
self.current_index = 0
|
|
147
|
-
|
|
148
|
-
@classmethod
|
|
149
|
-
def INPUT_TYPES(s):
|
|
150
|
-
return {
|
|
151
|
-
"required": {
|
|
152
|
-
"endpoint": (s.BIZYAIR_SERVER_ENDPOINTS,),
|
|
153
|
-
}
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
RETURN_TYPES = ()
|
|
157
|
-
FUNCTION = "toggle_endpoint"
|
|
158
|
-
OUTPUT_NODE = True
|
|
159
|
-
|
|
160
|
-
CATEGORY = "☁️BizyAir"
|
|
161
|
-
|
|
162
|
-
def toggle_endpoint(self, endpoint):
|
|
163
|
-
BIZYAIR_SERVER_ADDRESS.address = endpoint
|
|
164
|
-
from server import PromptServer
|
|
165
|
-
|
|
166
|
-
PromptServer.instance.send_sync(
|
|
167
|
-
"bizyair.server.endpoint.switch",
|
|
168
|
-
{"message": f"Switch server endpoint to {endpoint}"},
|
|
169
|
-
)
|
|
170
|
-
return ()
|
|
171
|
-
|
|
172
|
-
|
|
173
139
|
NODE_CLASS_MAPPINGS = {
|
|
174
140
|
"BizyAirRemoveBackground": RemoveBackground,
|
|
175
141
|
"BizyAirGenerateLightningImage": GenerateLightningImage,
|
|
176
|
-
"BizyAirToggleServerEndpoint": ToggleServerEndpoint,
|
|
177
142
|
}
|
|
178
143
|
NODE_DISPLAY_NAME_MAPPINGS = {
|
|
179
144
|
"BizyAirRemoveBackground": "☁️BizyAir Remove Image Background",
|
|
180
145
|
"BizyAirGenerateLightningImage": "☁️BizyAir Generate Photorealistic Images",
|
|
181
|
-
"BizyAirToggleServerEndpoint": "☁️BizyAir Switch Server Endpoint",
|
|
182
146
|
}
|
bizyengine/version.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.1
|
|
1
|
+
1.2.1
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: bizyengine
|
|
3
|
-
Version: 1.1
|
|
3
|
+
Version: 1.2.1
|
|
4
4
|
Summary: [a/BizyAir](https://github.com/siliconflow/BizyAir) Comfy Nodes that can run in any environment.
|
|
5
5
|
Author-email: SiliconFlow <yaochi@siliconflow.cn>
|
|
6
6
|
Project-URL: Repository, https://github.com/siliconflow/BizyAir
|
|
@@ -1,20 +1,21 @@
|
|
|
1
1
|
bizyengine/__init__.py,sha256=GP9V-JM07fz7uv_qTB43QEA2rKdrVJxi5I7LRnn_3ZQ,914
|
|
2
|
-
bizyengine/version.txt,sha256=
|
|
2
|
+
bizyengine/version.txt,sha256=bPTghLR_M8mwLveSedFXgzho-PcFFBaadovjU-4yj-o,6
|
|
3
3
|
bizyengine/bizy_server/__init__.py,sha256=SP9oSblnPo4KQyh7yOGD26YCskFAcQHAZy04nQBNRIw,200
|
|
4
|
-
bizyengine/bizy_server/api_client.py,sha256=
|
|
5
|
-
bizyengine/bizy_server/errno.py,sha256=
|
|
4
|
+
bizyengine/bizy_server/api_client.py,sha256=sTX_LQq9JFLSRYjn6beaOw3x5F5JYp0iTehuzcUwyhg,37225
|
|
5
|
+
bizyengine/bizy_server/errno.py,sha256=iiel-LhT2o7v2BJpJn_mbVLG9Ett8WbqrT21B9j8hpA,15375
|
|
6
6
|
bizyengine/bizy_server/error_handler.py,sha256=MGrfO1AEqbfEgMWPL8B6Ypew_zHiQAdYGlhN9bZohrY,167
|
|
7
7
|
bizyengine/bizy_server/execution.py,sha256=ayaEf6eGJKQsVZV-1_UlGlvwwmlH7FEek31Uq-MbUjA,1644
|
|
8
|
-
bizyengine/bizy_server/
|
|
9
|
-
bizyengine/bizy_server/
|
|
10
|
-
bizyengine/bizy_server/
|
|
8
|
+
bizyengine/bizy_server/profile.py,sha256=f4juAzJ73gCm0AhagYpt9WnG8HEI6xze_U96-omBLqU,3044
|
|
9
|
+
bizyengine/bizy_server/resp.py,sha256=iOFT5Ud7VJBP2uqkojJIgc3y2ifMjjEXoj0ewneL9lc,710
|
|
10
|
+
bizyengine/bizy_server/server.py,sha256=0rI_8m3jR_x2DsVEN0czWWO2mdaF7OyzXnnCnL3YRQc,41483
|
|
11
|
+
bizyengine/bizy_server/utils.py,sha256=2OLKeJNMslO3uUehexs0mouRyoU_tyE9f2UhZF6RJy0,2534
|
|
11
12
|
bizyengine/bizyair_extras/__init__.py,sha256=Lnf-6vOrpkmzZ1H_AiBKlRo0pPt_A8HyUqGDXCZKOIc,892
|
|
12
13
|
bizyengine/bizyair_extras/nodes_advanced_refluxcontrol.py,sha256=cecfjrtnjJAty9aNkhz8BlmHUC1NImkFlUDiA0COEa4,2242
|
|
13
14
|
bizyengine/bizyair_extras/nodes_cogview4.py,sha256=Ni0TDOycczyDhYPvSR68TxGV_wE2uhaxd8MIj-J4-3o,2031
|
|
14
15
|
bizyengine/bizyair_extras/nodes_comfyui_detail_daemon.py,sha256=i71it24tiGvZ3h-XFWISr4CpZszUtPuz3UrZARYluLk,6169
|
|
15
|
-
bizyengine/bizyair_extras/nodes_comfyui_instantid.py,sha256
|
|
16
|
+
bizyengine/bizyair_extras/nodes_comfyui_instantid.py,sha256=9tyyFFxVPA8Hh9tfrjNWkRkT1AR8jfBdxExabb6susA,5197
|
|
16
17
|
bizyengine/bizyair_extras/nodes_comfyui_layerstyle_advance.py,sha256=vJLHe31gyVIdmPZc52R5isj-XhUwtNbE-pTsonypieA,4652
|
|
17
|
-
bizyengine/bizyair_extras/nodes_comfyui_pulid_flux.py,sha256=
|
|
18
|
+
bizyengine/bizyair_extras/nodes_comfyui_pulid_flux.py,sha256=1vWot44oArFjMVddLaEnpLVvXJsH-YQeJGPu8IHjrJk,2892
|
|
18
19
|
bizyengine/bizyair_extras/nodes_controlnet.py,sha256=9ikMPACNaGMmG_ZN7bPzsSyVIzXOPpNMjgy1nWZFu7c,1657
|
|
19
20
|
bizyengine/bizyair_extras/nodes_custom_sampler.py,sha256=NK-7sdcp8oxJisjTEFfBskknQJF5I1fRwQkJbG3dKfc,3457
|
|
20
21
|
bizyengine/bizyair_extras/nodes_dataset.py,sha256=htF0YZb_FHncLhLDEbJfNCVqJ6rvlo1ZLk7iY42Rylc,3440
|
|
@@ -30,48 +31,48 @@ bizyengine/bizyair_extras/nodes_segment_anything_utils.py,sha256=ZefAqrFrevDH3XY
|
|
|
30
31
|
bizyengine/bizyair_extras/nodes_testing_utils.py,sha256=qeJHlSq-c21Vx8H0oZw878Q0ENciMjuSGTcZEVnSkRY,3987
|
|
31
32
|
bizyengine/bizyair_extras/nodes_trellis.py,sha256=QU2dQsN_zKA91vTVtR4Af4kJXDJA8CDSf1PyIu_ywZc,7421
|
|
32
33
|
bizyengine/bizyair_extras/nodes_ultimatesdupscale.py,sha256=6IZCDZ_9PhrKwJzCZGvKNxcRYwwkPRMNovF17nwzFqw,4130
|
|
33
|
-
bizyengine/bizyair_extras/nodes_upscale_model.py,sha256=
|
|
34
|
+
bizyengine/bizyair_extras/nodes_upscale_model.py,sha256=lrzA1BFI2w5aEPCmNPMh07s-WDzG-xTT49uU6WCnlP8,1151
|
|
34
35
|
bizyengine/bizyair_extras/nodes_wan_video.py,sha256=d1mCcW9jCj-5Oymmymy0Vz-nwWv36FMGE5Gn-E7Rul4,1632
|
|
35
36
|
bizyengine/bizyair_extras/route_bizyair_tools.py,sha256=QdgfiKeF6c4-5Bx5Pmz9RKlaAHreypy9SIg_krmLk-o,2079
|
|
36
37
|
bizyengine/bizyair_extras/nodes_ipadapter_plus/__init__.py,sha256=ECKATm_EKi_4G47-FJI4-3rHO3iiF9FVakfSTE-pooE,36
|
|
37
|
-
bizyengine/bizyair_extras/nodes_ipadapter_plus/nodes_ipadapter_plus.py,sha256=
|
|
38
|
-
bizyengine/bizyair_extras/nodes_kolors_mz/__init__.py,sha256=
|
|
38
|
+
bizyengine/bizyair_extras/nodes_ipadapter_plus/nodes_ipadapter_plus.py,sha256=OqR7Vca2c2bx3DH2jVLz0hH6fzz2_Gh6VG9LBrs7RBY,54845
|
|
39
|
+
bizyengine/bizyair_extras/nodes_kolors_mz/__init__.py,sha256=HsCCCphW8q0SrWEiFlZKK_W2lQr1T0UJIJL7gEn37ME,3729
|
|
39
40
|
bizyengine/bizyair_extras/oauth_callback/main.py,sha256=KQOZWor3kyNx8xvUNHYNMoHfCF9g_ht13_iPk4K_5YM,3633
|
|
40
41
|
bizyengine/core/__init__.py,sha256=XKaHyQVH_xybBzEPJ_Vv-KA1dAtsU_cYtPnAMfdUT3c,303
|
|
41
42
|
bizyengine/core/data_types.py,sha256=U1Ai149lvbVA-z59sfgniES9KSsyFIbDs_vcjpjlUK4,967
|
|
42
43
|
bizyengine/core/image_utils.py,sha256=--DmQb3R9Ev21MfZG9rfgOGsU2zRywJ-hpiNNN0N8p8,8586
|
|
43
|
-
bizyengine/core/nodes_base.py,sha256=
|
|
44
|
+
bizyengine/core/nodes_base.py,sha256=zzQQPCOs9uNPv2VWgFcEfE0iZnOvu80_bJqyVtiePKk,5812
|
|
44
45
|
bizyengine/core/nodes_io.py,sha256=3U1rb7CyZxsXYGeA-51Y_q8VaElLz-guR0EUlbgOr84,2812
|
|
45
46
|
bizyengine/core/commands/__init__.py,sha256=82yRdMT23RTiZPkFW_G3fVa-fj3-TUAXnj6cnGA3xRA,22
|
|
46
47
|
bizyengine/core/commands/base.py,sha256=TYH9lhr033B2roBLPkWkxcvoz_fW3cdzx_bvP_FI7dg,635
|
|
47
48
|
bizyengine/core/commands/invoker.py,sha256=8wcIMd8k44o96LAvxFrIiKOlVtf1MW-AcMDXsZkb5Qc,215
|
|
48
49
|
bizyengine/core/commands/processors/model_hosting_processor.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
49
|
-
bizyengine/core/commands/processors/prompt_processor.py,sha256=
|
|
50
|
+
bizyengine/core/commands/processors/prompt_processor.py,sha256=0PxSCvhI4gZmV3cEjJl8lKNb08EFemFVRRXrupedNdU,4467
|
|
50
51
|
bizyengine/core/commands/servers/model_server.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
51
52
|
bizyengine/core/commands/servers/prompt_server.py,sha256=P-kRDXSRUkQvyZY16XOGsM4RbOo3-NWM9exJT1kGVHE,8139
|
|
52
53
|
bizyengine/core/common/__init__.py,sha256=GicZw6YeAZk1PsKmFDt9dm1F75zPUlpia9Q_ki5vW1Y,179
|
|
53
54
|
bizyengine/core/common/caching.py,sha256=isliSZsQyrNjXmupW-BaZ2EoVF5G8t7aHAhbcELAn5M,6253
|
|
54
|
-
bizyengine/core/common/client.py,sha256=
|
|
55
|
-
bizyengine/core/common/env_var.py,sha256=
|
|
55
|
+
bizyengine/core/common/client.py,sha256=SohohVYSAja8nHZpK1kaDNbdH0qPH638-a8xUDMxTqI,9761
|
|
56
|
+
bizyengine/core/common/env_var.py,sha256=hKU1Wx5p3Ook1ydnpxmDSH828Kwy1r_fKgTpZWtDEWA,3138
|
|
56
57
|
bizyengine/core/common/utils.py,sha256=bm-XmSPy83AyjD0v5EfWp6jiO6_5p7rkZ_HQAuVmgmo,3086
|
|
57
58
|
bizyengine/core/configs/conf.py,sha256=D_UWG9SSJnK5EhbrfNFryJQ8hUwwdvhOGlq1TielwpI,3830
|
|
58
59
|
bizyengine/core/configs/models.json,sha256=ut_ZbbdSJtAiG6DSHYoKKR2MUN7j-vnklJQVfJ7rwbg,2589
|
|
59
|
-
bizyengine/core/configs/models.yaml,sha256=
|
|
60
|
+
bizyengine/core/configs/models.yaml,sha256=cEPRq5lsFWohqmjwTd7aM9Vy-WXwEec0rX627dQG-XU,8154
|
|
60
61
|
bizyengine/core/path_utils/__init__.py,sha256=5K9n4sexva0rfuYj3HcxdYeWnA1TuLTjpGGMFBTgnhM,240
|
|
61
|
-
bizyengine/core/path_utils/path_manager.py,sha256=
|
|
62
|
+
bizyengine/core/path_utils/path_manager.py,sha256=tRVAcpsYvfWD-tK7khLvNCZayB0wpU9L0tRTH4ZESzM,10549
|
|
62
63
|
bizyengine/core/path_utils/utils.py,sha256=ksgNPyQaqilOImscLkSYizbRfDQropfxpL8tqIXardM,881
|
|
63
64
|
bizyengine/misc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
64
65
|
bizyengine/misc/auth.py,sha256=d3ptxii981cdBq14p6nQnDMWkNsI0HmoWNOebwtcUQI,2814
|
|
65
66
|
bizyengine/misc/llm.py,sha256=6QZZpZSrHY6rmA6bmB9_cuiu34zcDKw7mAdsGiElYWQ,14332
|
|
66
67
|
bizyengine/misc/mzkolors.py,sha256=jnOHNvHzvPDqlKYFhPv4KKCuPV4izbuPPbykFsOcH-E,2588
|
|
67
|
-
bizyengine/misc/nodes.py,sha256=
|
|
68
|
+
bizyengine/misc/nodes.py,sha256=9njflJfklynyY0XmOCCzxlq48EwaO9wfrQGyXMqxlXM,43186
|
|
68
69
|
bizyengine/misc/nodes_controlnet_aux.py,sha256=9DoNT06go6fm2wjttUdPQKfqzumtEPnHUe3e93cCarc,16211
|
|
69
70
|
bizyengine/misc/nodes_controlnet_union_sdxl.py,sha256=e6Zs7unfPU-18VCLGgZXFOa0x1L8NJQyTkPv_YqI-zA,5857
|
|
70
71
|
bizyengine/misc/route_sam.py,sha256=-bMIR2QalfnszipGxSxvDAHGJa5gPSrjkYPb5baaRg4,1561
|
|
71
72
|
bizyengine/misc/segment_anything.py,sha256=RRm8FOfDY9VxdVrLjcdzJRh2pSM-kmNcCySuYnx9l7w,8677
|
|
72
|
-
bizyengine/misc/supernode.py,sha256=
|
|
73
|
+
bizyengine/misc/supernode.py,sha256=MPoJN6H_oCV00lmv1LWtGdQwTlyQPI6gXdMDXgkFd7g,4197
|
|
73
74
|
bizyengine/misc/utils.py,sha256=FRDEy63vDpssQxSFXrlK6WuXu15dNitYDIGGNOqtdH8,6353
|
|
74
|
-
bizyengine-1.1.
|
|
75
|
-
bizyengine-1.1.
|
|
76
|
-
bizyengine-1.1.
|
|
77
|
-
bizyengine-1.1.
|
|
75
|
+
bizyengine-1.2.1.dist-info/METADATA,sha256=EsJWD0DM2wjWYj_HnbN9eYE9rPFEgENzPZEK3QTWxUw,574
|
|
76
|
+
bizyengine-1.2.1.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
77
|
+
bizyengine-1.2.1.dist-info/top_level.txt,sha256=2zapzqxX-we5cRyJkGf9bd5JinRtXp3-_uDI-xCAnc0,11
|
|
78
|
+
bizyengine-1.2.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|