bizyengine 1.2.77__py3-none-any.whl → 1.2.79__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.
@@ -0,0 +1,269 @@
1
+ from bizyairsdk import tensor_to_bytesio
2
+
3
+ from .trd_nodes_base import BizyAirTrdApiBaseNode
4
+
5
+
6
+ class VIDU_Q1_T2V_API(BizyAirTrdApiBaseNode):
7
+ NODE_DISPLAY_NAME = "Vidu Q1 Text To Video"
8
+ RETURN_TYPES = ("VIDEO", """{"vidu-q1-text2video": "vidu-q1"}""")
9
+ RETURN_NAMES = ("video", "bizyair_model_name")
10
+ CATEGORY = "☁️BizyAir/External APIs/Vidu"
11
+
12
+ @classmethod
13
+ def INPUT_TYPES(cls):
14
+ return {
15
+ "required": {
16
+ "prompt": (
17
+ "STRING",
18
+ {
19
+ "multiline": True,
20
+ "default": "",
21
+ },
22
+ ),
23
+ "seed": ("INT", {"default": 0, "min": 0, "max": 2147483647}),
24
+ "style": (["general", "anime"], {"default": "general"}),
25
+ "duration": ([5], {"default": 5}),
26
+ "aspect_ratio": (["16:9", "9:16", "1:1"], {"default": "16:9"}),
27
+ "resolution": (["1080p"], {"default": "1080p"}),
28
+ "movement_amplitude": (
29
+ ["auto", "small", "medium", "large"],
30
+ {"default": "auto", "tooltip": "画面中物体的运动幅度。"},
31
+ ),
32
+ "bgm": (
33
+ "BOOLEAN",
34
+ {
35
+ "default": False,
36
+ "tooltip": "当设置为 true 时,系统将自动添加合适的 BGM。BGM 无时长限制,系统会自动适配。",
37
+ },
38
+ ),
39
+ },
40
+ }
41
+
42
+ def handle_inputs(self, headers, prompt_id, **kwargs):
43
+ prompt = kwargs.get("prompt", "")
44
+ seed = kwargs.get("seed", 0)
45
+ style = kwargs.get("style", "general")
46
+ duration = kwargs.get("duration", 5)
47
+ aspect_ratio = kwargs.get("aspect_ratio", "16:9")
48
+ resolution = kwargs.get("resolution", "1080p")
49
+ movement_amplitude = kwargs.get("movement_amplitude", "auto")
50
+ bgm = kwargs.get("bgm", False)
51
+ if len(prompt) > 1500:
52
+ raise ValueError("Prompt must be less than 1500 characters")
53
+ data = {
54
+ "prompt": prompt,
55
+ "seed": seed,
56
+ "style": style,
57
+ "duration": duration,
58
+ "aspect_ratio": aspect_ratio,
59
+ "resolution": resolution,
60
+ "movement_amplitude": movement_amplitude,
61
+ "bgm": bgm,
62
+ "model": "vidu-q1-text2video",
63
+ }
64
+ return data, "vidu-q1"
65
+
66
+ def handle_outputs(self, outputs):
67
+ return (outputs[0][0], "")
68
+
69
+
70
+ class VIDU_Q1_I2V_API(BizyAirTrdApiBaseNode):
71
+ NODE_DISPLAY_NAME = "Vidu Q1 Image To Video"
72
+ RETURN_TYPES = ("VIDEO", """{"vidu-q1-img2video": "vidu-q1"}""")
73
+ RETURN_NAMES = ("video", "bizyair_model_name")
74
+ CATEGORY = "☁️BizyAir/External APIs/Vidu"
75
+
76
+ @classmethod
77
+ def INPUT_TYPES(cls):
78
+ return {
79
+ "required": {
80
+ "prompt": (
81
+ "STRING",
82
+ {
83
+ "multiline": True,
84
+ "default": "",
85
+ },
86
+ ),
87
+ "first_frame_image": ("IMAGE",),
88
+ "seed": ("INT", {"default": 0, "min": 0, "max": 2147483647}),
89
+ "duration": ([5], {"default": 5}),
90
+ "resolution": (["1080p"], {"default": "1080p"}),
91
+ "movement_amplitude": (
92
+ ["auto", "small", "medium", "large"],
93
+ {"default": "auto", "tooltip": "画面中物体的运动幅度。"},
94
+ ),
95
+ "bgm": (
96
+ "BOOLEAN",
97
+ {
98
+ "default": False,
99
+ "tooltip": "当设置为 true 时,系统将自动添加合适的 BGM。BGM 无时长限制,系统会自动适配。",
100
+ },
101
+ ),
102
+ },
103
+ "optional": {
104
+ "last_frame_image": ("IMAGE",),
105
+ },
106
+ }
107
+
108
+ def handle_inputs(self, headers, prompt_id, **kwargs):
109
+ prompt = kwargs.get("prompt", "")
110
+ seed = kwargs.get("seed", 0)
111
+ duration = kwargs.get("duration", 5)
112
+ resolution = kwargs.get("resolution", "1080p")
113
+ movement_amplitude = kwargs.get("movement_amplitude", "auto")
114
+ bgm = kwargs.get("bgm", False)
115
+ first_frame_image = kwargs.get("first_frame_image", None)
116
+ last_frame_image = kwargs.get("last_frame_image", None)
117
+ if len(prompt) > 1500:
118
+ raise ValueError("Prompt must be less than 1500 characters")
119
+ if first_frame_image is None:
120
+ raise ValueError("First frame image is required")
121
+ images = []
122
+ total_size = 0
123
+ model = "vidu-q1-img2video"
124
+ # 上传首帧图片
125
+ bio = tensor_to_bytesio(image=first_frame_image, total_pixels=4096 * 4096)
126
+ length = bio.getbuffer().nbytes
127
+ total_size += length
128
+ if total_size > 50 * 1024 * 1024:
129
+ raise ValueError(
130
+ "Image size is too large, Vidu Q1 only supports images up to 50MB"
131
+ )
132
+ first_frame_image_url = self.upload_file(
133
+ bio,
134
+ f"{prompt_id}_first.png",
135
+ headers,
136
+ )
137
+ images.append(first_frame_image_url)
138
+ if last_frame_image is not None:
139
+ # 上传末帧图片
140
+ bio = tensor_to_bytesio(image=last_frame_image, total_pixels=4096 * 4096)
141
+ length = bio.getbuffer().nbytes
142
+ total_size += length
143
+ if total_size > 50 * 1024 * 1024:
144
+ raise ValueError(
145
+ "Image size is too large, Vidu Q1 only supports images up to 50MB"
146
+ )
147
+ last_frame_image_url = self.upload_file(
148
+ bio,
149
+ f"{prompt_id}_last.png",
150
+ headers,
151
+ )
152
+ images.append(last_frame_image_url)
153
+ model = "vidu-q1-startend2video"
154
+
155
+ data = {
156
+ "prompt": prompt,
157
+ "seed": seed,
158
+ "duration": duration,
159
+ "resolution": resolution,
160
+ "movement_amplitude": movement_amplitude,
161
+ "bgm": bgm,
162
+ "model": model,
163
+ "images": images,
164
+ }
165
+ return data, "vidu-q1"
166
+
167
+ def handle_outputs(self, outputs):
168
+ return (outputs[0][0], "")
169
+
170
+
171
+ class VIDU_Q1_I2V_REF_API(BizyAirTrdApiBaseNode):
172
+ NODE_DISPLAY_NAME = "Vidu Q1 Reference Images To Video"
173
+ RETURN_TYPES = ("VIDEO", """{"vidu-q1-reference2video": "vidu-q1"}""")
174
+ RETURN_NAMES = ("video", "bizyair_model_name")
175
+ CATEGORY = "☁️BizyAir/External APIs/Vidu"
176
+
177
+ @classmethod
178
+ def INPUT_TYPES(cls):
179
+ return {
180
+ "required": {
181
+ "prompt": (
182
+ "STRING",
183
+ {
184
+ "multiline": True,
185
+ "default": "",
186
+ },
187
+ ),
188
+ "ref_image_1": ("IMAGE",),
189
+ "seed": ("INT", {"default": 0, "min": 0, "max": 2147483647}),
190
+ "duration": ([5], {"default": 5}),
191
+ "resolution": (["1080p"], {"default": "1080p"}),
192
+ "movement_amplitude": (
193
+ ["auto", "small", "medium", "large"],
194
+ {"default": "auto", "tooltip": "画面中物体的运动幅度。"},
195
+ ),
196
+ "bgm": (
197
+ "BOOLEAN",
198
+ {
199
+ "default": False,
200
+ "tooltip": "当设置为 true 时,系统将自动添加合适的 BGM。BGM 无时长限制,系统会自动适配。",
201
+ },
202
+ ),
203
+ },
204
+ "optional": {
205
+ "ref_image_2": ("IMAGE",),
206
+ "ref_image_3": ("IMAGE",),
207
+ "ref_image_4": ("IMAGE",),
208
+ "ref_image_5": ("IMAGE",),
209
+ "ref_image_6": ("IMAGE",),
210
+ "ref_image_7": ("IMAGE",),
211
+ },
212
+ }
213
+
214
+ def handle_inputs(self, headers, prompt_id, **kwargs):
215
+ prompt = kwargs.get("prompt", "")
216
+ seed = kwargs.get("seed", 0)
217
+ duration = kwargs.get("duration", 5)
218
+ resolution = kwargs.get("resolution", "1080p")
219
+ movement_amplitude = kwargs.get("movement_amplitude", "auto")
220
+ bgm = kwargs.get("bgm", False)
221
+ if len(prompt) > 1500:
222
+ raise ValueError("Prompt must be less than 1500 characters")
223
+ bios = []
224
+ images = []
225
+ total_size = 0
226
+ # 上传图片
227
+ for i, img in enumerate(
228
+ [
229
+ kwargs.get("ref_image_1", None),
230
+ kwargs.get("ref_image_2", None),
231
+ kwargs.get("ref_image_3", None),
232
+ kwargs.get("ref_image_4", None),
233
+ kwargs.get("ref_image_5", None),
234
+ kwargs.get("ref_image_6", None),
235
+ kwargs.get("ref_image_7", None),
236
+ ],
237
+ 1,
238
+ ):
239
+ if img is not None:
240
+ bio = tensor_to_bytesio(image=img, total_pixels=4096 * 4096)
241
+ length = bio.getbuffer().nbytes
242
+ total_size += length
243
+ if total_size > 50 * 1024 * 1024:
244
+ raise ValueError(
245
+ "Image size is too large, Vidu Q1 only supports images up to 50MB"
246
+ )
247
+ bios.append(bio)
248
+ for i, bio in enumerate(bios):
249
+ url = self.upload_file(
250
+ bio,
251
+ f"{prompt_id}_ref_{i+1}.png",
252
+ headers,
253
+ )
254
+ images.append(url)
255
+
256
+ data = {
257
+ "prompt": prompt,
258
+ "seed": seed,
259
+ "duration": duration,
260
+ "resolution": resolution,
261
+ "movement_amplitude": movement_amplitude,
262
+ "bgm": bgm,
263
+ "model": "vidu-q1-reference2video",
264
+ "images": images,
265
+ }
266
+ return data, "vidu-q1"
267
+
268
+ def handle_outputs(self, outputs):
269
+ return (outputs[0][0], "")
@@ -51,8 +51,12 @@ class Wan_V2_5_I2V_API(BizyAirTrdApiBaseNode):
51
51
  }
