From 6db19a8deea5389afdf33862808aca3bfd49f31a Mon Sep 17 00:00:00 2001 From: blessedcoolant <54517381+blessedcoolant@users.noreply.github.com> Date: Tue, 29 Aug 2023 04:15:15 +1200 Subject: [PATCH] fix: Connection type on Seamless Node VAE Input --- invokeai/app/invocations/model.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/invokeai/app/invocations/model.py b/invokeai/app/invocations/model.py index 86936db93f..31d04cfd37 100644 --- a/invokeai/app/invocations/model.py +++ b/invokeai/app/invocations/model.py @@ -8,8 +8,8 @@ from .baseinvocation import ( BaseInvocation, BaseInvocationOutput, FieldDescriptions, - InputField, Input, + InputField, InvocationContext, OutputField, UIType, @@ -414,7 +414,7 @@ class SeamlessModeInvocation(BaseInvocation): default=None, description=FieldDescriptions.unet, input=Input.Connection, title="UNet" ) vae: Optional[VaeField] = InputField( - default=None, description=FieldDescriptions.vae_model, input=Input.Any, title="VAE" + default=None, description=FieldDescriptions.vae_model, input=Input.Connection, title="VAE" ) seamless_y: bool = InputField(default=True, input=Input.Any, description="Specify whether Y axis is seamless") seamless_x: bool = InputField(default=True, input=Input.Any, description="Specify whether X axis is seamless")