bizyengine 1.2.6__py3-none-any.whl → 1.2.8__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.
Files changed (32) hide show
  1. bizyengine/bizy_server/api_client.py +125 -57
  2. bizyengine/bizy_server/errno.py +9 -0
  3. bizyengine/bizy_server/server.py +353 -239
  4. bizyengine/bizyair_extras/__init__.py +1 -0
  5. bizyengine/bizyair_extras/nodes_flux.py +1 -1
  6. bizyengine/bizyair_extras/nodes_image_utils.py +2 -2
  7. bizyengine/bizyair_extras/nodes_nunchaku.py +1 -5
  8. bizyengine/bizyair_extras/nodes_segment_anything.py +1 -0
  9. bizyengine/bizyair_extras/nodes_trellis.py +1 -1
  10. bizyengine/bizyair_extras/nodes_ultimatesdupscale.py +1 -1
  11. bizyengine/bizyair_extras/nodes_wan_i2v.py +222 -0
  12. bizyengine/core/__init__.py +2 -0
  13. bizyengine/core/commands/processors/prompt_processor.py +21 -18
  14. bizyengine/core/commands/servers/prompt_server.py +28 -13
  15. bizyengine/core/common/client.py +14 -2
  16. bizyengine/core/common/env_var.py +2 -0
  17. bizyengine/core/nodes_base.py +85 -7
  18. bizyengine/core/nodes_io.py +2 -2
  19. bizyengine/misc/llm.py +48 -85
  20. bizyengine/misc/mzkolors.py +27 -19
  21. bizyengine/misc/nodes.py +41 -21
  22. bizyengine/misc/nodes_controlnet_aux.py +18 -18
  23. bizyengine/misc/nodes_controlnet_union_sdxl.py +5 -12
  24. bizyengine/misc/segment_anything.py +29 -25
  25. bizyengine/misc/supernode.py +36 -30
  26. bizyengine/misc/utils.py +33 -21
  27. bizyengine/version.txt +1 -1
  28. bizyengine-1.2.8.dist-info/METADATA +211 -0
  29. {bizyengine-1.2.6.dist-info → bizyengine-1.2.8.dist-info}/RECORD +31 -30
  30. {bizyengine-1.2.6.dist-info → bizyengine-1.2.8.dist-info}/WHEEL +1 -1
  31. bizyengine-1.2.6.dist-info/METADATA +0 -19
  32. {bizyengine-1.2.6.dist-info → bizyengine-1.2.8.dist-info}/top_level.txt +0 -0
bizyengine/misc/utils.py CHANGED
@@ -8,12 +8,19 @@ import zlib
8
8
  from typing import List, Tuple, Union
9
9
 
10
10
  import numpy as np
11
+ from bizyengine.core import pop_api_key_and_prompt_id
12
+ from bizyengine.core.common import client
11
13
  from bizyengine.core.common.env_var import BIZYAIR_SERVER_ADDRESS
12
14
 
13
15
  BIZYAIR_DEBUG = os.getenv("BIZYAIR_DEBUG", False)
14
16
 
15
17
 
18
+ #
19
+ # TODO: Deprecated, delete this
16
20
  def send_post_request(api_url, payload, headers):