52
52
 
53
53
  NODE_DISPLAY_NAME = "Wan2.5 Image To Video"
54
- RETURN_TYPES = ("VIDEO", "STRING")
55
- RETURN_NAMES = ("video", "actual_prompt")
54
+ RETURN_TYPES = (
55
+ "VIDEO",
56
+ "STRING",
57
+ """{"wan2.5-i2v-preview": "wan2.5-i2v-preview"}""",
58
+ )
59
+ RETURN_NAMES = ("video", "actual_prompt", "bizyair_model_name")
56
60
  CATEGORY = "☁️BizyAir/External APIs/WanVideo"
57
61
 
58
62
  def handle_inputs(self, headers, prompt_id, **kwargs):
@@ -96,7 +100,7 @@ class Wan_V2_5_I2V_API(BizyAirTrdApiBaseNode):
96
100
  return input, model
97
101
 
98
102
  def handle_outputs(self, outputs):
99
- return (outputs[0][0],)
103
+ return (outputs[0][0], "")
100
104
 
101
105
 
102
106
  class Wan_V2_5_T2V_API(BizyAirTrdApiBaseNode):
@@ -158,8 +162,12 @@ class Wan_V2_5_T2V_API(BizyAirTrdApiBaseNode):
158
162
  }
159
163
 
