bizyengine 0.4.2__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/__init__.py +35 -0
- bizyengine/bizy_server/__init__.py +7 -0
- bizyengine/bizy_server/api_client.py +763 -0
- bizyengine/bizy_server/errno.py +122 -0
- bizyengine/bizy_server/error_handler.py +3 -0
- bizyengine/bizy_server/execution.py +55 -0
- bizyengine/bizy_server/resp.py +24 -0
- bizyengine/bizy_server/server.py +898 -0
- bizyengine/bizy_server/utils.py +93 -0
- bizyengine/bizyair_extras/__init__.py +24 -0
- bizyengine/bizyair_extras/nodes_advanced_refluxcontrol.py +62 -0
- bizyengine/bizyair_extras/nodes_cogview4.py +31 -0
- bizyengine/bizyair_extras/nodes_comfyui_detail_daemon.py +180 -0
- bizyengine/bizyair_extras/nodes_comfyui_instantid.py +164 -0
- bizyengine/bizyair_extras/nodes_comfyui_layerstyle_advance.py +141 -0
- bizyengine/bizyair_extras/nodes_comfyui_pulid_flux.py +88 -0
- bizyengine/bizyair_extras/nodes_controlnet.py +50 -0
- bizyengine/bizyair_extras/nodes_custom_sampler.py +130 -0
- bizyengine/bizyair_extras/nodes_dataset.py +99 -0
- bizyengine/bizyair_extras/nodes_differential_diffusion.py +16 -0
- bizyengine/bizyair_extras/nodes_flux.py +69 -0
- bizyengine/bizyair_extras/nodes_image_utils.py +93 -0
- bizyengine/bizyair_extras/nodes_ip2p.py +20 -0
- bizyengine/bizyair_extras/nodes_ipadapter_plus/__init__.py +1 -0
- bizyengine/bizyair_extras/nodes_ipadapter_plus/nodes_ipadapter_plus.py +1598 -0
- bizyengine/bizyair_extras/nodes_janus_pro.py +81 -0
- bizyengine/bizyair_extras/nodes_kolors_mz/__init__.py +86 -0
- bizyengine/bizyair_extras/nodes_model_advanced.py +62 -0
- bizyengine/bizyair_extras/nodes_sd3.py +52 -0
- bizyengine/bizyair_extras/nodes_segment_anything.py +256 -0
- bizyengine/bizyair_extras/nodes_segment_anything_utils.py +134 -0
- bizyengine/bizyair_extras/nodes_testing_utils.py +139 -0
- bizyengine/bizyair_extras/nodes_trellis.py +199 -0
- bizyengine/bizyair_extras/nodes_ultimatesdupscale.py +137 -0
- bizyengine/bizyair_extras/nodes_upscale_model.py +32 -0
- bizyengine/bizyair_extras/nodes_wan_video.py +49 -0
- bizyengine/bizyair_extras/oauth_callback/main.py +118 -0
- bizyengine/core/__init__.py +8 -0
- bizyengine/core/commands/__init__.py +1 -0
- bizyengine/core/commands/base.py +27 -0
- bizyengine/core/commands/invoker.py +4 -0
- bizyengine/core/commands/processors/model_hosting_processor.py +0 -0
- bizyengine/core/commands/processors/prompt_processor.py +123 -0
- bizyengine/core/commands/servers/model_server.py +0 -0
- bizyengine/core/commands/servers/prompt_server.py +234 -0
- bizyengine/core/common/__init__.py +8 -0
- bizyengine/core/common/caching.py +198 -0
- bizyengine/core/common/client.py +262 -0
- bizyengine/core/common/env_var.py +101 -0
- bizyengine/core/common/utils.py +93 -0
- bizyengine/core/configs/conf.py +112 -0
- bizyengine/core/configs/models.json +101 -0
- bizyengine/core/configs/models.yaml +329 -0
- bizyengine/core/data_types.py +20 -0
- bizyengine/core/image_utils.py +288 -0
- bizyengine/core/nodes_base.py +159 -0
- bizyengine/core/nodes_io.py +97 -0
- bizyengine/core/path_utils/__init__.py +9 -0
- bizyengine/core/path_utils/path_manager.py +276 -0
- bizyengine/core/path_utils/utils.py +34 -0
- bizyengine/misc/__init__.py +0 -0
- bizyengine/misc/auth.py +83 -0
- bizyengine/misc/llm.py +431 -0
- bizyengine/misc/mzkolors.py +93 -0
- bizyengine/misc/nodes.py +1208 -0
- bizyengine/misc/nodes_controlnet_aux.py +491 -0
- bizyengine/misc/nodes_controlnet_union_sdxl.py +171 -0
- bizyengine/misc/route_sam.py +60 -0
- bizyengine/misc/segment_anything.py +276 -0
- bizyengine/misc/supernode.py +182 -0
- bizyengine/misc/utils.py +218 -0
- bizyengine/version.txt +1 -0
- bizyengine-0.4.2.dist-info/METADATA +12 -0
- bizyengine-0.4.2.dist-info/RECORD +76 -0
- bizyengine-0.4.2.dist-info/WHEEL +5 -0
- bizyengine-0.4.2.dist-info/top_level.txt +1 -0
bizyengine/misc/utils.py
ADDED
|
@@ -0,0 +1,218 @@
|
|
|
1
|
+
import base64
|
|
2
|
+
import json
|
|
3
|
+
import os
|
|
4
|
+
import pickle
|
|
5
|
+
import urllib.parse
|
|
6
|
+
import urllib.request
|
|
7
|
+
import zlib
|
|
8
|
+
from typing import List, Tuple, Union
|
|
9
|
+
|
|
10
|
+
import numpy as np
|
|
11
|
+
|
|
12
|
+
BIZYAIR_DEBUG = os.getenv("BIZYAIR_DEBUG", False)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
def send_post_request(api_url, payload, headers):
|
|
16
|
+
"""
|
|
17
|
+
Sends a POST request to the specified API URL with the given payload and headers.
|
|
18
|
+
|
|
19
|
+
Args:
|
|
20
|
+
api_url (str): The URL of the API endpoint.
|
|
21
|
+
payload (dict): The payload to send in the POST request.
|
|
22
|
+
headers (dict): The headers to include in the POST request.
|
|
23
|
+
|
|
24
|
+
Raises:
|
|
25
|
+
Exception: If there is an error connecting to the server or the request fails.
|
|
26
|
+
"""
|
|
27
|
+
try:
|
|
28
|
+
data = json.dumps(payload).encode("utf-8")
|
|
29
|
+
req = urllib.request.Request(api_url, data=data, headers=headers, method="POST")
|
|
30
|
+
with urllib.request.urlopen(req) as response:
|
|
31
|
+
response_data = response.read().decode("utf-8")
|
|
32
|
+
return response_data
|
|
33
|
+
except urllib.error.URLError as e:
|
|
34
|
+
if "Unauthorized" in str(e):
|
|
35
|
+
raise Exception(
|
|
36
|
+
"Key is invalid, please refer to https://cloud.siliconflow.cn to get the API key.\n"
|
|
37
|
+
"If you have the key, please click the 'BizyAir Key' button at the bottom right to set the key."
|
|
38
|
+
)
|
|
39
|
+
else:
|
|
40
|
+
raise Exception(
|
|
41
|
+
f"Failed to connect to the server: {e}, if you have no key, "
|
|
42
|
+
)
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
def serialize_and_encode(obj: Union[np.ndarray], compress=True) -> Tuple[str, bool]:
|
|
46
|
+
"""
|
|
47
|
+
Serializes a Python object, optionally compresses it, and then encodes it in base64.
|
|
48
|
+
|
|
49
|
+
Args:
|
|
50
|
+
obj: The Python object to serialize.
|
|
51
|
+
compress (bool): Whether to compress the serialized object using zlib. Default is True.
|
|
52
|
+
|
|
53
|
+
Returns:
|
|
54
|
+
str: The base64 encoded string of the serialized (and optionally compressed) object.
|
|
55
|
+
"""
|
|
56
|
+
serialized_obj = pickle.dumps(obj)
|
|
57
|
+
|
|
58
|
+
if compress:
|
|
59
|
+
serialized_obj = zlib.compress(serialized_obj)
|
|
60
|
+
|
|
61
|
+
if BIZYAIR_DEBUG:
|
|
62
|
+
print(
|
|
63
|
+
f"serialize_and_encode: size of bytes is {format_bytes(len(serialized_obj))}"
|
|
64
|
+
)
|
|
65
|
+
|
|
66
|
+
encoded_obj = base64.b64encode(serialized_obj).decode("utf-8")
|
|
67
|
+
|
|
68
|
+
if BIZYAIR_DEBUG:
|
|
69
|
+
print(
|
|
70
|
+
f"serialize_and_encode: size of base64 text is {format_bytes(len(serialized_obj))}"
|
|
71
|
+
)
|
|
72
|
+
|
|
73
|
+
return (encoded_obj, compress)
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
def decode_and_deserialize(response_text) -> np.ndarray:
|
|
77
|
+
if BIZYAIR_DEBUG:
|
|
78
|
+
print(
|
|
79
|
+
f"decode_and_deserialize: size of text is {format_bytes(len(response_text))}"
|
|
80
|
+
)
|
|
81
|
+
|
|
82
|
+
ret = json.loads(response_text)
|
|
83
|
+
|
|
84
|
+
if "result" in ret:
|
|
85
|
+
msg = json.loads(ret["result"])
|
|
86
|
+
else:
|
|
87
|
+
msg = ret
|
|
88
|
+
if msg["type"] not in (
|
|
89
|
+
"comfyair",
|
|
90
|
+
"bizyair",
|
|
91
|
+
): # DO NOT CHANGE THIS LINE: "comfyair" is the type from the server node
|
|
92
|
+
# TODO: change both server and client "comfyair" to "bizyair"
|
|
93
|
+
raise Exception(f"Unexpected response type: {msg}")
|
|
94
|
+
|
|
95
|
+
data = msg["data"]
|
|
96
|
+
|
|
97
|
+
tensor_bytes = base64.b64decode(data["payload"])
|
|
98
|
+
if data.get("is_compress", None):
|
|
99
|
+
tensor_bytes = zlib.decompress(tensor_bytes)
|
|
100
|
+
|
|
101
|
+
if BIZYAIR_DEBUG:
|
|
102
|
+
print(
|
|
103
|
+
f"decode_and_deserialize: size of bytes is {format_bytes(len(tensor_bytes))}"
|
|
104
|
+
)
|
|
105
|
+
|
|
106
|
+
deserialized_object = pickle.loads(tensor_bytes)
|
|
107
|
+
return deserialized_object
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
def format_bytes(num_bytes: int) -> str:
|
|
111
|
+
"""
|
|
112
|
+
Converts a number of bytes to a human-readable string with units (B, KB, or MB).
|
|
113
|
+
|
|
114
|
+
:param num_bytes: The number of bytes to convert.
|
|
115
|
+
:return: A string representing the number of bytes in a human-readable format.
|
|
116
|
+
"""
|
|
117
|
+
if num_bytes < 1024:
|
|
118
|
+
return f"{num_bytes} B"
|
|
119
|
+
elif num_bytes < 1024 * 1024:
|
|
120
|
+
return f"{num_bytes / 1024:.2f} KB"
|
|
121
|
+
else:
|
|
122
|
+
return f"{num_bytes / (1024 * 1024):.2f} MB"
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
def get_api_key():
|
|
126
|
+
from .auth import API_KEY
|
|
127
|
+
|
|
128
|
+
return API_KEY
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
def get_llm_response(
|
|
132
|
+
model: str,
|
|
133
|
+
system_prompt: str,
|
|
134
|
+
user_prompt: str,
|
|
135
|
+
max_tokens: int = 1024,
|
|
136
|
+
temperature: float = 0.7,
|
|
137
|
+
):
|
|
138
|
+
api_url = "https://api.siliconflow.cn/v1/chat/completions"
|
|
139
|
+
API_KEY = get_api_key()
|
|
140
|
+
headers = {
|
|
141
|
+
"accept": "application/json",
|
|
142
|
+
"content-type": "application/json",
|
|
143
|
+
"Authorization": f"Bearer {API_KEY}",
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
payload = {
|
|
147
|
+
"model": model,
|
|
148
|
+
"messages": [
|
|
149
|
+
{"role": "system", "content": system_prompt},
|
|
150
|
+
{"role": "user", "content": user_prompt},
|
|
151
|
+
],
|
|
152
|
+
"max_tokens": max_tokens,
|
|
153
|
+
"temperature": temperature,
|
|
154
|
+
"top_p": 0.9,
|
|
155
|
+
"top_k": 50,
|
|
156
|
+
"stream": False,
|
|
157
|
+
"n": 1,
|
|
158
|
+
}
|
|
159
|
+
response = send_post_request(api_url, headers=headers, payload=payload)
|
|
160
|
+
return response
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
def get_vlm_response(
|
|
164
|
+
model: str,
|
|
165
|
+
system_prompt: str,
|
|
166
|
+
user_prompt: str,
|
|
167
|
+
base64_images: List[str],
|
|
168
|
+
max_tokens: int = 1024,
|
|
169
|
+
temperature: float = 0.7,
|
|
170
|
+
detail: str = "auto",
|
|
171
|
+
):
|
|
172
|
+
api_url = "https://api.siliconflow.cn/v1/chat/completions"
|
|
173
|
+
API_KEY = get_api_key()
|
|
174
|
+
headers = {
|
|
175
|
+
"accept": "application/json",
|
|
176
|
+
"content-type": "application/json",
|
|
177
|
+
"Authorization": f"Bearer {API_KEY}",
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
messages = [
|
|
181
|
+
{
|
|
182
|
+
"role": "user",
|
|
183
|
+
"content": [{"type": "text", "text": system_prompt}],
|
|
184
|
+
}, # 此方法皆适用于两种 VL 模型
|
|
185
|
+
# {
|
|
186
|
+
# "role": "system",
|
|
187
|
+
# "content": system_prompt,
|
|
188
|
+
# }, # role 为 "system" 的这种方式只适用于 QwenVL 系列模型,并不适用于 InternVL 系列模型
|
|
189
|
+
]
|
|
190
|
+
|
|
191
|
+
user_content = []
|
|
192
|
+
for base64_image in base64_images:
|
|
193
|
+
user_content.append(
|
|
194
|
+
{
|
|
195
|
+
"type": "image_url",
|
|
196
|
+
"image_url": {
|
|
197
|
+
"url": f"data:image/webp;base64,{base64_image}",
|
|
198
|
+
"detail": detail,
|
|
199
|
+
},
|
|
200
|
+
}
|
|
201
|
+
)
|
|
202
|
+
user_content.append({"type": "text", "text": user_prompt})
|
|
203
|
+
|
|
204
|
+
messages.append({"role": "user", "content": user_content})
|
|
205
|
+
|
|
206
|
+
payload = {
|
|
207
|
+
"model": model,
|
|
208
|
+
"messages": messages,
|
|
209
|
+
"max_tokens": max_tokens,
|
|
210
|
+
"temperature": temperature,
|
|
211
|
+
"top_p": 0.9,
|
|
212
|
+
"top_k": 50,
|
|
213
|
+
"stream": False,
|
|
214
|
+
"n": 1,
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
response = send_post_request(api_url, headers=headers, payload=payload)
|
|
218
|
+
return response
|
bizyengine/version.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
0.4.2
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
|
+
Name: bizyengine
|
|
3
|
+
Version: 0.4.2
|
|
4
|
+
Summary: [a/BizyAir](https://github.com/siliconflow/BizyAir) Comfy Nodes that can run in any environment.
|
|
5
|
+
Author-email: SiliconFlow <yaochi@siliconflow.cn>
|
|
6
|
+
Project-URL: Repository, https://github.com/siliconflow/BizyAir
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Requires-Python: >=3.10
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
Requires-Dist: requests
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
bizyengine/__init__.py,sha256=GP9V-JM07fz7uv_qTB43QEA2rKdrVJxi5I7LRnn_3ZQ,914
|
|
2
|
+
bizyengine/version.txt,sha256=WNQ-SmPpzutN4QAFvFubIGJfupfMKtgzSQN5B5Bi-vs,5
|
|
3
|
+
bizyengine/bizy_server/__init__.py,sha256=SP9oSblnPo4KQyh7yOGD26YCskFAcQHAZy04nQBNRIw,200
|
|
4
|
+
bizyengine/bizy_server/api_client.py,sha256=kz3ZUptCqKc7rz1OD7swR0g_tEQvHEMzLbn5S8j407c,26706
|
|
5
|
+
bizyengine/bizy_server/errno.py,sha256=OsVdedWFunQyJdZ7ijMqaL7gKrrP6DxndhJ0ZGnif00,6856
|
|
6
|
+
bizyengine/bizy_server/error_handler.py,sha256=MGrfO1AEqbfEgMWPL8B6Ypew_zHiQAdYGlhN9bZohrY,167
|
|
7
|
+
bizyengine/bizy_server/execution.py,sha256=ayaEf6eGJKQsVZV-1_UlGlvwwmlH7FEek31Uq-MbUjA,1644
|
|
8
|
+
bizyengine/bizy_server/resp.py,sha256=uxNMCOPNSC4EH6ZB43yXUrQ8_BYJ2RG-w4rk52brnBQ,521
|
|
9
|
+
bizyengine/bizy_server/server.py,sha256=zKp4NemJ_eUwzLe-heKT5FQ2glLruC09FCqj6WU0Gos,34106
|
|
10
|
+
bizyengine/bizy_server/utils.py,sha256=9VYj9tFyJ53VUyPcdoolTPNivHyRrRrzzP17Cc4UAXs,2202
|
|
11
|
+
bizyengine/bizyair_extras/__init__.py,sha256=W6ZdwaEv-Ol2HiHPneR2oMce5uVEZWrPyWqsiTBjc_A,857
|
|
12
|
+
bizyengine/bizyair_extras/nodes_advanced_refluxcontrol.py,sha256=cecfjrtnjJAty9aNkhz8BlmHUC1NImkFlUDiA0COEa4,2242
|
|
13
|
+
bizyengine/bizyair_extras/nodes_cogview4.py,sha256=Ni0TDOycczyDhYPvSR68TxGV_wE2uhaxd8MIj-J4-3o,2031
|
|
14
|
+
bizyengine/bizyair_extras/nodes_comfyui_detail_daemon.py,sha256=i71it24tiGvZ3h-XFWISr4CpZszUtPuz3UrZARYluLk,6169
|
|
15
|
+
bizyengine/bizyair_extras/nodes_comfyui_instantid.py,sha256=--BhyvvTz8cW8fgD-hbujkb2ProX2fS6JaT1q99exTI,4867
|
|
16
|
+
bizyengine/bizyair_extras/nodes_comfyui_layerstyle_advance.py,sha256=vJLHe31gyVIdmPZc52R5isj-XhUwtNbE-pTsonypieA,4652
|
|
17
|
+
bizyengine/bizyair_extras/nodes_comfyui_pulid_flux.py,sha256=MWyqcGkToaHApX7VcJ0Lyr_WxLM-bZzdB9VIKSp7CTY,2491
|
|
18
|
+
bizyengine/bizyair_extras/nodes_controlnet.py,sha256=9ikMPACNaGMmG_ZN7bPzsSyVIzXOPpNMjgy1nWZFu7c,1657
|
|
19
|
+
bizyengine/bizyair_extras/nodes_custom_sampler.py,sha256=NK-7sdcp8oxJisjTEFfBskknQJF5I1fRwQkJbG3dKfc,3457
|
|
20
|
+
bizyengine/bizyair_extras/nodes_dataset.py,sha256=htF0YZb_FHncLhLDEbJfNCVqJ6rvlo1ZLk7iY42Rylc,3440
|
|
21
|
+
bizyengine/bizyair_extras/nodes_differential_diffusion.py,sha256=nSrbD-w0XtrwktwzME5M0Vmi1sI7Z08AqwgymTdThqo,370
|
|
22
|
+
bizyengine/bizyair_extras/nodes_flux.py,sha256=ajBd81QIMSppB-0CnA_k-mnsSrxASl1mkzBmKM697gY,2147
|
|
23
|
+
bizyengine/bizyair_extras/nodes_image_utils.py,sha256=f49VDIwI6opHwCuM4n8GKGtute4a_p6oZZjch76qp4o,2854
|
|
24
|
+
bizyengine/bizyair_extras/nodes_ip2p.py,sha256=GSEFJvrs4f2tv0xwYkWqc8uhsXrzAJVPvvwcw0gTjR0,619
|
|
25
|
+
bizyengine/bizyair_extras/nodes_janus_pro.py,sha256=hAdMsS09RkRHZn9cNwpmyOaH7ODOMjVt9SbBsD-UvbM,2665
|
|
26
|
+
bizyengine/bizyair_extras/nodes_model_advanced.py,sha256=s-dbFRWCdsTxctFYaZtmVwZ8-xuPPHixtkHFCmR7zcs,1755
|
|
27
|
+
bizyengine/bizyair_extras/nodes_sd3.py,sha256=lZCxj0IFmuxk1fZTDcRKgVV5QWHjkUdpR4w9-DZbMf4,1727
|
|
28
|
+
bizyengine/bizyair_extras/nodes_segment_anything.py,sha256=9Aeu4A2c2hA-Gu6kY6cINmZ3Y6DVXhWJCLjcW4M_v5o,7231
|
|
29
|
+
bizyengine/bizyair_extras/nodes_segment_anything_utils.py,sha256=ZefAqrFrevDH3XY_wipr_VwKfeXrgpZEUFaqg_JGOdU,4714
|
|
30
|
+
bizyengine/bizyair_extras/nodes_testing_utils.py,sha256=qeJHlSq-c21Vx8H0oZw878Q0ENciMjuSGTcZEVnSkRY,3987
|
|
31
|
+
bizyengine/bizyair_extras/nodes_trellis.py,sha256=QU2dQsN_zKA91vTVtR4Af4kJXDJA8CDSf1PyIu_ywZc,7421
|
|
32
|
+
bizyengine/bizyair_extras/nodes_ultimatesdupscale.py,sha256=6IZCDZ_9PhrKwJzCZGvKNxcRYwwkPRMNovF17nwzFqw,4130
|
|
33
|
+
bizyengine/bizyair_extras/nodes_upscale_model.py,sha256=6DWAkcLPKy_8byaL9xShzDuccHLiVevKEswcbPr1vSI,825
|
|
34
|
+
bizyengine/bizyair_extras/nodes_wan_video.py,sha256=d1mCcW9jCj-5Oymmymy0Vz-nwWv36FMGE5Gn-E7Rul4,1632
|
|
35
|
+
bizyengine/bizyair_extras/nodes_ipadapter_plus/__init__.py,sha256=ECKATm_EKi_4G47-FJI4-3rHO3iiF9FVakfSTE-pooE,36
|
|
36
|
+
bizyengine/bizyair_extras/nodes_ipadapter_plus/nodes_ipadapter_plus.py,sha256=7J0f-LLyETZTfcKUMiFenz6WwJnZeRDID_Ghz2z6Caw,53476
|
|
37
|
+
bizyengine/bizyair_extras/nodes_kolors_mz/__init__.py,sha256=mYaCDH1G28DOp5yLN-wsrCJV3TwgY18bqNPygeNqa30,2304
|
|
38
|
+
bizyengine/bizyair_extras/oauth_callback/main.py,sha256=KQOZWor3kyNx8xvUNHYNMoHfCF9g_ht13_iPk4K_5YM,3633
|
|
39
|
+
bizyengine/core/__init__.py,sha256=XKaHyQVH_xybBzEPJ_Vv-KA1dAtsU_cYtPnAMfdUT3c,303
|
|
40
|
+
bizyengine/core/data_types.py,sha256=QKOTsEIiMJNYjgFQ63IfABNPx6om-w4Ae3bBcKotIMc,692
|
|
41
|
+
bizyengine/core/image_utils.py,sha256=--DmQb3R9Ev21MfZG9rfgOGsU2zRywJ-hpiNNN0N8p8,8586
|
|
42
|
+
bizyengine/core/nodes_base.py,sha256=oWyFUXRjCiMrG1xz4pIKx8m9ioS_XJe0i37ixJl4hSE,5264
|
|
43
|
+
bizyengine/core/nodes_io.py,sha256=3U1rb7CyZxsXYGeA-51Y_q8VaElLz-guR0EUlbgOr84,2812
|
|
44
|
+
bizyengine/core/commands/__init__.py,sha256=82yRdMT23RTiZPkFW_G3fVa-fj3-TUAXnj6cnGA3xRA,22
|
|
45
|
+
bizyengine/core/commands/base.py,sha256=TYH9lhr033B2roBLPkWkxcvoz_fW3cdzx_bvP_FI7dg,635
|
|
46
|
+
bizyengine/core/commands/invoker.py,sha256=8wcIMd8k44o96LAvxFrIiKOlVtf1MW-AcMDXsZkb5Qc,215
|
|
47
|
+
bizyengine/core/commands/processors/model_hosting_processor.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
48
|
+
bizyengine/core/commands/processors/prompt_processor.py,sha256=GFfkoAc37C9T6NC7BLPkGFBOvTH53IVQTvGwyATGS8A,4184
|
|
49
|
+
bizyengine/core/commands/servers/model_server.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
50
|
+
bizyengine/core/commands/servers/prompt_server.py,sha256=P-kRDXSRUkQvyZY16XOGsM4RbOo3-NWM9exJT1kGVHE,8139
|
|
51
|
+
bizyengine/core/common/__init__.py,sha256=GicZw6YeAZk1PsKmFDt9dm1F75zPUlpia9Q_ki5vW1Y,179
|
|
52
|
+
bizyengine/core/common/caching.py,sha256=isliSZsQyrNjXmupW-BaZ2EoVF5G8t7aHAhbcELAn5M,6253
|
|
53
|
+
bizyengine/core/common/client.py,sha256=UUM_2831QhoDM3ap3u1R2qoWbzs64gdHS1ovNeXfK4s,9436
|
|
54
|
+
bizyengine/core/common/env_var.py,sha256=oQb6WmrFQHWaXIy1TImPMnMoTFbrqW482cWcYp0c7Xc,3044
|
|
55
|
+
bizyengine/core/common/utils.py,sha256=bm-XmSPy83AyjD0v5EfWp6jiO6_5p7rkZ_HQAuVmgmo,3086
|
|
56
|
+
bizyengine/core/configs/conf.py,sha256=D_UWG9SSJnK5EhbrfNFryJQ8hUwwdvhOGlq1TielwpI,3830
|
|
57
|
+
bizyengine/core/configs/models.json,sha256=ut_ZbbdSJtAiG6DSHYoKKR2MUN7j-vnklJQVfJ7rwbg,2589
|
|
58
|
+
bizyengine/core/configs/models.yaml,sha256=B1hnhKzUxcGLTn3dXBoJ2F-eojIQqnR-EFPRzYWXb4k,7836
|
|
59
|
+
bizyengine/core/path_utils/__init__.py,sha256=5K9n4sexva0rfuYj3HcxdYeWnA1TuLTjpGGMFBTgnhM,240
|
|
60
|
+
bizyengine/core/path_utils/path_manager.py,sha256=eOkOPL7kmSdez5Ya8scwM2l7OiAhEH6Eg-6XXmCIq18,8616
|
|
61
|
+
bizyengine/core/path_utils/utils.py,sha256=ksgNPyQaqilOImscLkSYizbRfDQropfxpL8tqIXardM,881
|
|
62
|
+
bizyengine/misc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
63
|
+
bizyengine/misc/auth.py,sha256=d3ptxii981cdBq14p6nQnDMWkNsI0HmoWNOebwtcUQI,2814
|
|
64
|
+
bizyengine/misc/llm.py,sha256=6QZZpZSrHY6rmA6bmB9_cuiu34zcDKw7mAdsGiElYWQ,14332
|
|
65
|
+
bizyengine/misc/mzkolors.py,sha256=jnOHNvHzvPDqlKYFhPv4KKCuPV4izbuPPbykFsOcH-E,2588
|
|
66
|
+
bizyengine/misc/nodes.py,sha256=HJ4m7AiyfU_SynMYoTuYgYGsflzeTv4Zy4wlA6a8xk4,36265
|
|
67
|
+
bizyengine/misc/nodes_controlnet_aux.py,sha256=9DoNT06go6fm2wjttUdPQKfqzumtEPnHUe3e93cCarc,16211
|
|
68
|
+
bizyengine/misc/nodes_controlnet_union_sdxl.py,sha256=e6Zs7unfPU-18VCLGgZXFOa0x1L8NJQyTkPv_YqI-zA,5857
|
|
69
|
+
bizyengine/misc/route_sam.py,sha256=-bMIR2QalfnszipGxSxvDAHGJa5gPSrjkYPb5baaRg4,1561
|
|
70
|
+
bizyengine/misc/segment_anything.py,sha256=ZaZqs-NjqC8nFK1BzN0ED81wiD8iYoHWhiRkrJDkv6o,8535
|
|
71
|
+
bizyengine/misc/supernode.py,sha256=eOhV7gLK6FaqXwASmD-0HJ-OPFrZk2e1IGOI1taCL9w,5152
|
|
72
|
+
bizyengine/misc/utils.py,sha256=FRDEy63vDpssQxSFXrlK6WuXu15dNitYDIGGNOqtdH8,6353
|
|
73
|
+
bizyengine-0.4.2.dist-info/METADATA,sha256=HtRfdlMbm_vHVQjfdYw3UyWzy_wCT4pUyJHVKdaY72U,508
|
|
74
|
+
bizyengine-0.4.2.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
|
|
75
|
+
bizyengine-0.4.2.dist-info/top_level.txt,sha256=2zapzqxX-we5cRyJkGf9bd5JinRtXp3-_uDI-xCAnc0,11
|
|
76
|
+
bizyengine-0.4.2.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
bizyengine
|