1
0
Fork 0

update inpaint pipeline to use stage results

This commit is contained in:
Sean Sube 2023-11-23 23:22:28 -06:00
parent a90a963765
commit 34493e7968
Signed by: ssube
GPG Key ID: 3EED7B957D362AF1
1 changed files with 1 additions and 1 deletions

View File

@ -385,7 +385,7 @@ def run_inpaint_pipeline(
latents = get_latents_from_seed(params.seed, size, batch=params.batch)
progress = worker.get_progress_callback()
images = chain.run(
worker, server, params, [source], callback=progress, latents=latents
worker, server, params, StageResult(images=[source]), callback=progress, latents=latents
)
_pairs, loras, inversions, _rest = parse_prompt(params)