160
164
  NODE_DISPLAY_NAME = "Wan2.5 Text To Video"
161
- RETURN_TYPES = ("VIDEO", "STRING")
162
- RETURN_NAMES = ("video", "actual_prompt")
165
+ RETURN_TYPES = (
166
+ "VIDEO",
167
+ "STRING",
168
+ """"{"wan2.5-t2v-preview": "wan2.5-t2v-preview"}""",
169
+ )
170
+ RETURN_NAMES = ("video", "actual_prompt", "bizyair_model_name")
163
171
  CATEGORY = "☁️BizyAir/External APIs/WanVideo"
164
172
 
165
173
  def handle_inputs(self, headers, prompt_id, **kwargs):
@@ -195,7 +203,7 @@ class Wan_V2_5_T2V_API(BizyAirTrdApiBaseNode):
195
203
  return input, model
196
204
 
197
205
  def handle_outputs(self, outputs):
198
- return (outputs[0][0],)
206
+ return (outputs[0][0], "")
199
207
 
200
208
 
201
209
  class Wan_V2_6_I2V_API(BizyAirTrdApiBaseNode):
@@ -251,8 +259,8 @@ class Wan_V2_6_I2V_API(BizyAirTrdApiBaseNode):
251
259
  }
252
260
 
253
261
  NODE_DISPLAY_NAME = "Wan2.6 Image To Video"
