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
35 lines
1.4 KiB
Python
35 lines
1.4 KiB
Python
from typing import Any, Optional
|
|
|
|
from invokeai.app.invocations.baseinvocation import BaseInvocation, BaseInvocationOutput, invocation, invocation_output
|
|
from invokeai.app.invocations.fields import InputField, OutputField, UIType
|
|
from invokeai.app.services.shared.invocation_context import InvocationContext
|
|
|
|
|
|
@invocation_output("if_output")
|
|
class IfInvocationOutput(BaseInvocationOutput):
|
|
value: Optional[Any] = OutputField(
|
|
default=None, description="The selected value", title="Output", ui_type=UIType.Any
|
|
)
|
|
|
|
|
|
@invocation("if", title="If", tags=["logic", "conditional"], category="math", version="1.0.0")
|
|
class IfInvocation(BaseInvocation):
|
|
"""Selects between two optional inputs based on a boolean condition."""
|
|
|
|
condition: bool = InputField(default=False, description="The condition used to select an input", title="Condition")
|
|
true_input: Optional[Any] = InputField(
|
|
default=None,
|
|
description="Selected when the condition is true",
|
|
title="True Input",
|
|
ui_type=UIType.Any,
|
|
)
|
|
false_input: Optional[Any] = InputField(
|
|
default=None,
|
|
description="Selected when the condition is false",
|
|
title="False Input",
|
|
ui_type=UIType.Any,
|
|
)
|
|
|
|
def invoke(self, context: InvocationContext) -> IfInvocationOutput:
|
|
return IfInvocationOutput(value=self.true_input if self.condition else self.false_input)
|