bizyengine 1.2.60__py3-none-any.whl → 1.2.62__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_veo3.py +1 -4
- bizyengine/core/commands/servers/prompt_server.py +10 -1
- bizyengine/version.txt +1 -1
- {bizyengine-1.2.60.dist-info → bizyengine-1.2.62.dist-info}/METADATA +1 -1
- {bizyengine-1.2.60.dist-info → bizyengine-1.2.62.dist-info}/RECORD +7 -7
- {bizyengine-1.2.60.dist-info → bizyengine-1.2.62.dist-info}/WHEEL +0 -0
- {bizyengine-1.2.60.dist-info → bizyengine-1.2.62.dist-info}/top_level.txt +0 -0
|
@@ -177,10 +177,7 @@ class Veo_V3_1_I2V_REF_API(BizyAirBaseNode):
|
|
|
177
177
|
"optional": {
|
|
178
178
|
"ref_image_2": ("IMAGE", {"tooltip": "参考图片2"}),
|
|
179
179
|
"ref_image_3": ("IMAGE", {"tooltip": "参考图片3"}),
|
|
180
|
-
"aspect_ratio": (
|
|
181
|
-
["9:16", "16:9"],
|
|
182
|
-
{"default": "16:9"},
|
|
183
|
-
),
|
|
180
|
+
"aspect_ratio": (["16:9"], {"default": "16:9"}),
|
|
184
181
|
},
|
|
185
182
|
}
|
|
186
183
|
|
|
@@ -294,7 +294,16 @@ class PromptServer(Command):
|
|
|
294
294
|
|
|
295
295
|
try:
|
|
296
296
|
real_out = decode_data(out)
|
|
297
|
-
|
|
297
|
+
out_lst = []
|
|
298
|
+
for x in real_out:
|
|
299
|
+
if (
|
|
300
|
+
x is None
|
|
301
|
+
): # ref: https://github.com/siliconflow/comfybridge/blob/ecf2e835d4db9816514078f9eed98ab8ba12e23e/custom_plugins/comfy_pipeline/executor.py#L75-L78
|
|
302
|
+
out_lst.append(None)
|
|
303
|
+
else:
|
|
304
|
+
# ref: https://github.com/comfyanonymous/ComfyUI/blob/c170fd2db598a0bdce56f80e22e83e10ad731421/execution.py#L312
|
|
305
|
+
out_lst.append(x[0])
|
|
306
|
+
return out_lst
|
|
298
307
|
except Exception as e:
|
|
299
308
|
print("Exception occurred while decoding data")
|
|
300
309
|
self.cache_manager.delete(sh256)
|
bizyengine/version.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.2.
|
|
1
|
+
1.2.62
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: bizyengine
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.62
|
|
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,5 +1,5 @@
|
|
|
1
1
|
bizyengine/__init__.py,sha256=GP9V-JM07fz7uv_qTB43QEA2rKdrVJxi5I7LRnn_3ZQ,914
|
|
2
|
-
bizyengine/version.txt,sha256=
|
|
2
|
+
bizyengine/version.txt,sha256=zUWeA1gNtlzFoKLob_0bWjUfLVtRINOQpbLG8I_8QNU,7
|
|
3
3
|
bizyengine/bizy_server/__init__.py,sha256=SP9oSblnPo4KQyh7yOGD26YCskFAcQHAZy04nQBNRIw,200
|
|
4
4
|
bizyengine/bizy_server/api_client.py,sha256=Z7G5IjaEqSJkF6nLLw2R3bpgBAOi5ClQiUbel6NMXmE,43932
|
|
5
5
|
bizyengine/bizy_server/errno.py,sha256=RIyvegX3lzpx_1L1q2XVvu3on0kvYgKiUQ8U3ZtyF68,16823
|
|
@@ -41,7 +41,7 @@ bizyengine/bizyair_extras/nodes_trellis.py,sha256=GqSRM8FobuziOIxwyAs3BLztpjVIP4
|
|
|
41
41
|
bizyengine/bizyair_extras/nodes_ultimatesdupscale.py,sha256=-_SsLTAWAQDv4uw-4Z7IGP2tXTe73BJ3N5D6RqVVAK4,4133
|
|
42
42
|
bizyengine/bizyair_extras/nodes_upscale_model.py,sha256=lrzA1BFI2w5aEPCmNPMh07s-WDzG-xTT49uU6WCnlP8,1151
|
|
43
43
|
bizyengine/bizyair_extras/nodes_utils.py,sha256=whog_tmV-q7JvLEdb03JL3KKsC7wKe3kImzx_jPaQD8,2613
|
|
44
|
-
bizyengine/bizyair_extras/nodes_veo3.py,sha256=
|
|
44
|
+
bizyengine/bizyair_extras/nodes_veo3.py,sha256=NLPDBc2FMLNytD_qtP6Z0s5vwG3SJd5MR7H9BhXk4KI,10869
|
|
45
45
|
bizyengine/bizyair_extras/nodes_wan_api.py,sha256=nPTbPf6NU5ykCk43O49gLnjzIfOBsR5jjL0ON95n-nM,11265
|
|
46
46
|
bizyengine/bizyair_extras/nodes_wan_i2v.py,sha256=3XwcxLHmgrihgXDEzcVOjU6VjqnZa3mErINlY014PFA,8435
|
|
47
47
|
bizyengine/bizyair_extras/nodes_wan_video.py,sha256=aE2JBF0ZT-6BOM0bGu9R4yZ_eMeMnnjCW-YzFe4qg8Q,2804
|
|
@@ -74,7 +74,7 @@ bizyengine/core/commands/invoker.py,sha256=8wcIMd8k44o96LAvxFrIiKOlVtf1MW-AcMDXs
|
|
|
74
74
|
bizyengine/core/commands/processors/model_hosting_processor.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
75
75
|
bizyengine/core/commands/processors/prompt_processor.py,sha256=jG0EuphvtycH5Dm-frBGtlIcxkTCXiFMQ1vFMvi_Re0,4963
|
|
76
76
|
bizyengine/core/commands/servers/model_server.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
77
|
-
bizyengine/core/commands/servers/prompt_server.py,sha256=
|
|
77
|
+
bizyengine/core/commands/servers/prompt_server.py,sha256=5R4a5EU5z5lqGNoDlGRtUGGHRojFWAtm3rdslqxpebU,11366
|
|
78
78
|
bizyengine/core/common/__init__.py,sha256=GicZw6YeAZk1PsKmFDt9dm1F75zPUlpia9Q_ki5vW1Y,179
|
|
79
79
|
bizyengine/core/common/caching.py,sha256=hRNsSrfNxgc1zzvBzLVjMY0iMkKqA0TBCr-iYhEpzik,6946
|
|
80
80
|
bizyengine/core/common/client.py,sha256=5wp_gsyvnSQxETCjUayYe536taOhaVP0zonPvW_asdA,10701
|
|
@@ -97,7 +97,7 @@ bizyengine/misc/route_sam.py,sha256=-bMIR2QalfnszipGxSxvDAHGJa5gPSrjkYPb5baaRg4,
|
|
|
97
97
|
bizyengine/misc/segment_anything.py,sha256=wNKYwlYPMszfwj23524geFZJjZaG4eye65SGaUnh77I,8941
|
|
98
98
|
bizyengine/misc/supernode.py,sha256=STN9gaxfTSErH8OiHeZa47d8z-G9S0I7fXuJvHQOBFM,4532
|
|
99
99
|
bizyengine/misc/utils.py,sha256=nXXTPkj4WBvds4EWjI9c-ydeWwmXl8Vwrdu-4Fh62g8,12914
|
|
100
|
-
bizyengine-1.2.
|
|
101
|
-
bizyengine-1.2.
|
|
102
|
-
bizyengine-1.2.
|
|
103
|
-
bizyengine-1.2.
|
|
100
|
+
bizyengine-1.2.62.dist-info/METADATA,sha256=AiavTqRuUnlVW-LJP6AqJ7ftxqV7GUmeXd3AxjGMUDs,735
|
|
101
|
+
bizyengine-1.2.62.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
102
|
+
bizyengine-1.2.62.dist-info/top_level.txt,sha256=2zapzqxX-we5cRyJkGf9bd5JinRtXp3-_uDI-xCAnc0,11
|
|
103
|
+
bizyengine-1.2.62.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|