254
- RETURN_TYPES = ("VIDEO", "STRING")
255
- RETURN_NAMES = ("video", "actual_prompt")
262
+ RETURN_TYPES = ("VIDEO", "STRING", """{"wan2.6-i2v": "wan2.6-i2v"}""")
263
+ RETURN_NAMES = ("video", "actual_prompt", "bizyair_model_name")
256
264
  CATEGORY = "☁️BizyAir/External APIs/WanVideo"
257
265
 
258
266
  def handle_inputs(self, headers, prompt_id, **kwargs):
@@ -298,7 +306,7 @@ class Wan_V2_6_I2V_API(BizyAirTrdApiBaseNode):
298
306
  return input, model
299
307
 
300
308
  def handle_outputs(self, outputs):
301
- return (outputs[0][0],)
309
+ return (outputs[0][0], "")
302
310
 
303
311
 
304
312
  class Wan_V2_6_T2V_API(BizyAirTrdApiBaseNode):
@@ -364,8 +372,8 @@ class Wan_V2_6_T2V_API(BizyAirTrdApiBaseNode):
364
372
  }
365
373
 
366
374
  NODE_DISPLAY_NAME = "Wan2.6 Text To Video"
367
- RETURN_TYPES = ("VIDEO", "STRING")
368
- RETURN_NAMES = ("video", "actual_prompt")
375
+ RETURN_TYPES = ("VIDEO", "STRING", """{"wan2.6-t2v": "wan2.6-t2v"}""")
376
+ RETURN_NAMES = ("video", "actual_prompt", "bizyair_model_name")
369
377
  CATEGORY = "☁️BizyAir/External APIs/WanVideo"
