1
mirror of https://github.com/comfyanonymous/ComfyUI.git synced 2025-08-02 15:04:50 +08:00

Allow the prompt request to specify the prompt ID. (#8189)

This makes it easier to write asynchronous clients that submit requests, because they can store the task immediately.
Duplicate prompt IDs are rejected by the job queue.
This commit is contained in:
FeepingCreature
2025-07-14 20:48:31 +02:00
committed by GitHub
parent 861c3bbb3d
commit 260a5ca5d9
2 changed files with 7 additions and 6 deletions

View File

@@ -678,7 +678,7 @@ class PromptServer():
if "prompt" in json_data:
prompt = json_data["prompt"]
prompt_id = str(uuid.uuid4())
prompt_id = str(json_data.get("prompt_id", uuid.uuid4()))
valid = await execution.validate_prompt(prompt_id, prompt)
extra_data = {}
if "extra_data" in json_data: