1
mirror of https://github.com/comfyanonymous/ComfyUI.git synced 2025-08-02 23:14:49 +08:00

Send back prompt number from prompt/ endpoint

This commit is contained in:
space-nuko
2023-06-01 22:15:06 -05:00
parent 5c38958e49
commit 1bbd3f7fe1

View File

@@ -361,7 +361,7 @@ class PromptServer():
prompt_id = str(uuid.uuid4())
outputs_to_execute = valid[2]
self.prompt_queue.put((number, prompt_id, prompt, extra_data, outputs_to_execute))
return web.json_response({"prompt_id": prompt_id})
return web.json_response({"prompt_id": prompt_id, "number": number})
else:
print("invalid prompt:", valid[1])
return web.json_response({"error": valid[1], "node_errors": valid[3]}, status=400)