370
378
 
371
379
  def handle_inputs(self, headers, prompt_id, **kwargs):
@@ -403,4 +411,4 @@ class Wan_V2_6_T2V_API(BizyAirTrdApiBaseNode):
403
411
  return input, model
404
412
 
405
413
  def handle_outputs(self, outputs):
406
- return (outputs[0][0],)
414
+ return (outputs[0][0], "")
@@ -196,6 +196,7 @@ class BizyAirTrdApiBaseNode(BizyAirMiscBaseNode, TrdBase):
196
196
  # 可以认为图片输入都是List[Batch]
197
197
  images = kwargs.get(f"image_{i + 1}", None)
198
198
  for _, img_batch in enumerate(images if images is not None else []):
199
- total += img_batch.shape[0]
200
- extra_images.append(img_batch)
199
+ if img_batch is not None:
200
+ total += img_batch.shape[0]
201
+ extra_images.append(img_batch)
201
202
  return (extra_images, total)
bizyengine/version.txt CHANGED
@@ -1 +1 @@
1
- 1.2.77
1
+ 1.2.79
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bizyengine
3
- Version: 1.2.77
3
+ Version: 1.2.79
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,13 +1,13 @@
1
1
  bizyengine/__init__.py,sha256=GP9V-JM07fz7uv_qTB43QEA2rKdrVJxi5I7LRnn_3ZQ,914
2
- bizyengine/version.txt,sha256=jgjXi4gpvDak_oc4lNqmFXG-uh20Gz7PivgcatO_r5s,7
2
+ bizyengine/version.txt,sha256=hzCs2R7AhcMysHC2BuADSm6JsaaiFKeUsTn-jBDtwdg,6
3
3
  bizyengine/bizy_server/__init__.py,sha256=SP9oSblnPo4KQyh7yOGD26YCskFAcQHAZy04nQBNRIw,200
4
- bizyengine/bizy_server/api_client.py,sha256=a2OaFe2kJSQ1aZk15Es5Pg6sNl2qLt_nh3-IezbfVNk,42872
5
- bizyengine/bizy_server/errno.py,sha256=xbQVryHlGTMgQ2msyqM89BL7OmD9md8d4bi3jgcgD4k,17147
4
+ bizyengine/bizy_server/api_client.py,sha256=vNBUkFNMjPI_F_wAGiN-ydCZO8oLdgyWBlMY1DQbHOk,43685
5
+ bizyengine/bizy_server/errno.py,sha256=8dzmtlqq0wBJguHAXKEDb_uUYUQ7qlZQK6FxOpMxqLg,17328
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
8
  bizyengine/bizy_server/profile.py,sha256=f4juAzJ73gCm0AhagYpt9WnG8HEI6xze_U96-omBLqU,3044
9
9
  bizyengine/bizy_server/resp.py,sha256=iOFT5Ud7VJBP2uqkojJIgc3y2ifMjjEXoj0ewneL9lc,710
10
- bizyengine/bizy_server/server.py,sha256=tdr_Um6aRed1YVMo7D9TpUyAu1ZQEyiHbQhyDfhtVoY,57877
10
+ bizyengine/bizy_server/server.py,sha256=5wreS4aMPLec8VCBpEk3XEHl7i_cyW3r8CZtZMmb3zQ,59127
11
11
  bizyengine/bizy_server/stream_response.py,sha256=H2XHqlVRtQMhgdztAuG7l8-iV_Pm42u2x6WJ0gNVIW0,9654
12
12
  bizyengine/bizy_server/utils.py,sha256=t3y3ZTDzFa8K4wXlzgLVaFNCizgylsKsd9K3rLL4sGw,3986
13
13
  bizyengine/bizyair_extras/__init__.py,sha256=9iPmEyR7F1IXbUaBNS90ivW9ul18GcuWFxRfFv2ieAw,1011