21
+ import warnings
22
+
23
+ warnings.warn(message=f"send_post_request is deprecated")
17
24
  """
18
25
  Sends a POST request to the specified API URL with the given payload and headers.
19
26
 
@@ -123,26 +130,17 @@ def format_bytes(num_bytes: int) -> str:
123
130
  return f"{num_bytes / (1024 * 1024):.2f} MB"
124
131
 
125
132
 
126
- def get_api_key():
127
- from bizyengine.core.common import get_api_key as bcc_get_api_key
128
-
129
- return bcc_get_api_key()
130
-
131
-
132
133
  def get_llm_response(
133
134
  model: str,
134
135
  system_prompt: str,
135
136
  user_prompt: str,
136
137
  max_tokens: int = 1024,
137
138
  temperature: float = 0.7,
139
+ **kwargs,
138
140
  ):
139
141
  api_url = f"{BIZYAIR_SERVER_ADDRESS}/chat/completions"
140
- API_KEY = get_api_key()
141
- headers = {
142
- "accept": "application/json",
143
- "content-type": "application/json",
144
- "Authorization": f"Bearer {API_KEY}",
145
- }
142
+ extra_data = pop_api_key_and_prompt_id(kwargs)
143
+ headers = client.headers(api_key=extra_data["api_key"])
146
144
 
147
145
  payload = {
148
146
  "model": model,
@@ -157,7 +155,16 @@ def get_llm_response(
157
155
  "stream": False,
158
156
  "n": 1,
159
157
  }
160
- response = send_post_request(api_url, headers=headers, payload=payload)
158
+ if "prompt_id" in extra_data:
159
+ payload["prompt_id"] = extra_data["prompt_id"]
160
+ data = json.dumps(payload).encode("utf-8")
161
+
162
+ response = client.send_request(
163
+ url=api_url,
164
+ data=data,
165
+ headers=headers,
166
+ callback=None,
167
+ )
161
168
  return response
162
169
 
163
170
 
@@ -169,14 +176,11 @@ def get_vlm_response(
169
176
  max_tokens: int = 1024,
170
177
  temperature: float = 0.7,
171
178
  detail: str = "auto",
179
+ **kwargs,
172
180
  ):
173
181
  api_url = f"{BIZYAIR_SERVER_ADDRESS}/chat/completions"
174
- API_KEY = get_api_key()
175
- headers = {
176
- "accept": "application/json",
177
- "content-type": "application/json",
178
- "Authorization": f"Bearer {API_KEY}",
179
- }
182
+ extra_data = pop_api_key_and_prompt_id(kwargs)
183
+ headers = client.headers(api_key=extra_data["api_key"])
180
184
 
181
185
  messages = [
182
186
  {
@@ -214,6 +218,14 @@ def get_vlm_response(
214
218
  "stream": False,
215
219
  "n": 1,
216
220
  }
217
-
218
- response = send_post_request(api_url, headers=headers, payload=payload)
221
+ if "prompt_id" in extra_data:
222
+ payload["prompt_id"] = extra_data["prompt_id"]
223
+ data = json.dumps(payload).encode("utf-8")
224
+
225
+ response = client.send_request(
226
+ url=api_url,
227
+ headers=headers,
228
+ data=data,
229
+ callback=None,
230
+ )
219
231
  return response
bizyengine/version.txt CHANGED
@@ -1 +1 @@
1
- 1.2.6
1
+ 1.2.8
@@ -0,0 +1,211 @@
1
+ Metadata-Version: 2.4
2
+ Name: bizyengine
3
+ Version: 1.2.8
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
13
+
14
+ ## Server Mode
15
+
16
+ ```bash
17
+ export BIZYAIR_API_KEY="your api key"
18
+ export BIZYAIR_SERVER_MODE=1
19
+ ```
20
+
21
+ ```python
22
+ import json
23
+ import os
24
+ from urllib import request
25
+
26
+ BIZYAIR_API_KEY=os.getenv("BIZYAIR_API_KEY", "")
27
+
28
+ prompt_text = """
29
+ {
30
+ "36": {
31
+ "inputs": {
32
+ "clip_name1": "t5xxl_fp16.safetensors",
33
+ "clip_name2": "clip_l.safetensors",
34
+ "type": "flux"
35
+ },
36
+ "class_type": "BizyAir_DualCLIPLoader",
37
+ "_meta": {
38
+ "title": "☁️BizyAir DualCLIPLoader"
39
+ }
40
+ },
41
+ "37": {
42
+ "inputs": {
43
+ "text": "close up photo of a rabbit, forest in spring, haze, halation, bloom, dramatic atmosphere, centred, rule of thirds, 200mm 1.4f macro shot",
44
+ "clip": [
45
+ "36",
46
+ 0
47
+ ]
48
+ },
49
+ "class_type": "BizyAir_CLIPTextEncode",
50
+ "_meta": {
51
+ "title": "☁️BizyAir CLIP Text Encode (Prompt)"
52
+ }
53
+ },
54
+ "47": {
55
+ "inputs": {
56
+ "model": [
57
+ "48",
58
+ 0
59
+ ],
60
+ "conditioning": [
61
+ "37",
62
+ 0
63
+ ]
64
+ },
65
+ "class_type": "BizyAir_BasicGuider",
66
+ "_meta": {
67
+ "title": "☁️BizyAir BasicGuider"
68
+ }
69
+ },
70
+ "48": {
71
+ "inputs": {
72
+ "unet_name": "flux/pixelwave-flux1-dev.safetensors",
73
+ "weight_dtype": "default"
74
+ },
75
+ "class_type": "BizyAir_UNETLoader",
76
+ "_meta": {
77
+ "title": "☁️BizyAir Load Diffusion Model"
78
+ }
79
+ },
80
+ "50": {
81
+ "inputs": {
82
+ "noise": [
83
+ "59",
84
+ 0
85
+ ],
86
+ "guider": [
87
+ "47",
88
+ 0
89
+ ],
90
+ "sampler": [
91
+ "60",
92
+ 0
93
+ ],
94
+ "sigmas": [
95
+ "58",
96
+ 0
97
+ ],
98
+ "latent_image": [
99
+ "66",
100
+ 0
101
+ ]
102
+ },
103
+ "class_type": "BizyAir_SamplerCustomAdvanced",
104
+ "_meta": {
105
+ "title": "☁️BizyAir SamplerCustomAdvanced"
106
+ }
107
+ },
108
+ "54": {
109
+ "inputs": {
110
+ "samples": [
111
+ "50",
112
+ 0
113
+ ],
114
+ "vae": [
115
+ "55",
116
+ 0
117
+ ]
118
+ },
119
+ "class_type": "BizyAir_VAEDecode",
120
+ "_meta": {
121
+ "title": "☁️BizyAir VAE Decode"
122
+ }
123
+ },
124
+ "55": {
125
+ "inputs": {
126
+ "vae_name": "flux/ae.sft"
127
+ },
128
+ "class_type": "BizyAir_VAELoader",
129
+ "_meta": {
130
+ "title": "☁️BizyAir Load VAE"
131
+ }
132
+ },
133
+ "56": {
134
+ "inputs": {
135
+ "images": [
136
+ "54",
137
+ 0
138
+ ]
139
+ },
140
+ "class_type": "PreviewImage",
141
+ "_meta": {
142
+ "title": "预览图像"
143
+ }
144
+ },
145
+ "58": {
146
+ "inputs": {
147
+ "scheduler": "simple",
148
+ "steps": 20,
149
+ "denoise": 1,
150
+ "model": [
151
+ "48",
152
+ 0
153
+ ]
154
+ },
155
+ "class_type": "BizyAir_BasicScheduler",
156
+ "_meta": {
157
+ "title": "☁️BizyAir BasicScheduler"
158
+ }
159
+ },
160
+ "59": {
161
+ "inputs": {
162
+ "noise_seed": 0
163
+ },
164
+ "class_type": "BizyAir_RandomNoise",
165
+ "_meta": {
166
+ "title": "☁️BizyAir RandomNoise"
167
+ }
168
+ },
169
+ "60": {
170
+ "inputs": {
171
+ "sampler_name": "euler"
172
+ },
173
+ "class_type": "BizyAir_KSamplerSelect",
174
+ "_meta": {
175
+ "title": "☁️BizyAir KSamplerSelect"
176
+ }
177
+ },
178
+ "66": {
179
+ "inputs": {
180
+ "width": 1024,
181
+ "height": 1024,
182
+ "batch_size": 1
183
+ },
184
+ "class_type": "EmptySD3LatentImage",
185
+ "_meta": {
186
+ "title": "空Latent图像(SD3)"
187
+ }
188
+ }
189
+ }
190
+ """
191
+
192
+ def queue_prompt(prompt):
193
+ p = {"prompt": prompt}
194
+ data = json.dumps(p).encode('utf-8')
195
+ req = request.Request("http://127.0.0.1:9111/prompt", data=data)
196
+ request.urlopen(req)
197
+
198
+
199
+ prompt = json.loads(prompt_text)
200
+ param_node = {
201
+ "inputs": {},
202
+ "class_type": "BizyAir_PassParameter",
203
+ "_meta": {
204
+ "title": "☁️BizyAir PassParameter",
205
+ "api_key": BIZYAIR_API_KEY,
206
+ "prompt_id": "a-unique-prompt-id"
207
+ }
208
+ }
209
+ prompt["bizyair_magic_node"]=param_node
210
+ queue_prompt(prompt)
211
+ ```
@@ -1,16 +1,16 @@
1
1
  bizyengine/__init__.py,sha256=GP9V-JM07fz7uv_qTB43QEA2rKdrVJxi5I7LRnn_3ZQ,914
2
- bizyengine/version.txt,sha256=WET_zDRvicB7E7p1lr-zeI7XP0dV5UEYLXgi1Dt8eiQ,6
2
+ bizyengine/version.txt,sha256=0tMVNGQdoBgBUSo-x5O8jVcTLUzvoZpftQPomV85648,6
3
3
  bizyengine/bizy_server/__init__.py,sha256=SP9oSblnPo4KQyh7yOGD26YCskFAcQHAZy04nQBNRIw,200
4
- bizyengine/bizy_server/api_client.py,sha256=urdV6GBXRcm-i3yNzjLKQoiN_5CC66Fd1QzXCGSa9CE,40496
5
- bizyengine/bizy_server/errno.py,sha256=nEr_A6ARwgIwlr1PFP8eg-HNAzz9r7l00fTKaq-ipxM,15826
4
+ bizyengine/bizy_server/api_client.py,sha256=F2kSe5FVQz5b47-QzSH5kB9S-wP921MPWrtVbbQ3nEY,43623
5
+ bizyengine/bizy_server/errno.py,sha256=Q-U96XnZQCuPH_44Om8wnc2-Kh7qFqwLKtox27msU54,16095
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=V67smRHnVRy_vS4o3D1_uSO7to5_3ie8gVEvcIlj6QU,46439
10
+ bizyengine/bizy_server/server.py,sha256=Oyxkd5BBfBJZT4CUb1jn7VAf_XfJkFRS6w1lipK2wFQ,51408
11
11
  bizyengine/bizy_server/stream_response.py,sha256=H2XHqlVRtQMhgdztAuG7l8-iV_Pm42u2x6WJ0gNVIW0,9654
12
12
  bizyengine/bizy_server/utils.py,sha256=C5tnMhvdtrrvwuCex3oERIGWrTWVb5dkXD1Txb5sJaE,2568
13
- bizyengine/bizyair_extras/__init__.py,sha256=6Su2AZMMPlBcOdxgy-BWq89m9MJl7voLSWeDcdyagIo,922
13
+ bizyengine/bizyair_extras/__init__.py,sha256=oaKC7QzFbgJ_BWuc3o05gmIq-8ZhUB7VEzYXnlWjGv8,951
14
14
  bizyengine/bizyair_extras/nodes_advanced_refluxcontrol.py,sha256=cecfjrtnjJAty9aNkhz8BlmHUC1NImkFlUDiA0COEa4,2242
15
15
  bizyengine/bizyair_extras/nodes_cogview4.py,sha256=Ni0TDOycczyDhYPvSR68TxGV_wE2uhaxd8MIj-J4-3o,2031
16
16
  bizyengine/bizyair_extras/nodes_comfyui_detail_daemon.py,sha256=i71it24tiGvZ3h-XFWISr4CpZszUtPuz3UrZARYluLk,6169
@@ -21,41 +21,42 @@ bizyengine/bizyair_extras/nodes_controlnet.py,sha256=9ikMPACNaGMmG_ZN7bPzsSyVIzX
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=ajBd81QIMSppB-0CnA_k-mnsSrxASl1mkzBmKM697gY,2147
25
- bizyengine/bizyair_extras/nodes_image_utils.py,sha256=f49VDIwI6opHwCuM4n8GKGtute4a_p6oZZjch76qp4o,2854
24
+ bizyengine/bizyair_extras/nodes_flux.py,sha256=jdi8KM_s8a_2mEksHyM1StHVW0Odm0d3JXNOztOOrxA,2157
25
+ bizyengine/bizyair_extras/nodes_image_utils.py,sha256=ovcQkm8PA_Z3kFnE5mmCPwqQtOh0gjfxkiKCht4Vmk4,2874
26
26
  bizyengine/bizyair_extras/nodes_ip2p.py,sha256=GSEFJvrs4f2tv0xwYkWqc8uhsXrzAJVPvvwcw0gTjR0,619
27
27
  bizyengine/bizyair_extras/nodes_janus_pro.py,sha256=hAdMsS09RkRHZn9cNwpmyOaH7ODOMjVt9SbBsD-UvbM,2665
28
28
  bizyengine/bizyair_extras/nodes_model_advanced.py,sha256=s-dbFRWCdsTxctFYaZtmVwZ8-xuPPHixtkHFCmR7zcs,1755
29
- bizyengine/bizyair_extras/nodes_nunchaku.py,sha256=trvQyHwYcT3mxV9-t2SR0pXk_qj0UHLqirlj3htaRc8,6832
29
+ bizyengine/bizyair_extras/nodes_nunchaku.py,sha256=drrDHZEPflmH9c5KVazdiHx_vFwJTRIjSlTWwp1kGKM,6809
30
30
  bizyengine/bizyair_extras/nodes_sd3.py,sha256=lZCxj0IFmuxk1fZTDcRKgVV5QWHjkUdpR4w9-DZbMf4,1727
31
- bizyengine/bizyair_extras/nodes_segment_anything.py,sha256=9Aeu4A2c2hA-Gu6kY6cINmZ3Y6DVXhWJCLjcW4M_v5o,7231
31
+ bizyengine/bizyair_extras/nodes_segment_anything.py,sha256=6aMO6gLXEjAP1pFrVhqxOA36qSmgBvieaG3iYLfJN-Y,7248
32
32
  bizyengine/bizyair_extras/nodes_segment_anything_utils.py,sha256=ZefAqrFrevDH3XY_wipr_VwKfeXrgpZEUFaqg_JGOdU,4714
33
33
  bizyengine/bizyair_extras/nodes_testing_utils.py,sha256=qeJHlSq-c21Vx8H0oZw878Q0ENciMjuSGTcZEVnSkRY,3987
34
- bizyengine/bizyair_extras/nodes_trellis.py,sha256=QU2dQsN_zKA91vTVtR4Af4kJXDJA8CDSf1PyIu_ywZc,7421
35
- bizyengine/bizyair_extras/nodes_ultimatesdupscale.py,sha256=6IZCDZ_9PhrKwJzCZGvKNxcRYwwkPRMNovF17nwzFqw,4130
34
+ bizyengine/bizyair_extras/nodes_trellis.py,sha256=BTpFfar_Byge-WNTdIrkHaIX3VMmfoQgxUnoYTl_OnA,7431
35
+ bizyengine/bizyair_extras/nodes_ultimatesdupscale.py,sha256=effgVSPOjEDXOjdZpQ7-tJrkxcKPRXxfKtq0KDmNUqI,4132
36
36
  bizyengine/bizyair_extras/nodes_upscale_model.py,sha256=lrzA1BFI2w5aEPCmNPMh07s-WDzG-xTT49uU6WCnlP8,1151
37
+ bizyengine/bizyair_extras/nodes_wan_i2v.py,sha256=OniFS3MK1a8FEZzXwkbrSDEmBO8l3ytq8CSqxx0wkwI,7355
37
38
  bizyengine/bizyair_extras/nodes_wan_video.py,sha256=d1mCcW9jCj-5Oymmymy0Vz-nwWv36FMGE5Gn-E7Rul4,1632
38
39
  bizyengine/bizyair_extras/route_bizyair_tools.py,sha256=QdgfiKeF6c4-5Bx5Pmz9RKlaAHreypy9SIg_krmLk-o,2079
39
40
  bizyengine/bizyair_extras/nodes_ipadapter_plus/__init__.py,sha256=ECKATm_EKi_4G47-FJI4-3rHO3iiF9FVakfSTE-pooE,36
40
41
  bizyengine/bizyair_extras/nodes_ipadapter_plus/nodes_ipadapter_plus.py,sha256=OqR7Vca2c2bx3DH2jVLz0hH6fzz2_Gh6VG9LBrs7RBY,54845
41
42
  bizyengine/bizyair_extras/nodes_kolors_mz/__init__.py,sha256=HsCCCphW8q0SrWEiFlZKK_W2lQr1T0UJIJL7gEn37ME,3729
42
43
  bizyengine/bizyair_extras/oauth_callback/main.py,sha256=KQOZWor3kyNx8xvUNHYNMoHfCF9g_ht13_iPk4K_5YM,3633
43
- bizyengine/core/__init__.py,sha256=XKaHyQVH_xybBzEPJ_Vv-KA1dAtsU_cYtPnAMfdUT3c,303
44
+ bizyengine/core/__init__.py,sha256=EV9ZtTwOHC0S_eNvCu-tltIydfxfMsH59LbgVX4e_1c,359
44
45
  bizyengine/core/data_types.py,sha256=U1Ai149lvbVA-z59sfgniES9KSsyFIbDs_vcjpjlUK4,967
45
46
  bizyengine/core/image_utils.py,sha256=--DmQb3R9Ev21MfZG9rfgOGsU2zRywJ-hpiNNN0N8p8,8586
46
- bizyengine/core/nodes_base.py,sha256=zzQQPCOs9uNPv2VWgFcEfE0iZnOvu80_bJqyVtiePKk,5812
47
- bizyengine/core/nodes_io.py,sha256=3U1rb7CyZxsXYGeA-51Y_q8VaElLz-guR0EUlbgOr84,2812
47
+ bizyengine/core/nodes_base.py,sha256=uJ4qB5ZYKm64vmsA2Gp1-6n6CYrGvom1UIrStVVJE8k,8808
48
+ bizyengine/core/nodes_io.py,sha256=VhwRwYkGp0g3Mh0hx1OSwNZbV06NEV13w2aODSiAm5M,2832
48
49
  bizyengine/core/commands/__init__.py,sha256=82yRdMT23RTiZPkFW_G3fVa-fj3-TUAXnj6cnGA3xRA,22
49
50
  bizyengine/core/commands/base.py,sha256=TYH9lhr033B2roBLPkWkxcvoz_fW3cdzx_bvP_FI7dg,635
50
51
  bizyengine/core/commands/invoker.py,sha256=8wcIMd8k44o96LAvxFrIiKOlVtf1MW-AcMDXsZkb5Qc,215
51
52
  bizyengine/core/commands/processors/model_hosting_processor.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
52
- bizyengine/core/commands/processors/prompt_processor.py,sha256=0PxSCvhI4gZmV3cEjJl8lKNb08EFemFVRRXrupedNdU,4467
53
+ bizyengine/core/commands/processors/prompt_processor.py,sha256=RpNFzlFwpf_PsgmKpIcuqg9eTOm-EB_sNsyfyRDBaho,4391
53
54
  bizyengine/core/commands/servers/model_server.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
54
- bizyengine/core/commands/servers/prompt_server.py,sha256=mGkwhY7qVeCDNFmmP-Bh-V_uX3cVkH7FAaIrjpcsEWg,8140
55
+ bizyengine/core/commands/servers/prompt_server.py,sha256=giJXPMW-Mph2ccGbs9dQXs6ESiufYDhmGF1GgBsj-gw,8528
55
56
  bizyengine/core/common/__init__.py,sha256=GicZw6YeAZk1PsKmFDt9dm1F75zPUlpia9Q_ki5vW1Y,179
56
57
  bizyengine/core/common/caching.py,sha256=isliSZsQyrNjXmupW-BaZ2EoVF5G8t7aHAhbcELAn5M,6253
57
- bizyengine/core/common/client.py,sha256=Bf_UAosHXyYJ1YJ93ltsvvzJDawIPPmCjVaMOW1Gw-o,10114
58
- bizyengine/core/common/env_var.py,sha256=ZiJc5G84MgVMRj7yxI7WWt8lmmanJiGSWl23NyWLbg4,3266
58
+ bizyengine/core/common/client.py,sha256=1Ka8DIjbmD9Gme9c_Q1zwXXueSCP3_OSdEDyGYEol50,10396
59
+ bizyengine/core/common/env_var.py,sha256=TM0832HWjwT1VTKicClugIHVfdXxvBxzz7pCbTnefXE,3342
59
60
  bizyengine/core/common/utils.py,sha256=bm-XmSPy83AyjD0v5EfWp6jiO6_5p7rkZ_HQAuVmgmo,3086
60
61
  bizyengine/core/configs/conf.py,sha256=D_UWG9SSJnK5EhbrfNFryJQ8hUwwdvhOGlq1TielwpI,3830
61
62
  bizyengine/core/configs/models.json,sha256=jCrqQgjVeHugLb191Xay5rg0m3duTVISPp_GxVGQ3HA,2656
@@ -65,16 +66,16 @@ bizyengine/core/path_utils/path_manager.py,sha256=tRVAcpsYvfWD-tK7khLvNCZayB0wpU
65
66
  bizyengine/core/path_utils/utils.py,sha256=ksgNPyQaqilOImscLkSYizbRfDQropfxpL8tqIXardM,881
66
67
  bizyengine/misc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
67
68
  bizyengine/misc/auth.py,sha256=V7VoHZ9-ljT_gUUOOh7AeNnAyVuyiK8fiqSM8T8k948,2671
68
- bizyengine/misc/llm.py,sha256=_y_NJ_38v5XziozV5f7qvYQit1MlfOphGKSttX7g_z8,14332
69
- bizyengine/misc/mzkolors.py,sha256=jnOHNvHzvPDqlKYFhPv4KKCuPV4izbuPPbykFsOcH-E,2588
70
- bizyengine/misc/nodes.py,sha256=9njflJfklynyY0XmOCCzxlq48EwaO9wfrQGyXMqxlXM,43186
71
- bizyengine/misc/nodes_controlnet_aux.py,sha256=9DoNT06go6fm2wjttUdPQKfqzumtEPnHUe3e93cCarc,16211
72
- bizyengine/misc/nodes_controlnet_union_sdxl.py,sha256=e6Zs7unfPU-18VCLGgZXFOa0x1L8NJQyTkPv_YqI-zA,5857
69
+ bizyengine/misc/llm.py,sha256=JOwzioAGtY1YjQZZfnm5xCB3frbbvNi3sHUltd_Qq2M,12856
70
+ bizyengine/misc/mzkolors.py,sha256=mWQh2XDdRza1iNacGZ3YApqbs5RHrW0nDIPGN1ZfC8g,2826
71
+ bizyengine/misc/nodes.py,sha256=Nm1Z6AosPqgJuAZKV0spuTVrRkL3ZtoEnIwqA2uOT58,43638
72
+ bizyengine/misc/nodes_controlnet_aux.py,sha256=Tza7XgStfmTm29bVl7qupE--ELTDfk8JaGFb93DxL_Q,16398
73
+ bizyengine/misc/nodes_controlnet_union_sdxl.py,sha256=Z_dWwv3dzJDL9ocMfn4mH2WqGPCt78t2QecIOH0w9WU,5830
73
74
  bizyengine/misc/route_sam.py,sha256=-bMIR2QalfnszipGxSxvDAHGJa5gPSrjkYPb5baaRg4,1561
74
- bizyengine/misc/segment_anything.py,sha256=RRm8FOfDY9VxdVrLjcdzJRh2pSM-kmNcCySuYnx9l7w,8677
75
- bizyengine/misc/supernode.py,sha256=MPoJN6H_oCV00lmv1LWtGdQwTlyQPI6gXdMDXgkFd7g,4197
76
- bizyengine/misc/utils.py,sha256=_aO1lHtfDf7Bv0K4xvnZ1Fu5Y9MfMkuhkiS_g8687ng,6461
77
- bizyengine-1.2.6.dist-info/METADATA,sha256=AZCfi91Ygfm7weqMNcQRgcJt4jQi0BK25tppKhxrYmk,574
78
- bizyengine-1.2.6.dist-info/WHEEL,sha256=DnLRTWE75wApRYVsjgc6wsVswC54sMSJhAEd4xhDpBk,91
79
- bizyengine-1.2.6.dist-info/top_level.txt,sha256=2zapzqxX-we5cRyJkGf9bd5JinRtXp3-_uDI-xCAnc0,11
80
- bizyengine-1.2.6.dist-info/RECORD,,
75
+ bizyengine/misc/segment_anything.py,sha256=m-G0PsuP6IgpdUzhEqiqzPg1_svMVH5MTivOsoVR1-Y,8940
76
+ bizyengine/misc/supernode.py,sha256=ox1_ufOFbm4zlpPQD8TGd0JKv94vsscu1cCJOdbaZPY,4531
77
+ bizyengine/misc/utils.py,sha256=SkU_qHU3n3dnzq68mdg_E8380ivRDVZwIb4UgnakhMM,6828
78
+ bizyengine-1.2.8.dist-info/METADATA,sha256=JRSMA57Df69xpnQ9GP1Umd4L8v_8wnfj2EjH9jGkrUc,4209
79
+ bizyengine-1.2.8.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
80
+ bizyengine-1.2.8.dist-info/top_level.txt,sha256=2zapzqxX-we5cRyJkGf9bd5JinRtXp3-_uDI-xCAnc0,11
81
+ bizyengine-1.2.8.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.4.0)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,19 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: bizyengine
3
- Version: 1.2.6
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
13
-
14
- ## development
15
-
16
- ```bash
17
- cd BizyAir/backend/
18
- pip install -e .
19
- ```