cddb07a176
docs / deploy (push) Has been cancelled
docs / changes (push) Has been cancelled
docs / check-and-build (push) Has been cancelled
build container image / cpu (push) Has been cancelled
build container image / cuda (push) Has been cancelled
build container image / rocm (push) Has been cancelled
frontend checks / frontend-checks (push) Has been cancelled
frontend tests / frontend-tests (push) Has been cancelled
lfs checks / lfs-check (push) Has been cancelled
python checks / python-checks (push) Has been cancelled
python tests / py3.12: macos-default (push) Has been cancelled
python tests / py3.11: windows-cpu (push) Has been cancelled
python tests / py3.12: windows-cpu (push) Has been cancelled
python tests / py3.11: linux-cpu (push) Has been cancelled
typegen checks / typegen-checks (push) Has been cancelled
uv lock checks / uv-lock-checks (push) Has been cancelled
openapi checks / openapi-checks (push) Has been cancelled
python tests / py3.11: macos-default (push) Has been cancelled
python tests / py3.12: linux-cpu (push) Has been cancelled
41 lines
1.3 KiB
Python
41 lines
1.3 KiB
Python
from invokeai.app.invocations.baseinvocation import (
|
|
BaseInvocation,
|
|
BaseInvocationOutput,
|
|
invocation,
|
|
invocation_output,
|
|
)
|
|
from invokeai.app.invocations.fields import (
|
|
FieldDescriptions,
|
|
FluxKontextConditioningField,
|
|
InputField,
|
|
OutputField,
|
|
)
|
|
from invokeai.app.invocations.primitives import ImageField
|
|
from invokeai.app.services.shared.invocation_context import InvocationContext
|
|
|
|
|
|
@invocation_output("flux_kontext_output")
|
|
class FluxKontextOutput(BaseInvocationOutput):
|
|
"""The conditioning output of a FLUX Kontext invocation."""
|
|
|
|
kontext_cond: FluxKontextConditioningField = OutputField(
|
|
description=FieldDescriptions.flux_kontext_conditioning, title="Kontext Conditioning"
|
|
)
|
|
|
|
|
|
@invocation(
|
|
"flux_kontext",
|
|
title="Kontext Conditioning - FLUX",
|
|
tags=["conditioning", "kontext", "flux"],
|
|
category="conditioning",
|
|
version="1.0.0",
|
|
)
|
|
class FluxKontextInvocation(BaseInvocation):
|
|
"""Prepares a reference image for FLUX Kontext conditioning."""
|
|
|
|
image: ImageField = InputField(description="The Kontext reference image.")
|
|
|
|
def invoke(self, context: InvocationContext) -> FluxKontextOutput:
|
|
"""Packages the provided image into a Kontext conditioning field."""
|
|
return FluxKontextOutput(kontext_cond=FluxKontextConditioningField(image=self.image))
|