@@ -45,17 +45,18 @@ bizyengine/bizyair_extras/nodes_ipadapter_plus/__init__.py,sha256=ECKATm_EKi_4G4
45
45
  bizyengine/bizyair_extras/nodes_ipadapter_plus/nodes_ipadapter_plus.py,sha256=lOKRem7oiPs8ZkA_p68HxagAgiCSvn3Rk-L4fSXIjyE,54846
46
46
  bizyengine/bizyair_extras/nodes_kolors_mz/__init__.py,sha256=HsCCCphW8q0SrWEiFlZKK_W2lQr1T0UJIJL7gEn37ME,3729
47
47
  bizyengine/bizyair_extras/oauth_callback/main.py,sha256=KQOZWor3kyNx8xvUNHYNMoHfCF9g_ht13_iPk4K_5YM,3633
48
- bizyengine/bizyair_extras/third_party_api/__init__.py,sha256=etiPBCIxOBD6hbrVhdivaRVOPrAp6z79YDWyJgqr_b4,320
49
- bizyengine/bizyair_extras/third_party_api/nodes_doubao.py,sha256=3Pdeerx0jcxpHw0Qo_jte8h_sSR6YT0msmb2d_8Z21g,20951
50
- bizyengine/bizyair_extras/third_party_api/nodes_flux.py,sha256=9o7imVDn9qXnUokkAjTH9yNdpXwcuQ8p3rsv5Y5eywQ,6135
51
- bizyengine/bizyair_extras/third_party_api/nodes_gemini.py,sha256=uI0PnSwoCUvn5_J2gK8X_ZcjvTMhnfO7X0NyZwWLl3M,17335
52
- bizyengine/bizyair_extras/third_party_api/nodes_gpt.py,sha256=pvIlwjjHnk_XCa4eJERBcsWonaBd24xP0jFVQLJXdQc,3098
53
- bizyengine/bizyair_extras/third_party_api/nodes_hailuo.py,sha256=hBmt6AHVXzsbO-Uq3Go-06yNLocV6sCtutKCVUz4P9E,3746
54
- bizyengine/bizyair_extras/third_party_api/nodes_kling.py,sha256=zyQF9NM0vnOeOzuCayj3oA2x_s9Nm-S23YcgGuiC5ig,18796
55
- bizyengine/bizyair_extras/third_party_api/nodes_sora.py,sha256=alxI3zNDSUKdc2IOOv5csIWFcHSAqL_55H9Zp4BdcN4,6976
56
- bizyengine/bizyair_extras/third_party_api/nodes_veo3.py,sha256=H-6zWsUSTKaMMIUrMaH205-hnegvXxs1SQmKi4uY8rI,6489
57
- bizyengine/bizyair_extras/third_party_api/nodes_wan_api.py,sha256=S6xUhiK2bvgRdBklLBw1ANeu5e_8qgd4Xp1aBgHapp8,14169
58
- bizyengine/bizyair_extras/third_party_api/trd_nodes_base.py,sha256=s4v8sPyvSu9-GaPQFFKq3w6V5uqQnciFgq7nrQGECiI,7895
48
+ bizyengine/bizyair_extras/third_party_api/__init__.py,sha256=jAZrTdBSVg3TielWoAUWUqWonBwoKZQ-jLQ07JzOHx8,339
49
+ bizyengine/bizyair_extras/third_party_api/nodes_doubao.py,sha256=d_1HMZEJ0eMftp4Ln0EI6A53leClqnSCf3J6Fwb2pwM,21687
50
+ bizyengine/bizyair_extras/third_party_api/nodes_flux.py,sha256=iv9V7-ijKGgR5_n8BlIe4E7QjWSGvWkIIUDMOn_3t1s,6339
51
+ bizyengine/bizyair_extras/third_party_api/nodes_gemini.py,sha256=tRjAGNJsJkYPXhlBREJd3jxPr4lF533Q_XMMHNIeXNM,17910
52
+ bizyengine/bizyair_extras/third_party_api/nodes_gpt.py,sha256=IwIvMiKU1h917w42NNCXM7o7VF1Bjm7hPEhwGeWGTOw,3220
53
+ bizyengine/bizyair_extras/third_party_api/nodes_hailuo.py,sha256=KtiRYeV5uCjLrXwFJ4gyuSrVSUWXmVVVL-pQR0gw8sA,3912
54
+ bizyengine/bizyair_extras/third_party_api/nodes_kling.py,sha256=ZxQB99O7E41lA25fRTuBY0sgrfNTlw1hmYxFU3eBgnk,29290
55
+ bizyengine/bizyair_extras/third_party_api/nodes_sora.py,sha256=_-O37uRi5QHqJZqlJ3QzoNHYxZH4zv79-0cBYuZHer4,7132
56
+ bizyengine/bizyair_extras/third_party_api/nodes_veo3.py,sha256=LzZl-9iLMe5IzEAXYUVkb8RUPLAfZloTPxRgGcY7Hsg,6703
57
+ bizyengine/bizyair_extras/third_party_api/nodes_vidu.py,sha256=-Eo2su0-t9qNPa5J4Qt3fx8xM9NjFHmgl19gMcTU7nM,10012
58
+ bizyengine/bizyair_extras/third_party_api/nodes_wan_api.py,sha256=GNc616NNsXcZYtojO2XTHwU3AFiprX6tFJ7qu3s2jgc,14508
59
+ bizyengine/bizyair_extras/third_party_api/trd_nodes_base.py,sha256=xu1q3cMprsfhjQPTQvzS2HqkrteWAgBx-nzqqGsy4gA,7945
59
60
  bizyengine/bizyair_extras/utils/aliyun_oss.py,sha256=H6wGZq1DqP7BHJ_frBJVvUVttgXprJprOnxytePIuos,3050
