feat: add support for EmptySD3LatentImage in default output retrieval

This commit is contained in:
Menno van Leeuwen 2025-04-07 17:51:15 +02:00
parent 76fd02a72a
commit 570f08ef0c
Signed by: vleeuwenmenno
SSH Key Fingerprint: SHA256:OJFmjANpakwD3F2Rsws4GLtbdz1TJ5tkQF0RZmF0TRE

View File

@ -304,6 +304,8 @@ class PromptBuilder {
return ["VAE"]; return ["VAE"];
case "EmptyLatentImage": case "EmptyLatentImage":
return ["LATENT"]; return ["LATENT"];
case "EmptySD3LatentImage":
return ["LATENT"];
case "LatentUpscale": case "LatentUpscale":
return ["LATENT"]; return ["LATENT"];
case "LatentUpscaleBy": case "LatentUpscaleBy":