bizyengine 1.2.54__py3-none-any.whl → 1.2.55__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_wan_api.py +3 -3
- bizyengine/version.txt +1 -1
- {bizyengine-1.2.54.dist-info → bizyengine-1.2.55.dist-info}/METADATA +1 -1
- {bizyengine-1.2.54.dist-info → bizyengine-1.2.55.dist-info}/RECORD +6 -6
- {bizyengine-1.2.54.dist-info → bizyengine-1.2.55.dist-info}/WHEEL +0 -0
- {bizyengine-1.2.54.dist-info → bizyengine-1.2.55.dist-info}/top_level.txt +0 -0
|
@@ -107,14 +107,14 @@ class Wan_V2_5_I2V_API(BizyAirBaseNode):
|
|
|
107
107
|
# 上传图片&音频
|
|
108
108
|
if image is not None:
|
|
109
109
|
oss_token_url = f"{BIZYAIR_X_SERVER}/upload/token?file_name={prompt_id}.png&file_type=inputs"
|
|
110
|
-
token_resp = send_request("GET", oss_token_url)
|
|
110
|
+
token_resp = send_request("GET", oss_token_url, headers=headers)
|
|
111
111
|
auth_info = parse_upload_token(token_resp)
|
|
112
112
|
input["img_url"] = upload_file_without_sdk(
|
|
113
113
|
tensor_to_bytesio(image), **auth_info
|
|
114
114
|
)
|
|
115
115
|
if audio is not None:
|
|
116
116
|
oss_token_url = f"{BIZYAIR_X_SERVER}/upload/token?file_name={prompt_id}.flac&file_type=inputs"
|
|
117
|
-
token_resp = send_request("GET", oss_token_url)
|
|
117
|
+
token_resp = send_request("GET", oss_token_url, headers=headers)
|
|
118
118
|
auth_info = parse_upload_token(token_resp)
|
|
119
119
|
audio_bytes = save_audio(audio)
|
|
120
120
|
input["audio_url"] = upload_file_without_sdk(audio_bytes, **auth_info)
|
|
@@ -253,7 +253,7 @@ class Wan_V2_5_T2V_API(BizyAirBaseNode):
|
|
|
253
253
|
# 上传音频
|
|
254
254
|
if audio is not None:
|
|
255
255
|
oss_token_url = f"{BIZYAIR_X_SERVER}/upload/token?file_name={prompt_id}.flac&file_type=inputs"
|
|
256
|
-
token_resp = send_request("GET", oss_token_url)
|
|
256
|
+
token_resp = send_request("GET", oss_token_url, headers=headers)
|
|
257
257
|
auth_info = parse_upload_token(token_resp)
|
|
258
258
|
audio_bytes = save_audio(audio)
|
|
259
259
|
input["audio_url"] = upload_file_without_sdk(audio_bytes, **auth_info)
|
bizyengine/version.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.2.
|
|
1
|
+
1.2.55
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: bizyengine
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.55
|
|
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=hhQr61vio--euFMt34QKJLejnKYdRuaYW5ZVVyNMlM4,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
|
|
@@ -40,7 +40,7 @@ bizyengine/bizyair_extras/nodes_trellis.py,sha256=GqSRM8FobuziOIxwyAs3BLztpjVIP4
|
|
|
40
40
|
bizyengine/bizyair_extras/nodes_ultimatesdupscale.py,sha256=-_SsLTAWAQDv4uw-4Z7IGP2tXTe73BJ3N5D6RqVVAK4,4133
|
|
41
41
|
bizyengine/bizyair_extras/nodes_upscale_model.py,sha256=lrzA1BFI2w5aEPCmNPMh07s-WDzG-xTT49uU6WCnlP8,1151
|
|
42
42
|
bizyengine/bizyair_extras/nodes_utils.py,sha256=whog_tmV-q7JvLEdb03JL3KKsC7wKe3kImzx_jPaQD8,2613
|
|
43
|
-
bizyengine/bizyair_extras/nodes_wan_api.py,sha256=
|
|
43
|
+
bizyengine/bizyair_extras/nodes_wan_api.py,sha256=lhzkfsLFZPKuBXrJBf0i2t9A2zLB4TxgWIrW8MYJ49g,11088
|
|
44
44
|
bizyengine/bizyair_extras/nodes_wan_i2v.py,sha256=3XwcxLHmgrihgXDEzcVOjU6VjqnZa3mErINlY014PFA,8435
|
|
45
45
|
bizyengine/bizyair_extras/nodes_wan_video.py,sha256=aE2JBF0ZT-6BOM0bGu9R4yZ_eMeMnnjCW-YzFe4qg8Q,2804
|
|
46
46
|
bizyengine/bizyair_extras/route_bizyair_tools.py,sha256=EiP5pS6xoE3tULoNSN2hYZA29vgt7yCErsbRp34gGEg,3898
|
|
@@ -95,7 +95,7 @@ bizyengine/misc/route_sam.py,sha256=-bMIR2QalfnszipGxSxvDAHGJa5gPSrjkYPb5baaRg4,
|
|
|
95
95
|
bizyengine/misc/segment_anything.py,sha256=wNKYwlYPMszfwj23524geFZJjZaG4eye65SGaUnh77I,8941
|
|
96
96
|
bizyengine/misc/supernode.py,sha256=STN9gaxfTSErH8OiHeZa47d8z-G9S0I7fXuJvHQOBFM,4532
|
|
97
97
|
bizyengine/misc/utils.py,sha256=CKduySGSMNGlJMImHyZmN-giABY5VUaB88f6Kq-HAV0,6831
|
|
98
|
-
bizyengine-1.2.
|
|
99
|
-
bizyengine-1.2.
|
|
100
|
-
bizyengine-1.2.
|
|
101
|
-
bizyengine-1.2.
|
|
98
|
+
bizyengine-1.2.55.dist-info/METADATA,sha256=Sk5fsuDIXdpXOa-yfWzWjOICOiGbK6OHRycSPU6Guo0,734
|
|
99
|
+
bizyengine-1.2.55.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
100
|
+
bizyengine-1.2.55.dist-info/top_level.txt,sha256=2zapzqxX-we5cRyJkGf9bd5JinRtXp3-_uDI-xCAnc0,11
|
|
101
|
+
bizyengine-1.2.55.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|