60
61
  bizyengine/bizyair_extras/utils/audio.py,sha256=cCmX080jtxsHFa7mCgn13R6cyfqE-1Gq37ZnRJdZNU8,3183
61
62
  bizyengine/bizybot/__init__.py,sha256=NINN_7QECKQwtAwKPBTrrSiAK6KbxaZCkIvJ-e1J1xk,262
@@ -103,7 +104,7 @@ bizyengine/misc/route_sam.py,sha256=-bMIR2QalfnszipGxSxvDAHGJa5gPSrjkYPb5baaRg4,
103
104
  bizyengine/misc/segment_anything.py,sha256=wNKYwlYPMszfwj23524geFZJjZaG4eye65SGaUnh77I,8941
104
105
  bizyengine/misc/supernode.py,sha256=STN9gaxfTSErH8OiHeZa47d8z-G9S0I7fXuJvHQOBFM,4532
105
106
  bizyengine/misc/utils.py,sha256=GMRWKhOP-MCueVyCO-doflb7dH5dM32DyLcSPEVOXWA,13333
106
- bizyengine-1.2.77.dist-info/METADATA,sha256=bPL9bUbVuQ1bO_Az3StZsew7-y16gt-HB6fms6iVZ40,735
107
- bizyengine-1.2.77.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
108
- bizyengine-1.2.77.dist-info/top_level.txt,sha256=2zapzqxX-we5cRyJkGf9bd5JinRtXp3-_uDI-xCAnc0,11
109
- bizyengine-1.2.77.dist-info/RECORD,,
107
+ bizyengine-1.2.79.dist-info/METADATA,sha256=lghNQOnWnTwRzlHfPUbopuse0vAvDcoyKs4iUCkrV9w,735
108
+ bizyengine-1.2.79.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
109
+ bizyengine-1.2.79.dist-info/top_level.txt,sha256=2zapzqxX-we5cRyJkGf9bd5JinRtXp3-_uDI-xCAnc0,11
110
+ bizyengine-1.2.79.dist-info/RECORD,,