bizydraft 0.2.25__py3-none-any.whl → 0.2.26__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.
Potentially problematic release.
This version of bizydraft might be problematic. Click here for more details.
- bizydraft/patch_handlers.py +9 -1
- {bizydraft-0.2.25.dist-info → bizydraft-0.2.26.dist-info}/METADATA +1 -1
- {bizydraft-0.2.25.dist-info → bizydraft-0.2.26.dist-info}/RECORD +5 -5
- {bizydraft-0.2.25.dist-info → bizydraft-0.2.26.dist-info}/WHEEL +0 -0
- {bizydraft-0.2.25.dist-info → bizydraft-0.2.26.dist-info}/top_level.txt +0 -0
bizydraft/patch_handlers.py
CHANGED
|
@@ -121,9 +121,17 @@ async def post_prompt(request):
|
|
|
121
121
|
json_data = await request.json()
|
|
122
122
|
|
|
123
123
|
json_data = comfy_server.trigger_on_prompt(json_data)
|
|
124
|
+
|
|
124
125
|
if "prompt" in json_data:
|
|
125
126
|
prompt = json_data["prompt"]
|
|
126
|
-
|
|
127
|
+
prompt_id = str(json_data.get("prompt_id", uuid.uuid4()))
|
|
128
|
+
partial_execution_targets = None
|
|
129
|
+
if "partial_execution_targets" in json_data:
|
|
130
|
+
partial_execution_targets = json_data["partial_execution_targets"]
|
|
131
|
+
valid = await execution.validate_prompt(
|
|
132
|
+
prompt_id, prompt, partial_execution_targets
|
|
133
|
+
)
|
|
134
|
+
|
|
127
135
|
if valid[0]:
|
|
128
136
|
response = {
|
|
129
137
|
"prompt_id": None,
|
|
@@ -4,7 +4,7 @@ bizydraft/env.py,sha256=nVh4xBKXWnRUPbHL3PqZr6VFN8txKsrsmshu8PFGaqo,299
|
|
|
4
4
|
bizydraft/hijack_nodes.py,sha256=4msT6YJqC_bQXKPmm76wiSJIhkZXETsGm1jz4qHHcZ4,2567
|
|
5
5
|
bizydraft/hijack_routes.py,sha256=lf6x3xDzbo9yQIRwfG_1oxcUNfrX_1ogbiff3WOV9gM,3268
|
|
6
6
|
bizydraft/oss_utils.py,sha256=W3-Td6K4vrB83oMowN82c3nmQ3IrEoR1UX6S8AvO6ig,7896
|
|
7
|
-
bizydraft/patch_handlers.py,sha256=
|
|
7
|
+
bizydraft/patch_handlers.py,sha256=WPf4xeV5sBpoJ2MkHHhx0wem7B0KQNuhONElN7c9v3g,5989
|
|
8
8
|
bizydraft/postload.py,sha256=XFElKcmCajT_oO7SVJJBaN04XcWro54N5HB5cSCxfvI,1308
|
|
9
9
|
bizydraft/prestartup_patch.py,sha256=Rh_D-rEUmPaojSrl8CEBMAhSgwtLSm6gH2Mzmk5NCuQ,316
|
|
10
10
|
bizydraft/resp.py,sha256=8INvKOe5Dgai3peKfqKjrhUoYeuXWXn358w30-_cY-A,369
|
|
@@ -22,7 +22,7 @@ bizydraft/static/js/postEvent.js,sha256=5rafG9GjaesxmFD_8eSJQYHeSNWfOG3iWXLUPuaR
|
|
|
22
22
|
bizydraft/static/js/socket.js,sha256=VE3fTAgEfM0FZhL526Skt7OCRokOa3mzTCAjAomI_tE,2432
|
|
23
23
|
bizydraft/static/js/tool.js,sha256=dwVFLrT0pEsdOBkh2RRUDvyVo8GzOIVYg7vU5RiM0m0,2765
|
|
24
24
|
bizydraft/static/js/uploadFile.js,sha256=WvglKzHMeOzDhOH3P-fLcPHxCLbKOJpo4DntoRxeJtI,4908
|
|
25
|
-
bizydraft-0.2.
|
|
26
|
-
bizydraft-0.2.
|
|
27
|
-
bizydraft-0.2.
|
|
28
|
-
bizydraft-0.2.
|
|
25
|
+
bizydraft-0.2.26.dist-info/METADATA,sha256=QkS_329GYoLLEhpnwtAQmd3f2oqxx7RQkmknEUzemu4,73
|
|
26
|
+
bizydraft-0.2.26.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
27
|
+
bizydraft-0.2.26.dist-info/top_level.txt,sha256=XtoBq6hjZhXIM7aas4GtPDtAiKo8FdLzMABXW8qqQ8M,10
|
|
28
|
+
bizydraft-0.2.26.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|