bizyengine 1.2.57__py3-none-any.whl → 1.2.58__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 +4 -2
- bizyengine/core/common/client.py +1 -1
- bizyengine/misc/utils.py +1 -1
- bizyengine/version.txt +1 -1
- {bizyengine-1.2.57.dist-info → bizyengine-1.2.58.dist-info}/METADATA +1 -1
- {bizyengine-1.2.57.dist-info → bizyengine-1.2.58.dist-info}/RECORD +8 -8
- {bizyengine-1.2.57.dist-info → bizyengine-1.2.58.dist-info}/WHEEL +0 -0
- {bizyengine-1.2.57.dist-info → bizyengine-1.2.58.dist-info}/top_level.txt +0 -0
|
@@ -143,9 +143,10 @@ class Wan_V2_5_I2V_API(BizyAirBaseNode):
|
|
|
143
143
|
if "output" not in api_resp or "video_url" not in api_resp["output"]:
|
|
144
144
|
raise ValueError(f"Invalid response: {api_resp}")
|
|
145
145
|
video_url = api_resp["output"]["video_url"]
|
|
146
|
+
logging.info(f"video_url: {video_url}")
|
|
146
147
|
actual_prompt = api_resp["output"].get("actual_prompt", prompt)
|
|
147
148
|
# 下载视频
|
|
148
|
-
video_resp = requests.get(video_url, stream=True, timeout=
|
|
149
|
+
video_resp = requests.get(video_url, stream=True, timeout=3600)
|
|
149
150
|
video_resp.raise_for_status() # 非 2xx 会抛异常
|
|
150
151
|
return (VideoFromFile(io.BytesIO(video_resp.content)), actual_prompt)
|
|
151
152
|
|
|
@@ -282,8 +283,9 @@ class Wan_V2_5_T2V_API(BizyAirBaseNode):
|
|
|
282
283
|
if "output" not in api_resp or "video_url" not in api_resp["output"]:
|
|
283
284
|
raise ValueError(f"Invalid response: {api_resp}")
|
|
284
285
|
video_url = api_resp["output"]["video_url"]
|
|
286
|
+
logging.info(f"video_url: {video_url}")
|
|
285
287
|
actual_prompt = api_resp["output"].get("actual_prompt", prompt)
|
|
286
288
|
# 下载视频
|
|
287
|
-
video_resp = requests.get(video_url, stream=True, timeout=
|
|
289
|
+
video_resp = requests.get(video_url, stream=True, timeout=3600)
|
|
288
290
|
video_resp.raise_for_status() # 非 2xx 会抛异常
|
|
289
291
|
return (VideoFromFile(io.BytesIO(video_resp.content)), actual_prompt)
|
bizyengine/core/common/client.py
CHANGED
|
@@ -160,7 +160,7 @@ def send_request(
|
|
|
160
160
|
req = urllib.request.Request(
|
|
161
161
|
url, data=data, headers=headers, method=method, **kwargs
|
|
162
162
|
)
|
|
163
|
-
with urllib.request.urlopen(req, timeout=
|
|
163
|
+
with urllib.request.urlopen(req, timeout=3600) as response:
|
|
164
164
|
response_data = response.read().decode("utf-8")
|
|
165
165
|
|
|
166
166
|
except urllib.error.URLError as e:
|
bizyengine/misc/utils.py
CHANGED
|
@@ -43,7 +43,7 @@ def send_post_request(api_url, payload, headers):
|
|
|
43
43
|
try:
|
|
44
44
|
data = json.dumps(payload).encode("utf-8")
|
|
45
45
|
req = urllib.request.Request(api_url, data=data, headers=headers, method="POST")
|
|
46
|
-
with urllib.request.urlopen(req, timeout=
|
|
46
|
+
with urllib.request.urlopen(req, timeout=3600) as response:
|
|
47
47
|
response_data = response.read().decode("utf-8")
|
|
48
48
|
return response_data
|
|
49
49
|
except urllib.error.URLError as e:
|
bizyengine/version.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.2.
|
|
1
|
+
1.2.58
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: bizyengine
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.58
|
|
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=GOmifuSbInFqnoj8v1bW8vErzt0ii5bOQn0qEbp5dEg,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=RMC1xUgvNjI6_jdX4gIyiwMvjWrf2yw9gya9axQYUXo,11188
|
|
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
|
|
@@ -75,7 +75,7 @@ bizyengine/core/commands/servers/model_server.py,sha256=47DEQpj8HBSa-_TImW-5JCeu
|
|
|
75
75
|
bizyengine/core/commands/servers/prompt_server.py,sha256=e8JhtKRM8nw0kQwe2Ofl-zQtiVqQdbbWRxOqkFmSclM,10873
|
|
76
76
|
bizyengine/core/common/__init__.py,sha256=GicZw6YeAZk1PsKmFDt9dm1F75zPUlpia9Q_ki5vW1Y,179
|
|
77
77
|
bizyengine/core/common/caching.py,sha256=hRNsSrfNxgc1zzvBzLVjMY0iMkKqA0TBCr-iYhEpzik,6946
|
|
78
|
-
bizyengine/core/common/client.py,sha256=
|
|
78
|
+
bizyengine/core/common/client.py,sha256=5wp_gsyvnSQxETCjUayYe536taOhaVP0zonPvW_asdA,10701
|
|
79
79
|
bizyengine/core/common/env_var.py,sha256=1EAW3gOXY2bKouCqrGa583vTJRdDasQ1IsFTnzDg7Dk,3450
|
|
80
80
|
bizyengine/core/common/utils.py,sha256=Jxk4tCURbUhjYBFuHTiQgeUo2w13TYj4upnPTKNNucM,4215
|
|
81
81
|
bizyengine/core/configs/conf.py,sha256=D_UWG9SSJnK5EhbrfNFryJQ8hUwwdvhOGlq1TielwpI,3830
|
|
@@ -94,8 +94,8 @@ bizyengine/misc/nodes_controlnet_union_sdxl.py,sha256=fYyu_XMY7mcX1Ad9x30q1tYB8m
|
|
|
94
94
|
bizyengine/misc/route_sam.py,sha256=-bMIR2QalfnszipGxSxvDAHGJa5gPSrjkYPb5baaRg4,1561
|
|
95
95
|
bizyengine/misc/segment_anything.py,sha256=wNKYwlYPMszfwj23524geFZJjZaG4eye65SGaUnh77I,8941
|
|
96
96
|
bizyengine/misc/supernode.py,sha256=STN9gaxfTSErH8OiHeZa47d8z-G9S0I7fXuJvHQOBFM,4532
|
|
97
|
-
bizyengine/misc/utils.py,sha256=
|
|
98
|
-
bizyengine-1.2.
|
|
99
|
-
bizyengine-1.2.
|
|
100
|
-
bizyengine-1.2.
|
|
101
|
-
bizyengine-1.2.
|
|
97
|
+
bizyengine/misc/utils.py,sha256=nXXTPkj4WBvds4EWjI9c-ydeWwmXl8Vwrdu-4Fh62g8,12914
|
|
98
|
+
bizyengine-1.2.58.dist-info/METADATA,sha256=xjje03R1xq0NXcgJWKZ916QclolZOmQDmoyk4f7TEkw,734
|
|
99
|
+
bizyengine-1.2.58.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
100
|
+
bizyengine-1.2.58.dist-info/top_level.txt,sha256=2zapzqxX-we5cRyJkGf9bd5JinRtXp3-_uDI-xCAnc0,11
|
|
101
|
+
bizyengine-1.2.58.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|