bizyengine 1.2.27__py3-none-any.whl → 1.2.29__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/bizy_server/server.py +22 -0
- bizyengine/bizyair_extras/nodes_flux.py +17 -0
- bizyengine/core/configs/models.json +2 -1
- bizyengine/core/configs/models.yaml +21 -0
- bizyengine/core/data_types.py +24 -0
- bizyengine/core/nodes_base.py +6 -1
- bizyengine/version.txt +1 -1
- {bizyengine-1.2.27.dist-info → bizyengine-1.2.29.dist-info}/METADATA +1 -1
- {bizyengine-1.2.27.dist-info → bizyengine-1.2.29.dist-info}/RECORD +11 -11
- {bizyengine-1.2.27.dist-info → bizyengine-1.2.29.dist-info}/WHEEL +0 -0
- {bizyengine-1.2.27.dist-info → bizyengine-1.2.29.dist-info}/top_level.txt +0 -0
bizyengine/bizy_server/server.py
CHANGED
|
@@ -64,6 +64,28 @@ class BizyAirServer:
|
|
|
64
64
|
async def get_server_mode(request):
|
|
65
65
|
return OKResponse({"server_mode": BIZYAIR_SERVER_MODE})
|
|
66
66
|
|
|
67
|
+
@self.prompt_server.routes.get(f"/{API_PREFIX}/proxy_view")
|
|
68
|
+
async def proxy_view(request):
|
|
69
|
+
filename = request.rel_url.query.get("filename", "")
|
|
70
|
+
if not filename:
|
|
71
|
+
return aiohttp.web.Response(status=400, text="Missing filename")
|
|
72
|
+
host = request.url.host
|
|
73
|
+
port = request.url.port
|
|
74
|
+
view_url = (
|
|
75
|
+
f"http://{host}:{port}/view?filename={urllib.parse.quote(filename)}"
|
|
76
|
+
)
|
|
77
|
+
async with aiohttp.ClientSession() as session:
|
|
78
|
+
async with session.get(view_url) as resp:
|
|
79
|
+
if resp.status != 200:
|
|
80
|
+
return aiohttp.web.Response(
|
|
81
|
+
status=resp.status, text="Failed to fetch image"
|
|
82
|
+
)
|
|
83
|
+
content = await resp.read()
|
|
84
|
+
content_type = resp.headers.get(
|
|
85
|
+
"Content-Type", "application/octet-stream"
|
|
86
|
+
)
|
|
87
|
+
return aiohttp.web.Response(body=content, content_type=content_type)
|
|
88
|
+
|
|
67
89
|
@self.prompt_server.routes.get(f"/{COMMUNITY_API}/model_types")
|
|
68
90
|
async def list_model_types(request):
|
|
69
91
|
return OKResponse(types())
|
|
@@ -38,6 +38,23 @@ class CLIPTextEncodeFlux(BizyAirBaseNode):
|
|
|
38
38
|
# return (new_clip,)
|
|
39
39
|
|
|
40
40
|
|
|
41
|
+
class ReferenceLatent(BizyAirBaseNode):
|
|
42
|
+
@classmethod
|
|
43
|
+
def INPUT_TYPES(s):
|
|
44
|
+
return {
|
|
45
|
+
"required": {
|
|
46
|
+
"conditioning": ("CONDITIONING",),
|
|
47
|
+
},
|
|
48
|
+
"optional": {
|
|
49
|
+
"latent": ("LATENT",),
|
|
50
|
+
},
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
RETURN_TYPES = ("CONDITIONING",)
|
|
54
|
+
CATEGORY = "advanced/conditioning/edit_models"
|
|
55
|
+
DESCRIPTION = "This node sets the guiding latent for an edit model. If the model supports it you can chain multiple to set multiple reference images."
|
|
56
|
+
|
|
57
|
+
|
|
41
58
|
class FluxGuidance(BizyAirBaseNode):
|
|
42
59
|
@classmethod
|
|
43
60
|
def INPUT_TYPES(s):
|
|
@@ -54,7 +54,8 @@
|
|
|
54
54
|
"meijia_flux_lora_rank16_bf16.safetensors"
|
|
55
55
|
]
|
|
56
56
|
},
|
|
57
|
-
"unet": ["shuttle-3.1-aesthetic.safetensors",
|
|
57
|
+
"unet": ["shuttle-3.1-aesthetic.safetensors",
|
|
58
|
+
"flux1-dev-kontext_fp8_scaled.safetensors", "flux1-dev-kontext-onediff.safetensors", {
|
|
58
59
|
"kolors": [
|
|
59
60
|
"Kolors-Inpainting.safetensors",
|
|
60
61
|
"Kolors.safetensors"
|
|
@@ -40,6 +40,27 @@ model_rules:
|
|
|
40
40
|
inputs:
|
|
41
41
|
unet_name:
|
|
42
42
|
- ^flux/flux1-dev.sft$
|
|
43
|
+
- mode_type: unet
|
|
44
|
+
base_model: FLUX-kontext
|
|
45
|
+
describe: flux1-kontext
|
|
46
|
+
score: 3
|
|
47
|
+
route: /supernode/bizyair-comfyui-flux1-kontext-fp8
|
|
48
|
+
nodes:
|
|
49
|
+
- class_type: UNETLoader
|
|
50
|
+
inputs:
|
|
51
|
+
unet_name:
|
|
52
|
+
- ^flux1-dev-kontext_fp8_scaled.safetensors$
|
|
53
|
+
|
|
54
|
+
- mode_type: unet
|
|
55
|
+
base_model: FLUX-kontext
|
|
56
|
+
describe: flux1-kontext
|
|
57
|
+
score: 3
|
|
58
|
+
route: /supernode/bizyair-comfyui-flux1-kontext-onediff
|
|
59
|
+
nodes:
|
|
60
|
+
- class_type: UNETLoader
|
|
61
|
+
inputs:
|
|
62
|
+
unet_name:
|
|
63
|
+
- ^flux1-dev-kontext-onediff.safetensors$
|
|
43
64
|
|
|
44
65
|
- mode_type: unet
|
|
45
66
|
base_model: FLUX
|
bizyengine/core/data_types.py
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
# https://docs.comfy.org/essentials/custom_node_datatypes#model-datatypes
|
|
2
|
+
from functools import singledispatch
|
|
3
|
+
from typing import Any, Dict, List, Tuple, Union
|
|
4
|
+
|
|
2
5
|
# Model datatypes
|
|
3
6
|
MODEL = "BIZYAIR_MODEL"
|
|
4
7
|
CLIP = "BIZYAIR_CLIP"
|
|
@@ -31,3 +34,24 @@ def is_model_datatype(datatype):
|
|
|
31
34
|
# https://docs.comfy.org/essentials/custom_node_images_and_masks
|
|
32
35
|
def is_send_request_datatype(datatype: str) -> bool:
|
|
33
36
|
return datatype in {"IMAGE", "LATENT", "MASK", "STRING", "FLOAT", "INT"}
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
@singledispatch
|
|
40
|
+
def convert_to_custom_type(data: Any) -> Any:
|
|
41
|
+
return data
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
@convert_to_custom_type.register(str)
|
|
45
|
+
def _(data: str) -> Union[str, Any]:
|
|
46
|
+
return BIZYAIR_TYPE_MAP.get(data, data)
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
@convert_to_custom_type.register(dict)
|
|
50
|
+
def _(data: Dict) -> Dict:
|
|
51
|
+
return {k: convert_to_custom_type(v) for k, v in data.items()}
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
@convert_to_custom_type.register(list)
|
|
55
|
+
@convert_to_custom_type.register(tuple)
|
|
56
|
+
def _(data: Union[List, Tuple]) -> Union[List, Tuple]:
|
|
57
|
+
return type(data)(convert_to_custom_type(item) for item in data)
|
bizyengine/core/nodes_base.py
CHANGED
|
@@ -10,7 +10,7 @@ from bizyengine.core.common.env_var import BIZYAIR_DEBUG, BIZYAIR_SERVER_MODE
|
|
|
10
10
|
from bizyengine.core.configs.conf import config_manager
|
|
11
11
|
|
|
12
12
|
from .common.client import get_api_key
|
|
13
|
-
from .data_types import is_send_request_datatype
|
|
13
|
+
from .data_types import convert_to_custom_type, is_send_request_datatype
|
|
14
14
|
from .nodes_io import BizyAirNodeIO, create_node_data
|
|
15
15
|
|
|
16
16
|
try:
|
|
@@ -134,6 +134,7 @@ def ensure_hidden_unique_id_and_prompt(org_input_types_func):
|
|
|
134
134
|
nonlocal original_has_unique_id
|
|
135
135
|
|
|
136
136
|
result = org_input_types_func()
|
|
137
|
+
result = convert_to_custom_type(result)
|
|
137
138
|
if "hidden" not in result:
|
|
138
139
|
result["hidden"] = {"unique_id": "UNIQUE_ID"}
|
|
139
140
|
elif "unique_id" not in result["hidden"]:
|
|
@@ -156,6 +157,10 @@ class BizyAirBaseNode:
|
|
|
156
157
|
def __init_subclass__(cls, **kwargs):
|
|
157
158
|
if not cls.CATEGORY.startswith(f"{LOGO}{PREFIX}"):
|
|
158
159
|
cls.CATEGORY = f"{LOGO}{PREFIX}/{cls.CATEGORY}"
|
|
160
|
+
|
|
161
|
+
if hasattr(cls, "RETURN_TYPES"):
|
|
162
|
+
setattr(cls, "RETURN_TYPES", convert_to_custom_type(cls.RETURN_TYPES))
|
|
163
|
+
|
|
159
164
|
register_node(cls, PREFIX)
|
|
160
165
|
cls.setup_input_types()
|
|
161
166
|
|
bizyengine/version.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.2.
|
|
1
|
+
1.2.29
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: bizyengine
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.29
|
|
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=8UbXkWb3cQmVLROEmDOpmLGeuURRw6434TkE3B5WEfI,6
|
|
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=Q-U96XnZQCuPH_44Om8wnc2-Kh7qFqwLKtox27msU54,16095
|
|
@@ -7,7 +7,7 @@ bizyengine/bizy_server/error_handler.py,sha256=MGrfO1AEqbfEgMWPL8B6Ypew_zHiQAdYG
|
|
|
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=
|
|
10
|
+
bizyengine/bizy_server/server.py,sha256=bPJaLX8AoHPq4u-q5nuwf58jezXNQdsHO_wUibi10Ik,54594
|
|
11
11
|
bizyengine/bizy_server/stream_response.py,sha256=H2XHqlVRtQMhgdztAuG7l8-iV_Pm42u2x6WJ0gNVIW0,9654
|
|
12
12
|
bizyengine/bizy_server/utils.py,sha256=CIoRrCy8Wv4D9FDdr_QtNP03AjWw8M6GSm2QcrVJl6Y,3739
|
|
13
13
|
bizyengine/bizyair_extras/__init__.py,sha256=EjyLEdLpPm5I4Z25YmnoK4PYQDmsEyXtCXQt9UDGmi0,1009
|
|
@@ -21,7 +21,7 @@ bizyengine/bizyair_extras/nodes_controlnet.py,sha256=79eM_Q-5iddWamIQo5T47HPchqQ
|
|
|
21
21
|
bizyengine/bizyair_extras/nodes_custom_sampler.py,sha256=NK-7sdcp8oxJisjTEFfBskknQJF5I1fRwQkJbG3dKfc,3457
|
|
22
22
|
bizyengine/bizyair_extras/nodes_dataset.py,sha256=htF0YZb_FHncLhLDEbJfNCVqJ6rvlo1ZLk7iY42Rylc,3440
|
|
23
23
|
bizyengine/bizyair_extras/nodes_differential_diffusion.py,sha256=nSrbD-w0XtrwktwzME5M0Vmi1sI7Z08AqwgymTdThqo,370
|
|
24
|
-
bizyengine/bizyair_extras/nodes_flux.py,sha256=
|
|
24
|
+
bizyengine/bizyair_extras/nodes_flux.py,sha256=ls94kGBuBNgW5c6uhG36iZLk1TTM2TIoTTcpERgEE5E,2683
|
|
25
25
|
bizyengine/bizyair_extras/nodes_hunyuan3d.py,sha256=dWHLeqX68N7zKnfDMzm9nutmCNtFT6-wwt7P5cPDu7Q,2058
|
|
26
26
|
bizyengine/bizyair_extras/nodes_image_utils.py,sha256=BldF_CKD2M01K8-SnG-QV86u3HZqFz_GP5GrCQ5CFDQ,2875
|
|
27
27
|
bizyengine/bizyair_extras/nodes_ip2p.py,sha256=GSEFJvrs4f2tv0xwYkWqc8uhsXrzAJVPvvwcw0gTjR0,619
|
|
@@ -44,9 +44,9 @@ bizyengine/bizyair_extras/nodes_ipadapter_plus/nodes_ipadapter_plus.py,sha256=lO
|
|
|
44
44
|
bizyengine/bizyair_extras/nodes_kolors_mz/__init__.py,sha256=HsCCCphW8q0SrWEiFlZKK_W2lQr1T0UJIJL7gEn37ME,3729
|
|
45
45
|
bizyengine/bizyair_extras/oauth_callback/main.py,sha256=KQOZWor3kyNx8xvUNHYNMoHfCF9g_ht13_iPk4K_5YM,3633
|
|
46
46
|
bizyengine/core/__init__.py,sha256=EV9ZtTwOHC0S_eNvCu-tltIydfxfMsH59LbgVX4e_1c,359
|
|
47
|
-
bizyengine/core/data_types.py,sha256=
|
|
47
|
+
bizyengine/core/data_types.py,sha256=2f7QqqZvhKmXw3kZV1AvXuPTda34b4wXQE9tyO8nUSM,1595
|
|
48
48
|
bizyengine/core/image_utils.py,sha256=--DmQb3R9Ev21MfZG9rfgOGsU2zRywJ-hpiNNN0N8p8,8586
|
|
49
|
-
bizyengine/core/nodes_base.py,sha256=
|
|
49
|
+
bizyengine/core/nodes_base.py,sha256=h2f_FWTWj6lpdKjwHRuOmoRifqwkV59ovM2ZxPK4h9c,9019
|
|
50
50
|
bizyengine/core/nodes_io.py,sha256=VhwRwYkGp0g3Mh0hx1OSwNZbV06NEV13w2aODSiAm5M,2832
|
|
51
51
|
bizyengine/core/commands/__init__.py,sha256=82yRdMT23RTiZPkFW_G3fVa-fj3-TUAXnj6cnGA3xRA,22
|
|
52
52
|
bizyengine/core/commands/base.py,sha256=TYH9lhr033B2roBLPkWkxcvoz_fW3cdzx_bvP_FI7dg,635
|
|
@@ -61,8 +61,8 @@ bizyengine/core/common/client.py,sha256=1Ka8DIjbmD9Gme9c_Q1zwXXueSCP3_OSdEDyGYEo
|
|
|
61
61
|
bizyengine/core/common/env_var.py,sha256=1EAW3gOXY2bKouCqrGa583vTJRdDasQ1IsFTnzDg7Dk,3450
|
|
62
62
|
bizyengine/core/common/utils.py,sha256=bm-XmSPy83AyjD0v5EfWp6jiO6_5p7rkZ_HQAuVmgmo,3086
|
|
63
63
|
bizyengine/core/configs/conf.py,sha256=D_UWG9SSJnK5EhbrfNFryJQ8hUwwdvhOGlq1TielwpI,3830
|
|
64
|
-
bizyengine/core/configs/models.json,sha256=
|
|
65
|
-
bizyengine/core/configs/models.yaml,sha256=
|
|
64
|
+
bizyengine/core/configs/models.json,sha256=NqYVmp-ICpr1vFgafWjJMu5dyuRt9ffVUJmov3_-xRY,2746
|
|
65
|
+
bizyengine/core/configs/models.yaml,sha256=ZsHC2vBS8jfhwgT7NId2G7Hf_iJX3Az7ykbPN3h-1EQ,9648
|
|
66
66
|
bizyengine/core/path_utils/__init__.py,sha256=JVpqNHgaKiEtTI8_r47af8GtWHxrtOockQ6Qpzp9_MQ,260
|
|
67
67
|
bizyengine/core/path_utils/path_manager.py,sha256=tRVAcpsYvfWD-tK7khLvNCZayB0wpU9L0tRTH4ZESzM,10549
|
|
68
68
|
bizyengine/core/path_utils/utils.py,sha256=kQfPQjGU27qF9iyzRxLSRg5cMsd-VixuCUldART7cgY,2394
|
|
@@ -77,7 +77,7 @@ bizyengine/misc/route_sam.py,sha256=-bMIR2QalfnszipGxSxvDAHGJa5gPSrjkYPb5baaRg4,
|
|
|
77
77
|
bizyengine/misc/segment_anything.py,sha256=wNKYwlYPMszfwj23524geFZJjZaG4eye65SGaUnh77I,8941
|
|
78
78
|
bizyengine/misc/supernode.py,sha256=STN9gaxfTSErH8OiHeZa47d8z-G9S0I7fXuJvHQOBFM,4532
|
|
79
79
|
bizyengine/misc/utils.py,sha256=deQjBgLAkxIr-NaOMm77TcgBT3ExAp0MFm5ehUJ3CGs,6829
|
|
80
|
-
bizyengine-1.2.
|
|
81
|
-
bizyengine-1.2.
|
|
82
|
-
bizyengine-1.2.
|
|
83
|
-
bizyengine-1.2.
|
|
80
|
+
bizyengine-1.2.29.dist-info/METADATA,sha256=7ephykrOGACrIgVCPXBXRq1SqHhkGJ7r-HmB7geWUT0,675
|
|
81
|
+
bizyengine-1.2.29.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
82
|
+
bizyengine-1.2.29.dist-info/top_level.txt,sha256=2zapzqxX-we5cRyJkGf9bd5JinRtXp3-_uDI-xCAnc0,11
|
|
83
|
+
bizyengine-1.2.29.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|