bizyengine 1.2.38__py3-none-any.whl → 1.2.40__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_video.py +36 -0
- bizyengine/core/commands/servers/prompt_server.py +52 -0
- bizyengine/core/common/client.py +3 -0
- bizyengine/core/configs/models.json +96 -66
- bizyengine/core/configs/models.yaml +35 -0
- bizyengine/misc/nodes.py +38 -1
- bizyengine/version.txt +1 -1
- {bizyengine-1.2.38.dist-info → bizyengine-1.2.40.dist-info}/METADATA +1 -1
- {bizyengine-1.2.38.dist-info → bizyengine-1.2.40.dist-info}/RECORD +11 -11
- {bizyengine-1.2.38.dist-info → bizyengine-1.2.40.dist-info}/WHEEL +0 -0
- {bizyengine-1.2.38.dist-info → bizyengine-1.2.40.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,42 @@
|
|
|
1
1
|
from bizyengine.core import BizyAirBaseNode
|
|
2
2
|
|
|
3
3
|
|
|
4
|
+
class WanImageToVideo(BizyAirBaseNode):
|
|
5
|
+
MAX_RESOLUTION = 960
|
|
6
|
+
|
|
7
|
+
@classmethod
|
|
8
|
+
def INPUT_TYPES(s):
|
|
9
|
+
return {
|
|
10
|
+
"required": {
|
|
11
|
+
"positive": ("CONDITIONING",),
|
|
12
|
+
"negative": ("CONDITIONING",),
|
|
13
|
+
"vae": ("VAE",),
|
|
14
|
+
"width": (
|
|
15
|
+
"INT",
|
|
16
|
+
{"default": 832, "min": 16, "max": s.MAX_RESOLUTION, "step": 16},
|
|
17
|
+
),
|
|
18
|
+
"height": (
|
|
19
|
+
"INT",
|
|
20
|
+
{"default": 480, "min": 16, "max": s.MAX_RESOLUTION, "step": 16},
|
|
21
|
+
),
|
|
22
|
+
"length": (
|
|
23
|
+
"INT",
|
|
24
|
+
{"default": 81, "min": 1, "max": s.MAX_RESOLUTION, "step": 4},
|
|
25
|
+
),
|
|
26
|
+
"batch_size": ("INT", {"default": 1, "min": 1, "max": 4096}),
|
|
27
|
+
},
|
|
28
|
+
"optional": {
|
|
29
|
+
"clip_vision_output": ("CLIP_VISION_OUTPUT",),
|
|
30
|
+
"start_image": ("IMAGE",),
|
|
31
|
+
},
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
RETURN_TYPES = ("CONDITIONING", "CONDITIONING", "LATENT")
|
|
35
|
+
RETURN_NAMES = ("positive", "negative", "latent")
|
|
36
|
+
CATEGORY = "WanI2V"
|
|
37
|
+
# FUNCTION = "encode"
|
|
38
|
+
|
|
39
|
+
|
|
4
40
|
class Wan_Model_Loader(BizyAirBaseNode):
|
|
5
41
|
@classmethod
|
|
6
42
|
def INPUT_TYPES(cls):
|
|
@@ -7,8 +7,10 @@ from dataclasses import dataclass, field
|
|
|
7
7
|
from typing import Any, Dict, List
|
|
8
8
|
|
|
9
9
|
import comfy
|
|
10
|
+
import requests
|
|
10
11
|
|
|
11
12
|
from bizyengine.core.commands.base import Command, Processor # type: ignore
|
|
13
|
+
from bizyengine.core.common import client
|
|
12
14
|
from bizyengine.core.common.caching import BizyAirTaskCache, CacheConfig
|
|
13
15
|
from bizyengine.core.common.client import headers, send_request
|
|
14
16
|
from bizyengine.core.common.env_var import (
|
|
@@ -159,6 +161,9 @@ class BizyAirTask:
|
|
|
159
161
|
|
|
160
162
|
|
|
161
163
|
class PromptServer(Command):
|
|
164
|
+
MAX_POLLING_TIME = 60 * 60
|
|
165
|
+
POLLING_INTERVAL = 10
|
|
166
|
+
|
|
162
167
|
cache_manager: BizyAirTaskCache = BizyAirTaskCache(
|
|
163
168
|
config=CacheConfig.from_config(config_manager.get_cache_config())
|
|
164
169
|
)
|
|
@@ -178,8 +183,55 @@ class PromptServer(Command):
|
|
|
178
183
|
and "task_id" in result.get("data", {})
|
|
179
184
|
)
|
|
180
185
|
|
|
186
|
+
def is_fass_task(self, result: Dict[str, Any]) -> bool:
|
|
187
|
+
return (
|
|
188
|
+
result.get("request_id", None) is not None
|
|
189
|
+
and result.get("query_url", None) is not None
|
|
190
|
+
)
|
|
191
|
+
|
|
192
|
+
def _get_fass_result(self, result: Dict[str, Any], **kwargs) -> Dict[str, Any]:
|
|
193
|
+
request_id = result.get("request_id", None)
|
|
194
|
+
query_url = f"{BIZYAIR_SERVER_ADDRESS}/supernode/status?request_id={request_id}"
|
|
195
|
+
return self._poll_fass_for_completion(query_url, **kwargs)
|
|
196
|
+
|
|
197
|
+
def _poll_fass_for_completion(self, query_url, **kwargs):
|
|
198
|
+
start_time = time.time()
|
|
199
|
+
headers = client.headers(api_key=kwargs.get("api_key", None))
|
|
200
|
+
task_failed, failed_reason = False, None
|
|
201
|
+
while time.time() - start_time < self.MAX_POLLING_TIME and not task_failed:
|
|
202
|
+
try:
|
|
203
|
+
resp_body = client.send_request(
|
|
204
|
+
method="GET", url=query_url, headers=headers
|
|
205
|
+
)
|
|
206
|
+
data = resp_body.get("data", {})
|
|
207
|
+
if data.get("status") == "Succeed":
|
|
208
|
+
result_url = data["data_url"]
|
|
209
|
+
result_resp = requests.get(result_url)
|
|
210
|
+
out = result_resp.json()
|
|
211
|
+
return out
|
|
212
|
+
elif data.get("status") == "Failed":
|
|
213
|
+
task_failed, failed_reason = True, f"Task failed: {data}"
|
|
214
|
+
raise RuntimeError(f"Task failed: {data}")
|
|
215
|
+
time.sleep(self.POLLING_INTERVAL)
|
|
216
|
+
except Exception as e:
|
|
217
|
+
if BIZYAIR_DEBUG:
|
|
218
|
+
print(f"Response error: {e}\n{traceback.format_exc()}")
|
|
219
|
+
time.sleep(self.POLLING_INTERVAL)
|
|
220
|
+
|
|
221
|
+
if task_failed:
|
|
222
|
+
raise RuntimeError(f"Task failed: {failed_reason}")
|
|
223
|
+
raise TimeoutError("Task processing timeout")
|
|
224
|
+
|
|
181
225
|
def _get_result(self, result: Dict[str, Any], *, cache_key: str = None, **kwargs):
|
|
182
226
|
try:
|
|
227
|
+
if self.is_fass_task(result):
|
|
228
|
+
self.cache_manager.set(cache_key, result)
|
|
229
|
+
result = self._get_fass_result(result, **kwargs)
|
|
230
|
+
result = result.get("data", {}).get("payload", None)
|
|
231
|
+
assert result is not None, "Output payload should not be None"
|
|
232
|
+
self.cache_manager.set(cache_key, result, overwrite=True)
|
|
233
|
+
return result
|
|
234
|
+
|
|
183
235
|
response_data = result["data"]
|
|
184
236
|
if BizyAirTask.check_inputs(result):
|
|
185
237
|
self.cache_manager.set(cache_key, result)
|
bizyengine/core/common/client.py
CHANGED
|
@@ -132,6 +132,8 @@ def process_response_data(response_data: dict) -> dict:
|
|
|
132
132
|
if "result" in response_data:
|
|
133
133
|
try:
|
|
134
134
|
msg = json.loads(response_data["result"])
|
|
135
|
+
if "request_id" in response_data and "request_id" not in msg:
|
|
136
|
+
msg["request_id"] = response_data["request_id"]
|
|
135
137
|
except json.JSONDecodeError:
|
|
136
138
|
raise ValueError(f"Failed to decode JSON from response. {response_data=}")
|
|
137
139
|
else:
|
|
@@ -161,6 +163,7 @@ def send_request(
|
|
|
161
163
|
)
|
|
162
164
|
with urllib.request.urlopen(req) as response:
|
|
163
165
|
response_data = response.read().decode("utf-8")
|
|
166
|
+
|
|
164
167
|
except urllib.error.URLError as e:
|
|
165
168
|
error_message = str(e)
|
|
166
169
|
response_body = e.read().decode("utf-8") if hasattr(e, "read") else "N/A"
|
|
@@ -1,45 +1,56 @@
|
|
|
1
1
|
{
|
|
2
|
-
"checkpoints": [
|
|
3
|
-
|
|
4
|
-
"
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
"
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
"
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
"
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
"
|
|
41
|
-
|
|
42
|
-
|
|
2
|
+
"checkpoints": [
|
|
3
|
+
{
|
|
4
|
+
"sdxl": [
|
|
5
|
+
"counterfeitxl_v25.safetensors",
|
|
6
|
+
"dreamshaperXL_lightningDPMSDE.safetensors",
|
|
7
|
+
"dreamshaperXL_v21TurboDPMSDE.safetensors",
|
|
8
|
+
"HelloWorldXL_v70.safetensors",
|
|
9
|
+
"juggernautXL_v9Rdphoto2Lightning.safetensors",
|
|
10
|
+
"Juggernaut-XL_v9_RunDiffusionPhoto_v2.safetensors",
|
|
11
|
+
"Juggernaut_X_RunDiffusion_Hyper.safetensors",
|
|
12
|
+
"mannEDreams_v004.safetensors",
|
|
13
|
+
"realisticStockPhoto_v20.safetensors",
|
|
14
|
+
"samaritan3dCartoon_v40SDXL.safetensors"
|
|
15
|
+
],
|
|
16
|
+
"sd15": [
|
|
17
|
+
"dreamshaper_8.safetensors"
|
|
18
|
+
]
|
|
19
|
+
},
|
|
20
|
+
"sd3.5_large.safetensors",
|
|
21
|
+
"sd3.5_large_turbo.safetensors"
|
|
22
|
+
],
|
|
23
|
+
"clip_vision": [
|
|
24
|
+
{
|
|
25
|
+
"models": [
|
|
26
|
+
"CLIP-ViT-H-14-laion2B-s32B-b79K.safetensors"
|
|
27
|
+
],
|
|
28
|
+
"kolors": [
|
|
29
|
+
"pytorch_model.bin"
|
|
30
|
+
]
|
|
31
|
+
},
|
|
32
|
+
"sigclip_vision_patch14_384.safetensors"
|
|
33
|
+
],
|
|
34
|
+
"controlnet": [
|
|
35
|
+
{
|
|
36
|
+
"kolors": [
|
|
37
|
+
"Kolors-ControlNet-Canny.safetensors",
|
|
38
|
+
"Kolors-ControlNet-Depth.safetensors"
|
|
39
|
+
],
|
|
40
|
+
"sdxl": [
|
|
41
|
+
"diffusion_pytorch_model_promax.safetensors"
|
|
42
|
+
],
|
|
43
|
+
"sd15": [
|
|
44
|
+
"control_v11f1e_sd15_tile.pth"
|
|
45
|
+
],
|
|
46
|
+
"instantid": [
|
|
47
|
+
"diffusion_pytorch_model.safetensors"
|
|
48
|
+
]
|
|
49
|
+
},
|
|
50
|
+
"sd3.5_large_controlnet_blur.safetensors",
|
|
51
|
+
"sd3.5_large_controlnet_canny.safetensors",
|
|
52
|
+
"sd3.5_large_controlnet_depth.safetensors"
|
|
53
|
+
],
|
|
43
54
|
"ipadapter": {
|
|
44
55
|
"kolors": [
|
|
45
56
|
"ip_adapter_plus_general.bin"
|
|
@@ -54,36 +65,55 @@
|
|
|
54
65
|
"meijia_flux_lora_rank16_bf16.safetensors"
|
|
55
66
|
]
|
|
56
67
|
},
|
|
57
|
-
"unet": [
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
"
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
"
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
68
|
+
"unet": [
|
|
69
|
+
"shuttle-3.1-aesthetic.safetensors",
|
|
70
|
+
"wan2.2_t2v_high_noise_14B_fp8_scaled.safetensors",
|
|
71
|
+
"wan2.2_t2v_low_noise_14B_fp8_scaled.safetensors",
|
|
72
|
+
"wan2.2_i2v_low_noise_14B_fp8_scaled.safetensors",
|
|
73
|
+
"wan2.2_i2v_high_noise_14B_fp8_scaled.safetensors",
|
|
74
|
+
"flux1-dev-kontext_fp8_scaled.safetensors",
|
|
75
|
+
"flux1-dev-kontext-onediff.safetensors",
|
|
76
|
+
{
|
|
77
|
+
"kolors": [
|
|
78
|
+
"Kolors-Inpainting.safetensors",
|
|
79
|
+
"Kolors.safetensors"
|
|
80
|
+
],
|
|
81
|
+
"flux": [
|
|
82
|
+
"flux1-schnell.sft",
|
|
83
|
+
"flux1-dev.sft",
|
|
84
|
+
"pixelwave-flux1-dev.safetensors",
|
|
85
|
+
"flux1-canny-dev.safetensors",
|
|
86
|
+
"flux1-depth-dev.safetensors",
|
|
87
|
+
"flux1-fill-dev.safetensors"
|
|
88
|
+
]
|
|
89
|
+
}
|
|
90
|
+
],
|
|
91
|
+
"vae": [
|
|
92
|
+
{
|
|
93
|
+
"sdxl": [
|
|
94
|
+
"sdxl_vae.safetensors"
|
|
95
|
+
],
|
|
96
|
+
"flux": [
|
|
97
|
+
"ae.sft"
|
|
98
|
+
]
|
|
99
|
+
},
|
|
100
|
+
"flux.1-canny-vae.safetensors",
|
|
101
|
+
"flux.1-depth-vae.safetensors",
|
|
102
|
+
"flux.1-fill-vae.safetensors",
|
|
103
|
+
"wan_2.1_vae.safetensors"
|
|
104
|
+
],
|
|
80
105
|
"clip": [
|
|
81
106
|
"clip_l.safetensors",
|
|
82
107
|
"clip_g.safetensors",
|
|
83
108
|
"t5xxl_fp16.safetensors",
|
|
84
|
-
"t5xxl_fp8_e4m3fn.safetensors"
|
|
109
|
+
"t5xxl_fp8_e4m3fn.safetensors",
|
|
110
|
+
"umt5_xxl_fp8_e4m3fn_scaled.safetensors"
|
|
111
|
+
],
|
|
112
|
+
"text_encoders": [
|
|
113
|
+
"t5xxl_fp16.safetensors",
|
|
114
|
+
"clip_l.safetensors",
|
|
115
|
+
"umt5_xxl_fp8_e4m3fn_scaled.safetensors"
|
|
85
116
|
],
|
|
86
|
-
"text_encoders":["t5xxl_fp16.safetensors","clip_l.safetensors"],
|
|
87
117
|
"upscale_models": [
|
|
88
118
|
"4x_NMKD-Siax_200k.pth",
|
|
89
119
|
"RealESRGAN_x4plus.pth",
|
|
@@ -436,3 +436,38 @@ model_rules:
|
|
|
436
436
|
- class_type: "ReActorFaceSwap"
|
|
437
437
|
- class_type: "ReActorFaceSwapOpt"
|
|
438
438
|
- class_type: "ReActorRestoreFace"
|
|
439
|
+
|
|
440
|
+
- mode_type: Wan2.2-T2V
|
|
441
|
+
base_model: Wan
|
|
442
|
+
describe: Wan
|
|
443
|
+
score: 1
|
|
444
|
+
route: /supernode/bizyair-wan-2.2-t2v
|
|
445
|
+
nodes:
|
|
446
|
+
- class_type: 'UNETLoader'
|
|
447
|
+
inputs:
|
|
448
|
+
unet_name:
|
|
449
|
+
- ^wan2.2_t2v_high_noise_14B_fp8_scaled.safetensors$
|
|
450
|
+
- ^wan2.2_i2v_high_noise_14B_fp8_scaled.safetensors$
|
|
451
|
+
- ^wan2.2_i2v_low_noise_14B_fp8_scaled.safetensors$
|
|
452
|
+
|
|
453
|
+
- mode_type: Wan2.2-T2V
|
|
454
|
+
base_model: Wan
|
|
455
|
+
describe: Wan
|
|
456
|
+
score: 1
|
|
457
|
+
route: /supernode/bizyair-wan-2.2-t2v
|
|
458
|
+
nodes:
|
|
459
|
+
- class_type: 'UNETLoader'
|
|
460
|
+
inputs:
|
|
461
|
+
unet_name:
|
|
462
|
+
- ^wan2.2_t2v_low_noise_14B_fp8_scaled.safetensors$
|
|
463
|
+
|
|
464
|
+
- mode_type: Wan2.2-T2V-VAE
|
|
465
|
+
base_model: Wan
|
|
466
|
+
describe: Wan
|
|
467
|
+
score: 1
|
|
468
|
+
route: /supernode/bizyair-wan-2.2-t2v
|
|
469
|
+
nodes:
|
|
470
|
+
- class_type: 'VAELoader'
|
|
471
|
+
inputs:
|
|
472
|
+
vae_name:
|
|
473
|
+
- ^wan_2.1_vae.safetensors$
|
bizyengine/misc/nodes.py
CHANGED
|
@@ -761,7 +761,9 @@ class UNETLoader(BizyAirBaseNode):
|
|
|
761
761
|
# "default": "",
|
|
762
762
|
# },
|
|
763
763
|
# ),
|
|
764
|
-
"weight_dtype": (
|
|
764
|
+
"weight_dtype": (
|
|
765
|
+
["default", "fp8_e4m3fn", "fp8_e5m2", "fp8_e4m3fn_fast"],
|
|
766
|
+
),
|
|
765
767
|
}
|
|
766
768
|
}
|
|
767
769
|
|
|
@@ -1001,6 +1003,41 @@ class DualCLIPLoader(BizyAirBaseNode):
|
|
|
1001
1003
|
# return (model,)
|
|
1002
1004
|
|
|
1003
1005
|
|
|
1006
|
+
class CLIPLoader(BizyAirBaseNode):
|
|
1007
|
+
@classmethod
|
|
1008
|
+
def INPUT_TYPES(s):
|
|
1009
|
+
return {
|
|
1010
|
+
"required": {
|
|
1011
|
+
"clip_name": (folder_paths.get_filename_list("text_encoders"),),
|
|
1012
|
+
"type": (
|
|
1013
|
+
[
|
|
1014
|
+
"stable_diffusion",
|
|
1015
|
+
"stable_cascade",
|
|
1016
|
+
"sd3",
|
|
1017
|
+
"stable_audio",
|
|
1018
|
+
"mochi",
|
|
1019
|
+
"ltxv",
|
|
1020
|
+
"pixart",
|
|
1021
|
+
"cosmos",
|
|
1022
|
+
"lumina2",
|
|
1023
|
+
"wan",
|
|
1024
|
+
"hidream",
|
|
1025
|
+
"chroma",
|
|
1026
|
+
"ace",
|
|
1027
|
+
"omnigen2",
|
|
1028
|
+
],
|
|
1029
|
+
),
|
|
1030
|
+
},
|
|
1031
|
+
"optional": {
|
|
1032
|
+
"device": (["default", "cpu"], {"advanced": True}),
|
|
1033
|
+
},
|
|
1034
|
+
}
|
|
1035
|
+
|
|
1036
|
+
RETURN_TYPES = ("CLIP",)
|
|
1037
|
+
# FUNCTION = "load_clip"
|
|
1038
|
+
CATEGORY = "advanced/loaders"
|
|
1039
|
+
|
|
1040
|
+
|
|
1004
1041
|
class KSamplerSelect(BizyAirBaseNode):
|
|
1005
1042
|
@classmethod
|
|
1006
1043
|
def INPUT_TYPES(s):
|
bizyengine/version.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.2.
|
|
1
|
+
1.2.40
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: bizyengine
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.40
|
|
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=ieRc7kTZ6hz8JdJRjtnFbjOxruKVZLAcz159-DPNzKg,7
|
|
3
3
|
bizyengine/bizy_server/__init__.py,sha256=SP9oSblnPo4KQyh7yOGD26YCskFAcQHAZy04nQBNRIw,200
|
|
4
4
|
bizyengine/bizy_server/api_client.py,sha256=t6cwob7hs993oy5WdFcjKtIzfi3S_eUhODdDVv_Hedo,43822
|
|
5
5
|
bizyengine/bizy_server/errno.py,sha256=1UiFmE2U7r7hCHgsw4-p_YL0VCmTJc9NyYDEbhkanaY,16336
|
|
@@ -39,7 +39,7 @@ bizyengine/bizyair_extras/nodes_ultimatesdupscale.py,sha256=-_SsLTAWAQDv4uw-4Z7I
|
|
|
39
39
|
bizyengine/bizyair_extras/nodes_upscale_model.py,sha256=lrzA1BFI2w5aEPCmNPMh07s-WDzG-xTT49uU6WCnlP8,1151
|
|
40
40
|
bizyengine/bizyair_extras/nodes_utils.py,sha256=whog_tmV-q7JvLEdb03JL3KKsC7wKe3kImzx_jPaQD8,2613
|
|
41
41
|
bizyengine/bizyair_extras/nodes_wan_i2v.py,sha256=3XwcxLHmgrihgXDEzcVOjU6VjqnZa3mErINlY014PFA,8435
|
|
42
|
-
bizyengine/bizyair_extras/nodes_wan_video.py,sha256=
|
|
42
|
+
bizyengine/bizyair_extras/nodes_wan_video.py,sha256=aE2JBF0ZT-6BOM0bGu9R4yZ_eMeMnnjCW-YzFe4qg8Q,2804
|
|
43
43
|
bizyengine/bizyair_extras/route_bizyair_tools.py,sha256=w04QUWFnavT1zu8ht7Z1WTMlSnn__cO3r5RmiKlcuUQ,2191
|
|
44
44
|
bizyengine/bizyair_extras/nodes_ipadapter_plus/__init__.py,sha256=ECKATm_EKi_4G47-FJI4-3rHO3iiF9FVakfSTE-pooE,36
|
|
45
45
|
bizyengine/bizyair_extras/nodes_ipadapter_plus/nodes_ipadapter_plus.py,sha256=lOKRem7oiPs8ZkA_p68HxagAgiCSvn3Rk-L4fSXIjyE,54846
|
|
@@ -56,15 +56,15 @@ bizyengine/core/commands/invoker.py,sha256=8wcIMd8k44o96LAvxFrIiKOlVtf1MW-AcMDXs
|
|
|
56
56
|
bizyengine/core/commands/processors/model_hosting_processor.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
57
57
|
bizyengine/core/commands/processors/prompt_processor.py,sha256=jG0EuphvtycH5Dm-frBGtlIcxkTCXiFMQ1vFMvi_Re0,4963
|
|
58
58
|
bizyengine/core/commands/servers/model_server.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
59
|
-
bizyengine/core/commands/servers/prompt_server.py,sha256=
|
|
59
|
+
bizyengine/core/commands/servers/prompt_server.py,sha256=e8JhtKRM8nw0kQwe2Ofl-zQtiVqQdbbWRxOqkFmSclM,10873
|
|
60
60
|
bizyengine/core/common/__init__.py,sha256=GicZw6YeAZk1PsKmFDt9dm1F75zPUlpia9Q_ki5vW1Y,179
|
|
61
61
|
bizyengine/core/common/caching.py,sha256=hRNsSrfNxgc1zzvBzLVjMY0iMkKqA0TBCr-iYhEpzik,6946
|
|
62
|
-
bizyengine/core/common/client.py,sha256=
|
|
62
|
+
bizyengine/core/common/client.py,sha256=mP24Hxe_y20VXxVFdUz6HtLBzATUS4d8nr-rNf2KNwc,10535
|
|
63
63
|
bizyengine/core/common/env_var.py,sha256=1EAW3gOXY2bKouCqrGa583vTJRdDasQ1IsFTnzDg7Dk,3450
|
|
64
64
|
bizyengine/core/common/utils.py,sha256=bm-XmSPy83AyjD0v5EfWp6jiO6_5p7rkZ_HQAuVmgmo,3086
|
|
65
65
|
bizyengine/core/configs/conf.py,sha256=D_UWG9SSJnK5EhbrfNFryJQ8hUwwdvhOGlq1TielwpI,3830
|
|
66
|
-
bizyengine/core/configs/models.json,sha256=
|
|
67
|
-
bizyengine/core/configs/models.yaml,sha256=
|
|
66
|
+
bizyengine/core/configs/models.json,sha256=v-PpSxNuexSPAVlZbXJyn934cfzoaTC76whFSidaRks,3301
|
|
67
|
+
bizyengine/core/configs/models.yaml,sha256=Zv4H0DXlE1MBKvCFvOQrFjgYdpX1nUZIoNzS7HnbPa4,11571
|
|
68
68
|
bizyengine/core/path_utils/__init__.py,sha256=JVpqNHgaKiEtTI8_r47af8GtWHxrtOockQ6Qpzp9_MQ,260
|
|
69
69
|
bizyengine/core/path_utils/path_manager.py,sha256=tRVAcpsYvfWD-tK7khLvNCZayB0wpU9L0tRTH4ZESzM,10549
|
|
70
70
|
bizyengine/core/path_utils/utils.py,sha256=kQfPQjGU27qF9iyzRxLSRg5cMsd-VixuCUldART7cgY,2394
|
|
@@ -72,14 +72,14 @@ bizyengine/misc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
72
72
|
bizyengine/misc/auth.py,sha256=DwKy4en1a58RgO5TRdE0EMjjEjlxmerNHAOMNVZRacE,2672
|
|
73
73
|
bizyengine/misc/llm.py,sha256=d0GEnY7CzDZ9AokBkOsshZ-KC7KpR_VzEcBvHTfwVoc,13528
|
|
74
74
|
bizyengine/misc/mzkolors.py,sha256=xjJZ5Ct5Wh3WxSOK-ojX7a_fPvl_hA8qWIDKFUwBuvk,2827
|
|
75
|
-
bizyengine/misc/nodes.py,sha256=
|
|
75
|
+
bizyengine/misc/nodes.py,sha256=DnHqxurkhSrsFie9a0aupKA05NUA_E5IZxq19HDzMCk,44723
|
|
76
76
|
bizyengine/misc/nodes_controlnet_aux.py,sha256=w7rASZmnBqhZCalDd7oVPjJpx6b31sPFxqlo3aWoAHc,16399
|
|
77
77
|
bizyengine/misc/nodes_controlnet_union_sdxl.py,sha256=fYyu_XMY7mcX1Ad9x30q1tYB8mmCurMY48lCEylKrA4,5831
|
|
78
78
|
bizyengine/misc/route_sam.py,sha256=-bMIR2QalfnszipGxSxvDAHGJa5gPSrjkYPb5baaRg4,1561
|
|
79
79
|
bizyengine/misc/segment_anything.py,sha256=wNKYwlYPMszfwj23524geFZJjZaG4eye65SGaUnh77I,8941
|
|
80
80
|
bizyengine/misc/supernode.py,sha256=STN9gaxfTSErH8OiHeZa47d8z-G9S0I7fXuJvHQOBFM,4532
|
|
81
81
|
bizyengine/misc/utils.py,sha256=deQjBgLAkxIr-NaOMm77TcgBT3ExAp0MFm5ehUJ3CGs,6829
|
|
82
|
-
bizyengine-1.2.
|
|
83
|
-
bizyengine-1.2.
|
|
84
|
-
bizyengine-1.2.
|
|
85
|
-
bizyengine-1.2.
|
|
82
|
+
bizyengine-1.2.40.dist-info/METADATA,sha256=-h0_LM-Rbok05CLoxBva4Mgr3qTTsdXP0FqXoEkizvw,675
|
|
83
|
+
bizyengine-1.2.40.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
84
|
+
bizyengine-1.2.40.dist-info/top_level.txt,sha256=2zapzqxX-we5cRyJkGf9bd5JinRtXp3-_uDI-xCAnc0,11
|
|
85
|
+
bizyengine-1.2.40.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|