mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
Set 'title' for IP-Adapter fields with non-default names.
This commit is contained in:
parent
6ca6cf713c
commit
dee6f86d5e
@ -42,7 +42,7 @@ class IPAdapterField(BaseModel):
|
|||||||
@invocation_output("ip_adapter_output")
|
@invocation_output("ip_adapter_output")
|
||||||
class IPAdapterOutput(BaseInvocationOutput):
|
class IPAdapterOutput(BaseInvocationOutput):
|
||||||
# Outputs
|
# Outputs
|
||||||
ip_adapter: IPAdapterField = OutputField(description=FieldDescriptions.ip_adapter)
|
ip_adapter: IPAdapterField = OutputField(description=FieldDescriptions.ip_adapter, title="IP-Adapter")
|
||||||
|
|
||||||
|
|
||||||
@invocation("ip_adapter", title="IP-Adapter", tags=["ip_adapter", "control"], category="ip_adapter", version="1.0.0")
|
@invocation("ip_adapter", title="IP-Adapter", tags=["ip_adapter", "control"], category="ip_adapter", version="1.0.0")
|
||||||
@ -52,7 +52,9 @@ class IPAdapterInvocation(BaseInvocation):
|
|||||||
# Inputs
|
# Inputs
|
||||||
image: ImageField = InputField(description="The IP-Adapter image prompt.")
|
image: ImageField = InputField(description="The IP-Adapter image prompt.")
|
||||||
ip_adapter_model: IP_ADAPTER_MODELS = InputField(
|
ip_adapter_model: IP_ADAPTER_MODELS = InputField(
|
||||||
default="models/core/ip_adapters/sd-1/ip-adapter_sd15.bin", description="The name of the IP-Adapter model."
|
default="models/core/ip_adapters/sd-1/ip-adapter_sd15.bin",
|
||||||
|
description="The name of the IP-Adapter model.",
|
||||||
|
title="IP-Adapter Model",
|
||||||
)
|
)
|
||||||
image_encoder_model: IP_ADAPTER_IMAGE_ENCODER_MODELS = InputField(
|
image_encoder_model: IP_ADAPTER_IMAGE_ENCODER_MODELS = InputField(
|
||||||
default="models/core/ip_adapters/sd-1/image_encoder/", description="The name of the CLIP image encoder model."
|
default="models/core/ip_adapters/sd-1/image_encoder/", description="The name of the CLIP image encoder model."
|
||||||
|
@ -222,7 +222,7 @@ class DenoiseLatentsInvocation(BaseInvocation):
|
|||||||
ui_order=5,
|
ui_order=5,
|
||||||
)
|
)
|
||||||
ip_adapter: Optional[IPAdapterField] = InputField(
|
ip_adapter: Optional[IPAdapterField] = InputField(
|
||||||
description=FieldDescriptions.ip_adapter, default=None, input=Input.Connection, ui_order=6
|
description=FieldDescriptions.ip_adapter, title="IP-Adapter", default=None, input=Input.Connection, ui_order=6
|
||||||
)
|
)
|
||||||
latents: Optional[LatentsField] = InputField(description=FieldDescriptions.latents, input=Input.Connection)
|
latents: Optional[LatentsField] = InputField(description=FieldDescriptions.latents, input=Input.Connection)
|
||||||
denoise_mask: Optional[DenoiseMaskField] = InputField(
|
denoise_mask: Optional[DenoiseMaskField] = InputField(
|
||||||
|
Loading…
Reference in New Issue
Block a user