bizyengine 1.2.15__py3-none-any.whl → 1.2.17__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/bizyair_extras/nodes_nunchaku.py +45 -0
- bizyengine/version.txt +1 -0
- {bizyengine-1.2.15.dist-info → bizyengine-1.2.17.dist-info}/METADATA +1 -1
- {bizyengine-1.2.15.dist-info → bizyengine-1.2.17.dist-info}/RECORD +6 -5
- {bizyengine-1.2.15.dist-info → bizyengine-1.2.17.dist-info}/WHEEL +0 -0
- {bizyengine-1.2.15.dist-info → bizyengine-1.2.17.dist-info}/top_level.txt +0 -0
|
@@ -187,3 +187,48 @@ class NunchakuFluxLoraLoader(BizyAirBaseNode):
|
|
|
187
187
|
outputs={"slot_index": 0},
|
|
188
188
|
)
|
|
189
189
|
return (new_model,)
|
|
190
|
+
|
|
191
|
+
|
|
192
|
+
class NunchakuPulidApply(BizyAirBaseNode):
|
|
193
|
+
@classmethod
|
|
194
|
+
def INPUT_TYPES(s):
|
|
195
|
+
return {
|
|
196
|
+
"required": {
|
|
197
|
+
"pulid": ("BIZYAIR_PULID", {"tooltip": "from Nunchaku Pulid Loader"}),
|
|
198
|
+
"image": ("IMAGE", {"tooltip": "The image to encode"}),
|
|
199
|
+
"model": (data_types.MODEL, {"tooltip": "The nunchaku model."}),
|
|
200
|
+
"ip_weight": (
|
|
201
|
+
"FLOAT",
|
|
202
|
+
{
|
|
203
|
+
"default": 1.0,
|
|
204
|
+
"min": 0.0,
|
|
205
|
+
"max": 2.0,
|
|
206
|
+
"step": 0.01,
|
|
207
|
+
"tooltip": "ip_weight",
|
|
208
|
+
},
|
|
209
|
+
),
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
RETURN_TYPES = (data_types.MODEL,)
|
|
214
|
+
# FUNCTION = "apply"
|
|
215
|
+
CATEGORY = "Nunchaku"
|
|
216
|
+
TITLE = "Nunchaku Pulid Apply"
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
class NunchakuPulidLoader(BizyAirBaseNode):
|
|
220
|
+
@classmethod
|
|
221
|
+
def INPUT_TYPES(s):
|
|
222
|
+
return {
|
|
223
|
+
"required": {
|
|
224
|
+
"model": (data_types.MODEL, {"tooltip": "The nunchaku model."}),
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
RETURN_TYPES = (
|
|
229
|
+
data_types.MODEL,
|
|
230
|
+
"BIZYAIR_PULID",
|
|
231
|
+
)
|
|
232
|
+
# FUNCTION = "load"
|
|
233
|
+
CATEGORY = "Nunchaku"
|
|
234
|
+
TITLE = "Nunchaku Pulid Loader"
|
bizyengine/version.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
1.2.17
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: bizyengine
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.17
|
|
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,4 +1,5 @@
|
|
|
1
1
|
bizyengine/__init__.py,sha256=GP9V-JM07fz7uv_qTB43QEA2rKdrVJxi5I7LRnn_3ZQ,914
|
|
2
|
+
bizyengine/version.txt,sha256=3vZfbhJrgomRbGajbYUy_iaIl-F0UxtE4rP7GwAihls,7
|
|
2
3
|
bizyengine/bizy_server/__init__.py,sha256=SP9oSblnPo4KQyh7yOGD26YCskFAcQHAZy04nQBNRIw,200
|
|
3
4
|
bizyengine/bizy_server/api_client.py,sha256=qY1hQ11AeDf5m647qrYvn3YPBzP6Yaw8n2Z9hTk5Wtg,43624
|
|
4
5
|
bizyengine/bizy_server/errno.py,sha256=Q-U96XnZQCuPH_44Om8wnc2-Kh7qFqwLKtox27msU54,16095
|
|
@@ -25,7 +26,7 @@ bizyengine/bizyair_extras/nodes_image_utils.py,sha256=BldF_CKD2M01K8-SnG-QV86u3H
|
|
|
25
26
|
bizyengine/bizyair_extras/nodes_ip2p.py,sha256=GSEFJvrs4f2tv0xwYkWqc8uhsXrzAJVPvvwcw0gTjR0,619
|
|
26
27
|
bizyengine/bizyair_extras/nodes_janus_pro.py,sha256=hAdMsS09RkRHZn9cNwpmyOaH7ODOMjVt9SbBsD-UvbM,2665
|
|
27
28
|
bizyengine/bizyair_extras/nodes_model_advanced.py,sha256=RR2pzvlNW7NEcgtRcQSLZ8Vy7_ygA0NOZDjd7ZfzX5k,1756
|
|
28
|
-
bizyengine/bizyair_extras/nodes_nunchaku.py,sha256=
|
|
29
|
+
bizyengine/bizyair_extras/nodes_nunchaku.py,sha256=ImxqlqhlrBxbYHNJHVhVoxfY5RUyjylrRYUjAKlALaI,8050
|
|
29
30
|
bizyengine/bizyair_extras/nodes_sd3.py,sha256=lZCxj0IFmuxk1fZTDcRKgVV5QWHjkUdpR4w9-DZbMf4,1727
|
|
30
31
|
bizyengine/bizyair_extras/nodes_segment_anything.py,sha256=x1ei2UggHnB8T6aUtK_ZcUehMALEyLUnDoD5SNJCbFU,7249
|
|
31
32
|
bizyengine/bizyair_extras/nodes_segment_anything_utils.py,sha256=ZefAqrFrevDH3XY_wipr_VwKfeXrgpZEUFaqg_JGOdU,4714
|
|
@@ -74,7 +75,7 @@ bizyengine/misc/route_sam.py,sha256=-bMIR2QalfnszipGxSxvDAHGJa5gPSrjkYPb5baaRg4,
|
|
|
74
75
|
bizyengine/misc/segment_anything.py,sha256=wNKYwlYPMszfwj23524geFZJjZaG4eye65SGaUnh77I,8941
|
|
75
76
|
bizyengine/misc/supernode.py,sha256=STN9gaxfTSErH8OiHeZa47d8z-G9S0I7fXuJvHQOBFM,4532
|
|
76
77
|
bizyengine/misc/utils.py,sha256=deQjBgLAkxIr-NaOMm77TcgBT3ExAp0MFm5ehUJ3CGs,6829
|
|
77
|
-
bizyengine-1.2.
|
|
78
|
-
bizyengine-1.2.
|
|
79
|
-
bizyengine-1.2.
|
|
80
|
-
bizyengine-1.2.
|
|
78
|
+
bizyengine-1.2.17.dist-info/METADATA,sha256=sSGdOFbKyKEXvWyDp2nWzrRfVcmHykdu8iqMPHaMR6g,647
|
|
79
|
+
bizyengine-1.2.17.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
80
|
+
bizyengine-1.2.17.dist-info/top_level.txt,sha256=2zapzqxX-we5cRyJkGf9bd5JinRtXp3-_uDI-xCAnc0,11
|
|
81
|
+
bizyengine-1.2.17.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|